diff options
author | robertl <robertl@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-18 09:30:03 +0000 |
---|---|---|
committer | robertl <robertl@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-06-18 09:30:03 +0000 |
commit | c8d7e71292984765269c62f0ff045a637e7d6fbd (patch) | |
tree | 865433f59c45c54f0ecf65752eee01e9acc1e24c | |
parent | 8f5f4368058c99a580200372cc35ab4a6d8e0801 (diff) | |
download | gcc-c8d7e71292984765269c62f0ff045a637e7d6fbd.tar.gz |
* config.guess: Detection of Pentium II for *-sco-3.2v5*.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20558 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | config.guess | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 9a5e5baf109..c28216cc80d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Jun 18 11:26:03 1998 Robert Lipe <robertl@dgii.com> + + * config.guess: Detection of Pentium II for *-sco-3.2v5*. + Sat May 23 23:44:13 1998 Alexandre Oliva <oliva@dcc.unicamp.br> * Makefile.in (boostrap2-lean, bootstrap3-lean, diff --git a/config.guess b/config.guess index 583439ef06b..865f663de50 100755 --- a/config.guess +++ b/config.guess @@ -695,6 +695,8 @@ EOF (/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 + (/bin/uname -X|egrep '^Machine.*PentII' >/dev/null) \ + && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 |