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.
2 parents 0710b29 + b63fae8 commit e99de71Copy full SHA for e99de71
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