We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d922efe commit 6c5b73dCopy full SHA for 6c5b73d
src/Rootfs.jl
@@ -480,7 +480,9 @@ function gcc_version(p::AbstractPlatform,
480
481
# Rust on Windows requires binutils 2.25 (it invokes `ld` with `--high-entropy-va`),
482
# which we bundle with GCC 5.
483
- if :rust in compilers && Sys.iswindows(p)
+ # Rust requires glibc 2.17 (https://blog.rust-lang.org/2022/08/01/Increasing-glibc-kernel-requirements.html),
484
+ # which we only use for GCC >5
485
+ if :rust in compilers
486
GCC_builds = filter(b -> getversion(b) ≥ v"5", GCC_builds)
487
end
488
0 commit comments