Skip to content

Commit

Permalink
configure: handle mipsisa64* triplet as a mips64 target
Browse files Browse the repository at this point in the history
the gnu config.sub script recognizes several mipsisa64* cpu types
that musl supports as mips64 targets.
  • Loading branch information
Szabolcs Nagy authored and richfelker committed Aug 30, 2016
1 parent 5b5db97 commit fff8801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -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 ;;
Expand Down

0 comments on commit fff8801

Please sign in to comment.