1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

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
This commit is contained in:
Lior Kaplan
2014-08-28 00:44:31 +03:00
parent 302ccc195b
commit b38ca3adee

6
config.guess vendored
View File

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