Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f6c6b31

Browse files
committedFeb 3, 2017
aarch64 CPU type is called arm64 on FreeBSD
1 parent 458167e commit f6c6b31

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ case $CFG_CPUTYPE in
517517
CFG_OSTYPE="${CFG_OSTYPE}eabihf"
518518
;;
519519

520-
aarch64)
520+
aarch64 | arm64)
521521
CFG_CPUTYPE=aarch64
522522
;;
523523

‎src/bootstrap/bootstrap.py

+2
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,8 @@ def build_triple(self):
379379
ostype += 'eabihf'
380380
elif cputype == 'aarch64':
381381
cputype = 'aarch64'
382+
elif cputype == 'arm64':
383+
cputype = 'aarch64'
382384
elif cputype == 'mips':
383385
if sys.byteorder == 'big':
384386
cputype = 'mips'

0 commit comments

Comments
 (0)
Failed to load comments.