summaryrefslogtreecommitdiffstats
path: root/make/configure.py
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2020-08-01 02:30:05 -0400
committerBradley Sepos <[email protected]>2020-08-01 02:30:05 -0400
commitbc364872546a96c4527f36463ada4fc426fa8435 (patch)
treeaa1c31df283c8b0a653750f63d6909cab2b2b87e /make/configure.py
parent9b008b0f3666e7deb5965691e045a03d1912d6a1 (diff)
build: make: Map aarch64-* to arm64-* for Apple Silicon in configure.py.
Diffstat (limited to 'make/configure.py')
-rw-r--r--make/configure.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/make/configure.py b/make/configure.py
index 8c9e633fe..a6d6b9b08 100644
--- a/make/configure.py
+++ b/make/configure.py
@@ -674,8 +674,8 @@ class ArchAction( Action ):
elif host_tuple.match( '*-*-mingw*' ):
pass
elif host_tuple.match( '*-*-darwin*' ):
- self.mode['x86_64'] = 'x86_64-apple-darwin%s' % (host_tuple.release)
- self.mode['aarch64'] = 'aarch64-apple-darwin%s' % (host_tuple.release)
+ self.mode['x86_64'] = 'x86_64-apple-darwin%s' % (host_tuple.release)
+ self.mode['arm64'] = 'aarch64-apple-darwin%s' % (host_tuple.release)
elif host_tuple.match( '*-*-linux*' ):
pass
elif host_tuple.match( '*-*-solaris*' ):