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 81ac872 commit ac755c4Copy full SHA for ac755c4
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