Add x86_64 to nightly picolibc workflow#1564
Open
Bhoumik Patidar (BhoumikPatidar) wants to merge 1 commit into
Open
Add x86_64 to nightly picolibc workflow#1564Bhoumik Patidar (BhoumikPatidar) wants to merge 1 commit into
Bhoumik Patidar (BhoumikPatidar) wants to merge 1 commit into
Conversation
Adds x86_64-none-elf to the existing picolibc builder matrix, which already covers hexagon, aarch64, riscv64, riscv32, and arm. x86_64-specific setup: - Matrix entry with compiler-rt builtins path in picolibc-*-config fields, following the same pattern as other backends. - i386 linker wrapper: ELD has no i386 backend but picolibc builds a 32-bit semihosting BIOS for QEMU using elf_i386 emulation. A wrapper script is installed as ld.eld that routes i386 links to lld and all other links to the real ELD binary. - Build steps use ../scripts/do-eld-x86_64-configure from upstream picolibc (scripts/cross-eld-x86_64.txt + scripts/do-eld-x86_64-configure were added via picolibc PR qualcomm#1311). No manual cross file generation or meson setup workarounds needed. - qemu-system-x86 added to the apt-install for test execution. - export PATH to toolchain bin added to build and test run steps. Signed-off-by: Bhoumik Patidar <[email protected]>
Bhoumik Patidar (BhoumikPatidar)
requested review from
quic-k and
Shankar Easwaran (quic-seaswara)
July 24, 2026 09:47
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds x86_64-none-elf to the existing picolibc builder matrix, which already covers hexagon, aarch64, riscv64, riscv32, and arm.
x86_64-specific setup: