Conversation
declare the aarch64/linux/aapcs64 cross-target so std is cross-buildable to aarch64 out of the box, matching mach's own [target.linux-arm64]. Refs #280
cross-build std's test suite for linux-arm64 and run it under qemu-aarch64, giving std an independent aarch64 regression signal (mirrors the cross-riscv64 lane's install shape). Refs #280
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.
Closes #280
What
[target.linux-arm64](isa=aarch64, os=linux, abi=aapcs64) to std'smach.toml, matching mach's own[target.linux-arm64]. std is now cross-buildable to aarch64 out of the box.cross-arm64CI lane that installsqemu-user, cross-builds std's test suite forlinux-arm64, and runs each test underqemu-aarch64viamach test . --target linux-arm64 --runner qemu-aarch64.This gives std an independent, automatic aarch64 regression signal over its full unit suite — including
std.data.toml, the coverage that would have auto-caught the f64 memory-load miscompile from #278/#279. The lane mirrors the install shape of the existingcross-riscv64lane.Local verification
Cross-built and ran std's suite under
qemu-aarch64on an x86_64 host with the v2.13.0 seed compiler:Related: #278, #279.