diff options
author | jkj <jkj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-22 20:41:02 +0000 |
---|---|---|
committer | jkj <jkj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-22 20:41:02 +0000 |
commit | 8afb273fe61a041ad04b58c489d2f01d9f7b31e1 (patch) | |
tree | 7022418bd0e3fa2895f38143f70c0ed691df8107 /config.sub | |
parent | 50516bc34e63978c5f92d31390aebefd79cbc4b5 (diff) | |
download | gcc-8afb273fe61a041ad04b58c489d2f01d9f7b31e1.tar.gz |
Sync config.{sub,guess} from upstream sources
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107372 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config.sub')
-rwxr-xr-x | config.sub | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/config.sub b/config.sub index 1c366dfde9a..a4aba165da3 100755 --- a/config.sub +++ b/config.sub @@ -3,7 +3,7 @@ # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. -timestamp='2005-07-08' +timestamp='2005-11-13' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -171,6 +171,10 @@ case $os in -hiux*) os=-hiuxwe2 ;; + -sco6) + os=-sco5v6 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` @@ -187,6 +191,10 @@ case $os in # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; + -sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` |