From 29900d3bff1ce445087ece5cb2cac425df1c2f74 Mon Sep 17 00:00:00 2001 From: Anton Blanchard Date: Thu, 6 Jun 2013 14:21:16 +1000 Subject: [PATCH] * config.guess (ppc64le:Linux:*:*, ppcle:Linux:*:*): New. Signed-off-by: Ben Elliston --- ChangeLog | 4 ++++ config.guess | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8f47da4..2894357 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-06-06 Anton Blanchard + + * config.guess (ppc64le:Linux:*:*, ppcle:Linux:*:*): New. + 2013-05-16 Mike Frysinger * config.guess (s390:Linux:*:*|s390x:Linux:*:*): s390 targets diff --git a/config.guess b/config.guess index 120cc0d..516ac6c 100755 --- a/config.guess +++ b/config.guess @@ -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 ;;