diff options
author | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-05-06 15:11:24 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-05-06 15:11:24 +0200 |
commit | 8891442c9b52580ae7b8c79cbc8d1334bd12052b (patch) | |
tree | 5ac93c95f9d10b88f4fbc2d0f415cdb539b6f15b /scripts/config.guess | |
parent | 2baef3ce710b771268796d80b9dbb2c7fe0ab41d (diff) | |
download | crosstool-ng-8891442c9b52580ae7b8c79cbc8d1334bd12052b.tar.gz crosstool-ng-8891442c9b52580ae7b8c79cbc8d1334bd12052b.tar.bz2 crosstool-ng-8891442c9b52580ae7b8c79cbc8d1334bd12052b.zip |
scripts: update config.{guess,sub}
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Diffstat (limited to 'scripts/config.guess')
-rwxr-xr-x | scripts/config.guess | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/scripts/config.guess b/scripts/config.guess index 49ba16f1..d622a44e 100755 --- a/scripts/config.guess +++ b/scripts/config.guess @@ -4,7 +4,7 @@ # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, # 2011, 2012 Free Software Foundation, Inc. -timestamp='2012-01-01' +timestamp='2012-02-10' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -17,9 +17,7 @@ timestamp='2012-01-01' # General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA -# 02110-1301, USA. +# along with this program; if not, see <http://www.gnu.org/licenses/>. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -863,6 +861,13 @@ EOF i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; + aarch64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + aarch64_be:Linux:*:*) + UNAME_MACHINE=aarch64_be + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; @@ -1320,6 +1325,9 @@ EOF i*86:AROS:*:*) echo ${UNAME_MACHINE}-pc-aros exit ;; + x86_64:VMkernel:*:*) + echo ${UNAME_MACHINE}-unknown-esx + exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 |