-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is required to get PR #640 and further work on the repository moving.
- Loading branch information
1 parent
61deab3
commit e2d58c1
Showing
1 changed file
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,19 @@ | ||
# Remove this if targeting AArch64 from an AArch64 Linux box | ||
# May need to remove these if targeting AArch64 from an AArch64 Linux box | ||
|
||
[target.'cfg(all(target_os = "linux", target_arch = "aarch64"))'] | ||
runner = 'qemu-aarch64' | ||
runner = "qemu-aarch64" | ||
|
||
[target.aarch64-unknown-linux-gnu] | ||
linker = 'aarch64-linux-gnu-gcc' | ||
linker = "aarch64-linux-gnu-gcc" | ||
|
||
[target.aarch64-unknown-linux-musl] | ||
linker = 'aarch64-linux-musl-gcc' | ||
linker = "aarch64-linux-musl-gcc" | ||
# AArch64 Linux musl targets are repeatedly affected under varying | ||
# circumstances by fixedn't linking issues to compiler builtin symbols. | ||
# Linking to libgcc, though arguably an inelegant hack that's only portable | ||
# to our glibc from musl crosscompilation scenario, is effective to reliably | ||
# provide an implementation of those fundamental symbols over time, without | ||
# user-visible impacts on the final executables. See: | ||
# https://github.com/rust-lang/rust/issues/46651 | ||
# https://github.com/rust-lang/compiler-builtins/issues/201 | ||
rustflags = ["-Clink-args=-lgcc"] |