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 6162a1d commit b63fae8Copy full SHA for b63fae8
cmake/modules/SwiftSupport.cmake
@@ -101,6 +101,8 @@ function(get_swift_host_arch result_var_name)
101
set("${result_var_name}" "itanium" PARENT_SCOPE)
102
elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "x86")
103
set("${result_var_name}" "i686" PARENT_SCOPE)
104
+ elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "i686")
105
+ set("${result_var_name}" "i686" PARENT_SCOPE)
106
else()
107
message(FATAL_ERROR "Unrecognized architecture on host system: ${CMAKE_SYSTEM_PROCESSOR}")
108
endif()
0 commit comments