mirror of git://gcc.gnu.org/git/gcc.git
* config.guess: Match "Pent II" or "PentII" for OpenServer.
From-SVN: r22358
This commit is contained in:
parent
ad20647545
commit
22097bd1dd
|
|
@ -1,3 +1,7 @@
|
||||||
|
Wed Sep 9 15:44:52 1998 Robert Lipe <robertl@dgii.com>
|
||||||
|
|
||||||
|
* config.guess: Match "Pent II" or "PentII" for OpenServer.
|
||||||
|
|
||||||
Tue Sep 8 01:18:39 1998 Jeffrey A Law (law@cygnus.com)
|
Tue Sep 8 01:18:39 1998 Jeffrey A Law (law@cygnus.com)
|
||||||
|
|
||||||
* config.guess: Correctly identify Pentium II sco boxes.
|
* config.guess: Correctly identify Pentium II sco boxes.
|
||||||
|
|
|
||||||
|
|
@ -687,9 +687,8 @@ EOF
|
||||||
(/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486
|
(/bin/uname -X|egrep i80486 >/dev/null) && UNAME_MACHINE=i486
|
||||||
(/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \
|
(/bin/uname -X|egrep '^Machine.*Pentium' >/dev/null) \
|
||||||
&& UNAME_MACHINE=i586
|
&& UNAME_MACHINE=i586
|
||||||
(/bin/uname -X|egrep '^Machine.*PentII' >/dev/null) \
|
# 5.0.4c returns "Pent II". 5.0.5 returns PentII
|
||||||
&& UNAME_MACHINE=i686
|
(/bin/uname -X|egrep '^Machine.*Pent *II' >/dev/null) \
|
||||||
(/bin/uname -X|egrep '^Machine.*Pent II' >/dev/null) \
|
|
||||||
&& UNAME_MACHINE=i686
|
&& UNAME_MACHINE=i686
|
||||||
(/bin/uname -X|egrep '^Machine.*Pentium Pro' >/dev/null) \
|
(/bin/uname -X|egrep '^Machine.*Pentium Pro' >/dev/null) \
|
||||||
&& UNAME_MACHINE=i686
|
&& UNAME_MACHINE=i686
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue