[CMake][Fuchsia] Use correct architecture for iossim

We should be building iossim for x86_64, not arm64.

Differential Revision: https://reviews.llvm.org/D121659
This commit is contained in:
Petr Hosek 2022-03-14 19:01:26 -07:00
parent ceff23c6e3
commit 1b6ff3f4f8

View File

@ -71,7 +71,7 @@ if(APPLE)
set(LIBCXX_ENABLE_STATIC_ABI_LIBRARY ON CACHE BOOL "")
set(LIBCXX_ABI_VERSION 2 CACHE STRING "")
set(DARWIN_ios_ARCHS arm64 CACHE STRING "")
set(DARWIN_iossim_ARCHS arm64 CACHE STRING "")
set(DARWIN_iossim_ARCHS x86_64 CACHE STRING "")
set(DARWIN_osx_ARCHS arm64;x86_64 CACHE STRING "")
endif()