Skip to content

Commit

Permalink
Recognize aarch64.
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Thalinger committed Feb 10, 2016
1 parent 6131243 commit 95cc439
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mx.py
Original file line number Diff line number Diff line change
Expand Up @@ -5934,6 +5934,8 @@ def _separatedCygpathW2U(p):

def get_arch():
machine = platform.uname()[4]
if machine in ['aarch64']:
return 'aarch64'
if machine in ['amd64', 'AMD64', 'x86_64', 'i86pc']:
return 'amd64'
if machine in ['sun4v', 'sun4u', 'sparc64']:
Expand Down

0 comments on commit 95cc439

Please sign in to comment.