Skip to content

Commit

Permalink
Merge pull request #14 from RyeMutt/fix-arm64-build
Browse files Browse the repository at this point in the history
Fix building 64bit packages on arm64 hosts
  • Loading branch information
bennettgoble authored Oct 1, 2022
2 parents 28421fa + 2b44cb0 commit dfedaf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autobuild/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def is_system_64bit():
"""
Returns True if the build system is 64-bit compatible.
"""
return platform.machine().lower() in ("x86_64", "amd64")
return platform.machine().lower() in ("x86_64", "amd64", "arm64")

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

0 comments on commit dfedaf4

Please sign in to comment.