diff options
author | Per Bothner <bothner@gcc.gnu.org> | 1995-05-15 14:49:34 -0700 |
---|---|---|
committer | Per Bothner <bothner@gcc.gnu.org> | 1995-05-15 14:49:34 -0700 |
commit | 98c748b895b2565c23464856f613452ab4eea3ec (patch) | |
tree | dda219a741e6eb0e632a7ff76685c004bc8ff47d | |
parent | 1519594d5a1708eae355e0c774e3efafff1229e2 (diff) | |
download | gcc-98c748b895b2565c23464856f613452ab4eea3ec.zip gcc-98c748b895b2565c23464856f613452ab4eea3ec.tar.gz gcc-98c748b895b2565c23464856f613452ab4eea3ec.tar.bz2 |
* config.guess: Recognize Cray90 (from Pete TerMaat).
From-SVN: r9688
-rwxr-xr-x | gcc/config.guess | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/config.guess b/gcc/config.guess index 969cec4..41f828a 100755 --- a/gcc/config.guess +++ b/gcc/config.guess @@ -288,8 +288,11 @@ EOF echo xmp-cray-unicos exit 0 ;; CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos${UNAME_RELEASE} - exit 0 ;; + echo ymp-cray-unicos${UNAME_RELEASE} + exit 0 ;; + CRAY*C90:*:*:*) + echo c90-cray-unicos${UNAME_RELEASE} + exit 0 ;; CRAY-2:*:*:*) echo cray2-cray-unicos exit 0 ;; |