Skip to content

Commit

Permalink
More riscv64 support
Browse files Browse the repository at this point in the history
  • Loading branch information
eschnett committed Dec 22, 2024
1 parent 06cbd65 commit eb35103
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Rootfs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -602,13 +602,17 @@ function choose_shards(p::AbstractPlatform;
version = v"12.1.0"
end

@show find_shard
@show name version archive_type target
for cs in all_compiler_shards()
@show cs.name cs.version cs.archive_type cs.target
if cs.name == name && cs.version == version &&
(target === nothing || (@show platforms_match((@show cs.target), (@show target)))) &&
(target === nothing || platforms_match(cs.target, target)) &&
cs.archive_type == archive_type
return cs
end
end
@show :notfound
return nothing
end

Expand Down

0 comments on commit eb35103

Please sign in to comment.