diff options
author | tege <tege@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-07-14 18:09:15 +0000 |
---|---|---|
committer | tege <tege@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-07-14 18:09:15 +0000 |
commit | 5933bff187b48ed2693becb8d0f09ed97ab638a1 (patch) | |
tree | 0be0ef98267cca7d7e3739286f32f31b279a6893 /gcc | |
parent | 3730a2643033d4333c4acb997d76ae54f2326f3d (diff) | |
download | gcc-5933bff187b48ed2693becb8d0f09ed97ab638a1.tar.gz |
Generalize C90 alternative to all x90 machines.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12443 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-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 f89f911b709..7adf7df6640 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 |