From 80bf19d563eebd1eca23f4092f96819296020fa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Wed, 9 Aug 2017 14:06:55 +0200 Subject: [PATCH] Add ppc64le and aarch64* to config.guess MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The config.guess does not detect ppc64le, nor aarch64* machines, therefor machines can't be auto-detected. This adds such entries for generic-linux targets. Signed-off-by: Lukáš Doktor --- config.guess | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config.guess b/config.guess index ad5281e..ea0db49 100755 --- a/config.guess +++ b/config.guess @@ -814,6 +814,9 @@ EOF i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; + aarch64*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; arm*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; @@ -882,6 +885,9 @@ EOF ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu exit ;; + ppc64le:Linux:*:*) + echo powerpc64le-unknown-linux-gnu + exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;;