Skip to content

Commit b9ffc26

Browse files
authored
Merge pull request #37943 from apple/fix-supported-arch-macos
Update the macOS arch list to x86_64 and arm64
2 parents 92beb71 + d914ac2 commit b9ffc26

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmake/modules/DarwinSDKs.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set(SUPPORTED_TVOS_ARCHS "arm64")
1414
set(SUPPORTED_TVOS_SIMULATOR_ARCHS "x86_64;arm64")
1515
set(SUPPORTED_WATCHOS_ARCHS "armv7k;arm64_32")
1616
set(SUPPORTED_WATCHOS_SIMULATOR_ARCHS "i386;x86_64;arm64")
17-
set(SUPPORTED_OSX_ARCHS "x86_64;arm64;arm64e")
17+
set(SUPPORTED_OSX_ARCHS "x86_64;arm64")
1818

1919
is_sdk_requested(OSX swift_build_osx)
2020
if(swift_build_osx)

utils/swift_build_support/swift_build_support/targets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def name(self):
154154

155155

156156
class StdlibDeploymentTarget(object):
157-
OSX = DarwinPlatform("macosx", archs=["x86_64", "arm64", "arm64e"],
157+
OSX = DarwinPlatform("macosx", archs=["x86_64", "arm64"],
158158
sdk_name="OSX")
159159

160160
iOS = DarwinPlatform("iphoneos", archs=["armv7", "armv7s", "arm64", "arm64e"],

0 commit comments

Comments
 (0)