Skip to content

Commit dfedaf4

Browse files
authored
Merge pull request #14 from RyeMutt/fix-arm64-build
Fix building 64bit packages on arm64 hosts
2 parents 28421fa + 2b44cb0 commit dfedaf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autobuild/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def is_system_64bit():
9999
"""
100100
Returns True if the build system is 64-bit compatible.
101101
"""
102-
return platform.machine().lower() in ("x86_64", "amd64")
102+
return platform.machine().lower() in ("x86_64", "amd64", "arm64")
103103

104104
def is_system_windows():
105105
# Note that Python has a commitment to the value "win32" even for 64-bit

0 commit comments

Comments
 (0)