mirror of
git://git.musl-libc.org/musl
synced 2025-04-11 03:31:50 +00:00
configure: handle mipsisa64* triplet as a mips64 target
the gnu config.sub script recognizes several mipsisa64* cpu types that musl supports as mips64 targets.
This commit is contained in:
parent
5b5db97f7e
commit
fff880185b
2
configure
vendored
2
configure
vendored
@ -318,7 +318,7 @@ i?86*) ARCH=i386 ;;
|
|||||||
x86_64-x32*|x32*|x86_64*x32) ARCH=x32 ;;
|
x86_64-x32*|x32*|x86_64*x32) ARCH=x32 ;;
|
||||||
x86_64-nt64*) ARCH=nt64 ;;
|
x86_64-nt64*) ARCH=nt64 ;;
|
||||||
x86_64*) ARCH=x86_64 ;;
|
x86_64*) ARCH=x86_64 ;;
|
||||||
mips64*) ARCH=mips64 ;;
|
mips64*|mipsisa64*) ARCH=mips64 ;;
|
||||||
mips*) ARCH=mips ;;
|
mips*) ARCH=mips ;;
|
||||||
microblaze*) ARCH=microblaze ;;
|
microblaze*) ARCH=microblaze ;;
|
||||||
or1k*) ARCH=or1k ;;
|
or1k*) ARCH=or1k ;;
|
||||||
|
Loading…
Reference in New Issue
Block a user