summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLior Kaplan <kaplanlior@gmail.com>2014-08-28 00:44:31 +0300
committerLior Kaplan <kaplanlior@gmail.com>2014-08-28 00:44:31 +0300
commitb38ca3adeeee502d2fb1be9b8956c60a3d7c1f0e (patch)
tree1b3f4cfbadb5ed74bd43b405028c5b9671a246e5
parent302ccc195b58cd03fabbd0855f186857d53aa899 (diff)
downloadphp-git-b38ca3adeeee502d2fb1be9b8956c60a3d7c1f0e.tar.gz
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
-rw-r--r--config.guess6
1 files changed, 6 insertions, 0 deletions
diff --git a/config.guess b/config.guess
index 1578aa1736..63b63d81d6 100644
--- a/config.guess
+++ b/config.guess
@@ -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 ;;