From d4a7c673f65ac4ed257be7d3c380108a88f5c510 Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Mon, 29 Jun 2020 14:26:30 +0530 Subject: [PATCH 4/8] config.guess: linux - Add support for ppc64le machine Configure fails to guess ppc64le machine type under the Linux system. This patch adds support to recognize ppc64le by adding it to the list of valid Linux systems. Signed-off-by: Kamalesh Babulal --- config.guess | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config.guess b/config.guess index 2fc3acc..9b3e674 100644 --- a/config.guess +++ b/config.guess @@ -864,6 +864,9 @@ EOF ppc64:Linux:*:*) echo powerpc64-${VENDOR:-unknown}-linux-gnu exit 0 ;; + ppc64le:Linux:*:*) + echo powerpc64le-${VENDOR:-unknown}-linux-gnu + exit 0 ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; -- 2.28.0