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 877fd0a commit 155cfc3Copy full SHA for 155cfc3
cmake/modules/SwiftSupport.cmake
@@ -43,6 +43,8 @@ function(get_swift_host_arch result_var_name)
43
set("${result_var_name}" "i686" PARENT_SCOPE)
44
elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "i686")
45
46
+ elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "riscv64")
47
+ set("${result_var_name}" "riscv64" PARENT_SCOPE)
48
else()
49
message(FATAL_ERROR "Unrecognized architecture on host system: ${CMAKE_SYSTEM_PROCESSOR}")
50
endif()
0 commit comments