diff options
author | Szabolcs Nagy <nsz@port70.net> | 2016-08-24 12:40:10 +0200 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2016-08-30 16:00:47 -0400 |
commit | fff880185bb3624acfbd2c6a75a1655bcd782c51 (patch) | |
tree | 2fb7e49409cedcfce36892d4a0bc0a440a67bed9 /configure | |
parent | 5b5db97f7e80bde2678aed72336a28375e800354 (diff) | |
download | musl-fff880185bb3624acfbd2c6a75a1655bcd782c51.tar.gz musl-fff880185bb3624acfbd2c6a75a1655bcd782c51.tar.bz2 musl-fff880185bb3624acfbd2c6a75a1655bcd782c51.tar.xz musl-fff880185bb3624acfbd2c6a75a1655bcd782c51.zip |
configure: handle mipsisa64* triplet as a mips64 target
the gnu config.sub script recognizes several mipsisa64* cpu types
that musl supports as mips64 targets.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -318,7 +318,7 @@ i?86*) ARCH=i386 ;; x86_64-x32*|x32*|x86_64*x32) ARCH=x32 ;; x86_64-nt64*) ARCH=nt64 ;; x86_64*) ARCH=x86_64 ;; -mips64*) ARCH=mips64 ;; +mips64*|mipsisa64*) ARCH=mips64 ;; mips*) ARCH=mips ;; microblaze*) ARCH=microblaze ;; or1k*) ARCH=or1k ;; |