Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -136,14 +136,13 @@ function(darwin_test_archs os valid_archs)

# The simple program will build for x86_64h on the simulator because it is
# compatible with x86_64 libraries (mostly), but since x86_64h isn't actually
# a valid or useful architecture for the iOS simulator we should drop it.
# a valid or useful architecture for the simulators. We should drop it.
if(${os} MATCHES "^(iossim|tvossim|watchossim)$")
list(REMOVE_ITEM archs "x86_64h")
endif()

if(${os} MATCHES "iossim")
message(STATUS "Disabling i386 slice for iossim")
list(REMOVE_ITEM archs "i386")
if ("i386" IN_LIST archs)
list(REMOVE_ITEM archs "i386")
message(STATUS "Disabling i386 slice for simulator")
endif()
endif()

if(${os} MATCHES "^ios$")
Expand Down
Loading