feat: allow building for unsupported architecture
The hard check here has been prevented us (the RISC-V port) from utilizing pkgctl build
for a while. As long as the list (DEVTOOLS_VALID_ARCHES) isn't easily extendable, I think it's a better idea to allow building with a warning when specifying --arch
manually.
Also disables repository detection and --repo
check for unsupported architectures.
Merge request reports
Activity
added 60 commits
-
5c986ba3...1101de9f - 59 commits from branch
archlinux:master
- 352ccfa0 - feat: allow building for unsupported architecture
-
5c986ba3...1101de9f - 59 commits from branch
added 1 commit
- 332ccc95 - feat: allow building for unsupported architecture
added scopefeature label
312 314 313 315 # Update pacman cache for auto-detection 314 316 if [[ -z ${REPO} ]]; then 317 if (( UNSUPPORTED_ARCH )); then 318 die "Unsupported architecture specified, cannot auto-detect repository" The obvious problem here is that we don't have [multilib] in the RISC-V port (should also be the case for any new architectures that don't really need to enable 32-bit support), so the following command to fetch and update [multilib] will fail.
Edited by Felix Yan