Skip to content

Commit beb0845

Browse files
committed
More riscv64 support
1 parent 159eb63 commit beb0845

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Rootfs.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -647,14 +647,14 @@ function choose_shards(p::AbstractPlatform;
647647

648648
# We _always_ need Rootfs and PlatformSupport for our target, at least
649649
append!(shards, [
650-
@show find_shard("Rootfs", rootfs_build, archive_type),
651-
@show find_shard("PlatformSupport", ps_build, archive_type; target=p)
650+
(@show find_shard("Rootfs", rootfs_build, archive_type)),
651+
(@show find_shard("PlatformSupport", ps_build, archive_type; target=p))
652652
])
653653

654654
if :c in compilers
655655
append!(shards, [
656-
@show find_shard("GCCBootstrap", GCC_build, archive_type; target=p),
657-
@show find_shard("LLVMBootstrap", LLVM_build, archive_type),
656+
(@show find_shard("GCCBootstrap", GCC_build, archive_type; target=p)),
657+
(@show find_shard("LLVMBootstrap", LLVM_build, archive_type)),
658658
])
659659
end
660660

@@ -675,8 +675,8 @@ function choose_shards(p::AbstractPlatform;
675675
# This is necessary for both rust and c compilers
676676
if !platforms_match(p, default_host_platform)
677677
append!(shards, [
678-
@show find_shard("PlatformSupport", ps_build, archive_type; target=default_host_platform),
679-
@show find_shard("GCCBootstrap", GCC_build, archive_type; target=default_host_platform),
678+
(@show find_shard("PlatformSupport", ps_build, archive_type; target=default_host_platform)),
679+
(@show find_shard("GCCBootstrap", GCC_build, archive_type; target=default_host_platform)),
680680
])
681681
end
682682
end

0 commit comments

Comments
 (0)