Skip to content

Commit a21f391

Browse files
committed
More riscv64 support
1 parent f08131b commit a21f391

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Rootfs.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -472,10 +472,10 @@ function gcc_version(p::AbstractPlatform,
472472
GCC_builds = filter(b -> getversion(b) v"7", GCC_builds)
473473
end
474474

475-
# We only have GCC 13 or newer for RISC-V.
475+
# We only have GCC 12 or newer for RISC-V.
476476
# (This could be changed down to GCC 7.1.)
477477
if arch(p) == "riscv64"
478-
GCC_builds = filter(b -> getversion(b) v"13", GCC_builds)
478+
GCC_builds = filter(b -> getversion(b) v"12", GCC_builds)
479479
end
480480

481481
# Rust on Windows requires binutils 2.25 (it invokes `ld` with `--high-entropy-va`),

0 commit comments

Comments
 (0)