Skip to content

Commit b38ca3a

Browse files
committed
config.guess: add ppc64le / ppcle support by Anton Blanchard <anton@samba.org>
Based on http://git.savannah.gnu.org/cgit/config.git/commit/?id=29900d3b
1 parent 302ccc1 commit b38ca3a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

config.guess

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -982,6 +982,12 @@ EOF
982982
ppc:Linux:*:*)
983983
echo powerpc-unknown-linux-gnu
984984
exit ;;
985+
ppc64le:Linux:*:*)
986+
echo powerpc64le-unknown-linux-gnu
987+
exit ;;
988+
ppcle:Linux:*:*)
989+
echo powerpcle-unknown-linux-gnu
990+
exit ;;
985991
s390:Linux:*:* | s390x:Linux:*:*)
986992
echo ${UNAME_MACHINE}-ibm-linux
987993
exit ;;

0 commit comments

Comments
 (0)