* config.guess (ppc64le:Linux:*:*, ppcle:Linux:*:*): New.

Signed-off-by: Ben Elliston <bje@gnu.org>
This commit is contained in:
Anton Blanchard 2013-06-06 14:21:16 +10:00 committed by Ben Elliston
parent 20f0b7ebd0
commit 29900d3bff
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2013-06-06 Anton Blanchard <anton@samba.org>
* config.guess (ppc64le:Linux:*:*, ppcle:Linux:*:*): New.
2013-05-16 Mike Frysinger <vapier@gentoo.org>
* config.guess (s390:Linux:*:*|s390x:Linux:*:*): s390 targets

6
config.guess vendored
View File

@ -995,6 +995,12 @@ EOF
ppc:Linux:*:*)
echo powerpc-unknown-linux-${LIBC}
exit ;;
ppc64le:Linux:*:*)
echo powerpc64le-unknown-linux-${LIBC}
exit ;;
ppcle:Linux:*:*)
echo powerpcle-unknown-linux-${LIBC}
exit ;;
s390:Linux:*:* | s390x:Linux:*:*)
echo ${UNAME_MACHINE}-ibm-linux-${LIBC}
exit ;;