Auto merge of #38650 - infinity0:master, r=alexcrichton
Detect mips CPUs in ./configure This mirrors existing logic already in src/bootstrap/bootstrap.py
This commit is contained in:
commit
dd8e68d0da
12
configure
vendored
12
configure
vendored
@ -541,6 +541,18 @@ case $CFG_CPUTYPE in
|
||||
CFG_CPUTYPE=x86_64
|
||||
;;
|
||||
|
||||
mips | mips64)
|
||||
if [ "$CFG_CPUTYPE" = "mips64" ]; then
|
||||
CFG_OSTYPE="${CFG_OSTYPE}abi64"
|
||||
fi
|
||||
ENDIAN=$(printf '\1' | od -dAn)
|
||||
if [ "$ENDIAN" -eq 1 ]; then
|
||||
CFG_CPUTYPE="${CFG_CPUTYPE}el"
|
||||
elif [ "$ENDIAN" -ne 256 ]; then
|
||||
err "unknown endianness: $ENDIAN (expecting 1 for little or 256 for big)"
|
||||
fi
|
||||
;;
|
||||
|
||||
BePC)
|
||||
CFG_CPUTYPE=i686
|
||||
;;
|
||||
|
@ -22,6 +22,12 @@ pub fn main() { }
|
||||
#[cfg(target_arch = "aarch64")]
|
||||
pub fn main() { }
|
||||
|
||||
#[cfg(target_arch = "mips")]
|
||||
pub fn main() { }
|
||||
|
||||
#[cfg(target_arch = "mips64")]
|
||||
pub fn main() { }
|
||||
|
||||
#[cfg(target_arch = "powerpc64")]
|
||||
pub fn main() { }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user