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