Skip to content
Snippets Groups Projects

feat: allow building for unsupported architecture

Open Felix Yan requested to merge felixonmars/devtools:unsupported-arch into master
1 unresolved thread

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.

Edited by Felix Yan

Merge request reports

Members who can merge are allowed to add commits.

Pipeline #115737 passed

Pipeline passed for 332ccc95 on felixonmars:unsupported-arch

Test coverage 32.82% from 1 job
Ready to merge by members who can write to the target branch.
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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"
  • I don't really know much about the current riscv setup, but maybe you can help me understand why you have no pacman repositories that can be fetched and the repo detected? Is this a cross-platform build?

  • Author Contributor

    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
  • I see, so as we need to fix this anyway, I'd need to think a bit how we want to approach this for different architectures. It would be more future proof variant instead of more special cases around code :slight_smile:

  • Please register or sign in to reply
Please register or sign in to reply
Loading