Skip to content

Commit c738fe8

Browse files
committed
Review
1 parent 852cd27 commit c738fe8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

compiler-rt/cmake/base-config-ix.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ if(APPLE)
156156

157157
option(COMPILER_RT_ENABLE_WATCHOS "Enable building for watchOS - Experimental" Off)
158158
option(COMPILER_RT_ENABLE_TVOS "Enable building for tvOS - Experimental" Off)
159+
option(COMPILER_RT_ENABLE_XROS "Enable building for xrOS - Experimental" Off)
159160

160161
else()
161162
option(COMPILER_RT_DEFAULT_TARGET_ONLY "Build builtins only for the default target" Off)

compiler-rt/cmake/builtin-config-ix.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ if(APPLE)
166166
endif()
167167
if(COMPILER_RT_ENABLE_XROS)
168168
list(APPEND DARWIN_EMBEDDED_PLATFORMS xros)
169-
set(DARWIN_xros_BUILTIN_ALL_POSSIBLE_ARCHS arm64)
170-
set(DARWIN_xrossim_BUILTIN_ALL_POSSIBLE_ARCHS ${X86_64} arm64)
169+
set(DARWIN_xros_BUILTIN_ALL_POSSIBLE_ARCHS ${ARM64} ${ARM32})
170+
set(DARWIN_xrossim_BUILTIN_ALL_POSSIBLE_ARCHS arm64)
171171
endif()
172172

173173
set(BUILTIN_SUPPORTED_OS osx)

0 commit comments

Comments
 (0)