Skip to content

Commit 5bc4642

Browse files
Merge pull request #39874 from aschwaighofer/build_script_deployment_targets_arm64
build-script: Allow building other deployment targets on macos arm64
2 parents b3f7c8d + 38b2f8b commit 5bc4642

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utils/build-script

+2-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,8 @@ def default_stdlib_deployment_targets(args):
265265
# OS X build machines configure all Darwin platforms by default.
266266
# Put iOS native targets last so that we test them last
267267
# (it takes a long time).
268-
if host_target == StdlibDeploymentTarget.OSX.x86_64:
268+
if host_target == StdlibDeploymentTarget.OSX.x86_64 or \
269+
host_target == StdlibDeploymentTarget.OSX.arm64:
269270
targets = [host_target]
270271
if args.build_ios and args.build_ios_simulator:
271272
targets.extend(StdlibDeploymentTarget.iOSSimulator.targets)

0 commit comments

Comments
 (0)