Skip to content

Commit 6bfb6e0

Browse files
committed
Merge pull request #2458 from antonblanchard/powerpc64-build
Fix stdlib deployment targets for powerpc64 and powerpc64le
2 parents 08d15b8 + 0b8371d commit 6bfb6e0

File tree

1 file changed

+2
-2
lines changed
  • utils/swift_build_support/swift_build_support

1 file changed

+2
-2
lines changed

utils/swift_build_support/swift_build_support/targets.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ def stdlib_deployment_targets():
7474
elif machine == 'aarch64':
7575
return ['linux-aarch64']
7676
elif machine == 'ppc64':
77-
return ['linux-ppc64']
77+
return ['linux-powerpc64']
7878
elif machine == 'ppc64le':
79-
return ['linux-ppc64le']
79+
return ['linux-powerpc64le']
8080
elif system == 'Darwin':
8181
if machine == 'x86_64':
8282
return [

0 commit comments

Comments
 (0)