diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-13 00:12:01 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-13 00:12:01 +0000 |
commit | 2668caae1916b02d08a33cc66b035200bfeb1bbe (patch) | |
tree | 57b01093b5ca5d98ed23b16738c7901743f76e6e /config.guess | |
parent | 34aaebf3c711686a7f2abc826ac45320a2c9ae12 (diff) | |
download | gcc-2668caae1916b02d08a33cc66b035200bfeb1bbe.tar.gz |
* config.guess: Recognize i[3456]-i586-UnixWare7-sysv5.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17322 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/config.guess b/config.guess index 06decad3865..687adc2e893 100755 --- a/config.guess +++ b/config.guess @@ -1,6 +1,6 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright (C) 1992, 93, 94, 95, 96, 1997 Free Software Foundation, Inc. +# Copyright (C) 1992, 93-97, 1998 Free Software Foundation, Inc. # # 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 @@ -667,6 +667,13 @@ EOF echo ${UNAME_MACHINE}-pc-sysv${UNAME_RELEASE} fi exit 0 ;; + i?86:*:5:7) + UNAME_REL=`(/bin/uname -X|egrep Release|sed -e 's/.*= //')` + (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486 + (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \ + && UNAME_MACHINE=i586 + echo ${UNAME_MACHINE}-${UNAME_SYSTEM}${UNAME_VERSION}-sysv${UNAME_RELEASE} + exit 0 ;; i?86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name` |