mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 00:03:43 +00:00
aarch64
CPU type is called arm64
on FreeBSD
This commit is contained in:
parent
458167e3a0
commit
f6c6b31d26
2
configure
vendored
2
configure
vendored
@ -517,7 +517,7 @@ case $CFG_CPUTYPE in
|
|||||||
CFG_OSTYPE="${CFG_OSTYPE}eabihf"
|
CFG_OSTYPE="${CFG_OSTYPE}eabihf"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
aarch64)
|
aarch64 | arm64)
|
||||||
CFG_CPUTYPE=aarch64
|
CFG_CPUTYPE=aarch64
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
@ -379,6 +379,8 @@ class RustBuild(object):
|
|||||||
ostype += 'eabihf'
|
ostype += 'eabihf'
|
||||||
elif cputype == 'aarch64':
|
elif cputype == 'aarch64':
|
||||||
cputype = 'aarch64'
|
cputype = 'aarch64'
|
||||||
|
elif cputype == 'arm64':
|
||||||
|
cputype = 'aarch64'
|
||||||
elif cputype == 'mips':
|
elif cputype == 'mips':
|
||||||
if sys.byteorder == 'big':
|
if sys.byteorder == 'big':
|
||||||
cputype = 'mips'
|
cputype = 'mips'
|
||||||
|
Loading…
Reference in New Issue
Block a user