From: Szabolcs Nagy Date: Wed, 24 Aug 2016 10:40:10 +0000 (+0200) Subject: configure: handle mipsisa64* triplet as a mips64 target X-Git-Tag: v1.1.16~75 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fff880185bb3624acfbd2c6a75a1655bcd782c51;p=oweals%2Fmusl.git configure: handle mipsisa64* triplet as a mips64 target the gnu config.sub script recognizes several mipsisa64* cpu types that musl supports as mips64 targets. --- diff --git a/configure b/configure index af8b45f0..707eb125 100755 --- a/configure +++ b/configure @@ -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 ;;