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 1dcf9d5 commit 2bcd78bCopy full SHA for 2bcd78b
src/riscv64.jl
@@ -89,6 +89,10 @@ BinaryPlatforms.arch_march_isa_mapping["riscv64"] = ["riscv64" => get_set("riscv
89
90
function Base.parse(::Type{Platform}, triplet::AbstractString; validate_strict::Bool = false)
91
# Re-insert the architecture because the global assignments above don't stick
92
+ CPUID.ISAs_by_family["riscv64"] = [
93
+ # We have no way to test riscv64 features yet, so we're only going to declare the lowest ISA:
94
+ "riscv64" => CPUID.ISA(Set{UInt32}()),
95
+ ]
96
arch_mapping["riscv64"] = "(rv64|riscv64)"
97
arch_march_isa_mapping["riscv64"] = ["riscv64" => get_set("riscv64", "riscv64")]
98
0 commit comments