diff options
author | Per Bothner <bothner@gcc.gnu.org> | 1995-05-11 17:19:09 -0700 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 1995-05-11 17:19:09 -0700 |
commit | b594fdb7dc1fd7c2eb4f88570e3222ba73f68d21 (patch) | |
tree | 08c92be121dcb5b5596d70a59699266abd008890 /gcc/config.guess | |
parent | 67b0763ea8f42e8e9e4e7bcc001229cf3e629a68 (diff) | |
download | gcc-b594fdb7dc1fd7c2eb4f88570e3222ba73f68d21.zip gcc-b594fdb7dc1fd7c2eb4f88570e3222ba73f68d21.tar.gz gcc-b594fdb7dc1fd7c2eb4f88570e3222ba73f68d21.tar.bz2 |
Recognize PCs running Solaris2. Also, some cleaning up for CRAYs.
From-SVN: r9629
Diffstat (limited to 'gcc/config.guess')
-rwxr-xr-x | gcc/config.guess | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config.guess b/gcc/config.guess index 60ef93a..969cec4 100755 --- a/gcc/config.guess +++ b/gcc/config.guess @@ -75,6 +75,9 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in sun4*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; + i86pc:SunOS:5.*:*) + echo i386-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit 0 ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but @@ -281,16 +284,13 @@ EOF C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit 0 ;; - CRAY*X-MP:UNICOS:*:*) + CRAY*X-MP:*:*:*) echo xmp-cray-unicos exit 0 ;; - CRAY*Y-MP:UNICOS:*:*) - echo ymp-cray-unicos - exit 0 ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} exit 0 ;; - CRAY-2:UNICOS:*:*) + CRAY-2:*:*:*) echo cray2-cray-unicos exit 0 ;; hp3[0-9][05]:NetBSD:*:*) |