summaryrefslogtreecommitdiff
path: root/config.guess
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2017-03-22 14:01:03 +0000
committerNick Clifton <nickc@redhat.com>2017-03-22 14:01:03 +0000
commit11997a83a040245406b6e2e9978c6720f17e80c4 (patch)
treed2028b1247ecfac8cba9b86ba8451020e1d14358 /config.guess
parent79778b30dc5881a8d88b55744cab53d95fa6fda2 (diff)
downloadbinutils-gdb-11997a83a040245406b6e2e9978c6720f17e80c4.tar.gz
Sync top level config files with master versions in the FSF config project.
* config.sub: Sync with master version in config project. * config.guess: Likewise.
Diffstat (limited to 'config.guess')
-rwxr-xr-xconfig.guess16
1 files changed, 10 insertions, 6 deletions
diff --git a/config.guess b/config.guess
index 2e9ad7fe818..07e63a16e28 100755
--- a/config.guess
+++ b/config.guess
@@ -1,8 +1,8 @@
#! /bin/sh
# Attempt to guess a canonical system name.
-# Copyright 1992-2016 Free Software Foundation, Inc.
+# Copyright 1992-2017 Free Software Foundation, Inc.
-timestamp='2016-10-02'
+timestamp='2017-03-22'
# 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
@@ -50,7 +50,7 @@ version="\
GNU config.guess ($timestamp)
Originally written by Per Bothner.
-Copyright 1992-2016 Free Software Foundation, Inc.
+Copyright 1992-2017 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -837,10 +837,11 @@ EOF
UNAME_PROCESSOR=`/usr/bin/uname -p`
case ${UNAME_PROCESSOR} in
amd64)
- echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
- *)
- echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
+ UNAME_PROCESSOR=x86_64 ;;
+ i386)
+ UNAME_PROCESSOR=i586 ;;
esac
+ echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
exit ;;
i*:CYGWIN*:*)
echo ${UNAME_MACHINE}-pc-cygwin
@@ -1343,6 +1344,9 @@ EOF
NSR-?:NONSTOP_KERNEL:*:*)
echo nsr-tandem-nsk${UNAME_RELEASE}
exit ;;
+ NSX-?:NONSTOP_KERNEL:*:*)
+ echo nsx-tandem-nsk${UNAME_RELEASE}
+ exit ;;
*:NonStop-UX:*:*)
echo mips-compaq-nonstopux
exit ;;