Skip to content

Commit dd8e68d

Browse files
committed
Auto merge of #38650 - infinity0:master, r=alexcrichton
Detect mips CPUs in ./configure This mirrors existing logic already in src/bootstrap/bootstrap.py
2 parents e357178 + 246e749 commit dd8e68d

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

configure

+12
Original file line numberDiff line numberDiff line change
@@ -541,6 +541,18 @@ case $CFG_CPUTYPE in
541541
CFG_CPUTYPE=x86_64
542542
;;
543543

544+
mips | mips64)
545+
if [ "$CFG_CPUTYPE" = "mips64" ]; then
546+
CFG_OSTYPE="${CFG_OSTYPE}abi64"
547+
fi
548+
ENDIAN=$(printf '\1' | od -dAn)
549+
if [ "$ENDIAN" -eq 1 ]; then
550+
CFG_CPUTYPE="${CFG_CPUTYPE}el"
551+
elif [ "$ENDIAN" -ne 256 ]; then
552+
err "unknown endianness: $ENDIAN (expecting 1 for little or 256 for big)"
553+
fi
554+
;;
555+
544556
BePC)
545557
CFG_CPUTYPE=i686
546558
;;

src/test/run-pass/conditional-compile-arch.rs

+6
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ pub fn main() { }
2222
#[cfg(target_arch = "aarch64")]
2323
pub fn main() { }
2424

25+
#[cfg(target_arch = "mips")]
26+
pub fn main() { }
27+
28+
#[cfg(target_arch = "mips64")]
29+
pub fn main() { }
30+
2531
#[cfg(target_arch = "powerpc64")]
2632
pub fn main() { }
2733

0 commit comments

Comments
 (0)