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 2a9052a commit a0b6fc1Copy full SHA for a0b6fc1
autoconf/config.guess
@@ -977,6 +977,9 @@ EOF
977
ppc:Linux:*:*)
978
echo powerpc-unknown-linux-gnu
979
exit ;;
980
+ riscv64:Linux:*:*)
981
+ echo ${UNAME_MACHINE}-unknown-linux-gnu
982
+ exit ;;
983
s390:Linux:*:* | s390x:Linux:*:*)
984
echo ${UNAME_MACHINE}-ibm-linux
985
cmake/config-ix.cmake
@@ -365,6 +365,8 @@ elseif (LLVM_NATIVE_ARCH MATCHES "wasm32")
365
set(LLVM_NATIVE_ARCH WebAssembly)
366
elseif (LLVM_NATIVE_ARCH MATCHES "wasm64")
367
368
+elseif (LLVM_NATIVE_ARCH MATCHES "riscv64")
369
+ set(LLVM_NATIVE_ARCH RISCV)
370
else ()
371
message(FATAL_ERROR "Unknown architecture ${LLVM_NATIVE_ARCH}")
372
endif ()
0 commit comments