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 d66d015 commit 6a7abc0Copy full SHA for 6a7abc0
cmake/modules/SwiftSupport.cmake
@@ -37,6 +37,8 @@ function(get_swift_host_arch result_var_name)
37
set("${result_var_name}" "i686" PARENT_SCOPE)
38
elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "i686")
39
40
+ elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "riscv64")
41
+ set("${result_var_name}" "riscv64" PARENT_SCOPE)
42
else()
43
message(FATAL_ERROR "Unrecognized architecture on host system: ${CMAKE_SYSTEM_PROCESSOR}")
44
endif()
0 commit comments