Skip to content

Commit eb35103

Browse files
committed
More riscv64 support
1 parent 06cbd65 commit eb35103

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Rootfs.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,13 +602,17 @@ function choose_shards(p::AbstractPlatform;
602602
version = v"12.1.0"
603603
end
604604

605+
@show find_shard
606+
@show name version archive_type target
605607
for cs in all_compiler_shards()
608+
@show cs.name cs.version cs.archive_type cs.target
606609
if cs.name == name && cs.version == version &&
607-
(target === nothing || (@show platforms_match((@show cs.target), (@show target)))) &&
610+
(target === nothing || platforms_match(cs.target, target)) &&
608611
cs.archive_type == archive_type
609612
return cs
610613
end
611614
end
615+
@show :notfound
612616
return nothing
613617
end
614618

0 commit comments

Comments
 (0)