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 06cbd65 commit eb35103Copy full SHA for eb35103
src/Rootfs.jl
@@ -602,13 +602,17 @@ function choose_shards(p::AbstractPlatform;
602
version = v"12.1.0"
603
end
604
605
+ @show find_shard
606
+ @show name version archive_type target
607
for cs in all_compiler_shards()
608
+ @show cs.name cs.version cs.archive_type cs.target
609
if cs.name == name && cs.version == version &&
- (target === nothing || (@show platforms_match((@show cs.target), (@show target)))) &&
610
+ (target === nothing || platforms_match(cs.target, target)) &&
611
cs.archive_type == archive_type
612
return cs
613
614
615
+ @show :notfound
616
return nothing
617
618
0 commit comments