We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b3f7c8d + 38b2f8b commit 5bc4642Copy full SHA for 5bc4642
utils/build-script
@@ -265,7 +265,8 @@ def default_stdlib_deployment_targets(args):
265
# OS X build machines configure all Darwin platforms by default.
266
# Put iOS native targets last so that we test them last
267
# (it takes a long time).
268
- if host_target == StdlibDeploymentTarget.OSX.x86_64:
+ if host_target == StdlibDeploymentTarget.OSX.x86_64 or \
269
+ host_target == StdlibDeploymentTarget.OSX.arm64:
270
targets = [host_target]
271
if args.build_ios and args.build_ios_simulator:
272
targets.extend(StdlibDeploymentTarget.iOSSimulator.targets)
0 commit comments