We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 35bd509 + 2dc5da0 commit 38050cdCopy full SHA for 38050cd
utils/swift_build_support/swift_build_support/targets.py
@@ -277,7 +277,7 @@ class StdlibDeploymentTarget(object):
277
"powerpc64le",
278
"s390x"])
279
280
- FreeBSD = Platform("freebsd", archs=["x86_64"])
+ FreeBSD = Platform("freebsd", archs=["x86_64", "arm64"])
281
282
OpenBSD = OpenBSDPlatform("openbsd", archs=["amd64"])
283
@@ -375,6 +375,8 @@ def host_target():
375
elif system == 'FreeBSD':
376
if machine == 'amd64':
377
return StdlibDeploymentTarget.FreeBSD.x86_64
378
+ elif machine == 'arm64':
379
+ return StdlibDeploymentTarget.FreeBSD.arm64
380
381
elif system == 'OpenBSD':
382
0 commit comments