Skip to content

Commit 83dc17d

Browse files
committed
More riscv64 support
1 parent b4884fb commit 83dc17d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/Rootfs.jl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -579,8 +579,7 @@ function choose_shards(p::AbstractPlatform;
579579
compilers::Vector{Symbol} = [:c],
580580
# We always just use the latest Rootfs embedded within our Artifacts.toml
581581
rootfs_build::VersionNumber=last(BinaryBuilderBase.get_available_builds("Rootfs")),
582-
#TODO ps_build::VersionNumber=v"2024.08.10",
583-
ps_build::VersionNumber=v"2024.12.21",
582+
ps_build::VersionNumber=v"2024.08.10",
584583
GCC_builds::Vector{GCCBuild}=available_gcc_builds,
585584
LLVM_builds::Vector{LLVMBuild}=available_llvm_builds,
586585
Rust_build::VersionNumber=maximum(getversion.(available_rust_builds)),
@@ -651,9 +650,11 @@ function choose_shards(p::AbstractPlatform;
651650
)
652651

653652
# We _always_ need Rootfs and PlatformSupport for our target, at least
653+
ps_build_new=v"2024.12.21"
654654
append!(shards, [
655655
(@show find_shard("Rootfs", rootfs_build, archive_type)),
656-
(@show find_shard("PlatformSupport", ps_build, archive_type; target=p))
656+
(@show find_shard("PlatformSupport", ps_build_new, archive_type; target=p))
657+
657658
])
658659

659660
if :c in compilers

0 commit comments

Comments
 (0)