Skip to content

Commit

Permalink
aarch64 CPU type is called arm64 on FreeBSD
Browse files Browse the repository at this point in the history
  • Loading branch information
dumbbell committed Feb 3, 2017
1 parent 458167e commit f6c6b31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ case $CFG_CPUTYPE in
CFG_OSTYPE="${CFG_OSTYPE}eabihf"
;;

aarch64)
aarch64 | arm64)
CFG_CPUTYPE=aarch64
;;

Expand Down
2 changes: 2 additions & 0 deletions src/bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,8 @@ def build_triple(self):
ostype += 'eabihf'
elif cputype == 'aarch64':
cputype = 'aarch64'
elif cputype == 'arm64':
cputype = 'aarch64'
elif cputype == 'mips':
if sys.byteorder == 'big':
cputype = 'mips'
Expand Down

0 comments on commit f6c6b31

Please sign in to comment.