diff options
author | Torbjorn Granlund <tege@gnu.org> | 1996-07-14 18:09:15 +0000 |
---|---|---|
committer | Torbjorn Granlund <tege@gnu.org> | 1996-07-14 18:09:15 +0000 |
commit | f3297853daee54b8d20afc0c506b09a8ad0be666 (patch) | |
tree | 0be0ef98267cca7d7e3739286f32f31b279a6893 /gcc/config.guess | |
parent | 1075dedade51b855861c8b8605a1004b2183b84d (diff) | |
download | gcc-f3297853daee54b8d20afc0c506b09a8ad0be666.zip gcc-f3297853daee54b8d20afc0c506b09a8ad0be666.tar.gz gcc-f3297853daee54b8d20afc0c506b09a8ad0be666.tar.bz2 |
Generalize C90 alternative to all x90 machines.
From-SVN: r12443
Diffstat (limited to 'gcc/config.guess')
-rwxr-xr-x | gcc/config.guess | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/config.guess b/gcc/config.guess index f89f911..7adf7df 100755 --- a/gcc/config.guess +++ b/gcc/config.guess @@ -320,8 +320,9 @@ EOF CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} exit 0 ;; - CRAY*C90:*:*:*) - echo c90-cray-unicos${UNAME_RELEASE} + CRAY*[A-Z]90:*:*:*) + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' | tr A-Z a-z exit 0 ;; CRAY-2:*:*:*) echo cray2-cray-unicos |