Skip to content

Commit 1dcf9d5

Browse files
committed
More riscv64 support
1 parent 50133af commit 1dcf9d5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "BinaryBuilderBase"
22
uuid = "7f725544-6523-48cd-82d1-3fa08ff4056e"
33
authors = ["Elliot Saba <[email protected]>"]
4-
version = "1.33.0"
4+
version = "1.34.0"
55

66
[deps]
77
Bzip2_jll = "6e34b625-4abd-537c-b88f-471c36dfa7a0"

src/riscv64.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ end
8888
BinaryPlatforms.arch_march_isa_mapping["riscv64"] = ["riscv64" => get_set("riscv64", "riscv64")]
8989

9090
function Base.parse(::Type{Platform}, triplet::AbstractString; validate_strict::Bool = false)
91-
# Re-insert the architecture because the global assignment above doesn't stick
91+
# Re-insert the architecture because the global assignments above don't stick
9292
arch_mapping["riscv64"] = "(rv64|riscv64)"
93-
#TODO Base.BinaryPlatforms.arch_march_isa_mapping["riscv64"] = ["riscv64" => get_set("riscv64", "riscv64")]
93+
arch_march_isa_mapping["riscv64"] = ["riscv64" => get_set("riscv64", "riscv64")]
9494

9595
# Helper function to collapse dictionary of mappings down into a regex of
9696
# named capture groups joined by "|" operators

0 commit comments

Comments
 (0)