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 f08131b commit a21f391Copy full SHA for a21f391
src/Rootfs.jl
@@ -472,10 +472,10 @@ function gcc_version(p::AbstractPlatform,
472
GCC_builds = filter(b -> getversion(b) ≥ v"7", GCC_builds)
473
end
474
475
- # We only have GCC 13 or newer for RISC-V.
+ # We only have GCC 12 or newer for RISC-V.
476
# (This could be changed down to GCC 7.1.)
477
if arch(p) == "riscv64"
478
- GCC_builds = filter(b -> getversion(b) ≥ v"13", GCC_builds)
+ GCC_builds = filter(b -> getversion(b) ≥ v"12", GCC_builds)
479
480
481
# Rust on Windows requires binutils 2.25 (it invokes `ld` with `--high-entropy-va`),
0 commit comments