diff options
author | Donn Terry <donn@interix.com> | 1999-04-13 21:55:39 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-04-13 15:55:39 -0600 |
commit | 3516940d2aa13d6aef2aa693cb4f1d39bc5e42c3 (patch) | |
tree | 11e85a2a19b40ba8811716cabb86e60be7780aa4 | |
parent | 5e37fb50c4f772d9b185b9b7f6dc143f2a6f149c (diff) | |
download | gcc-3516940d2aa13d6aef2aa693cb4f1d39bc5e42c3.zip gcc-3516940d2aa13d6aef2aa693cb4f1d39bc5e42c3.tar.gz gcc-3516940d2aa13d6aef2aa693cb4f1d39bc5e42c3.tar.bz2 |
config.guess (interix Alpha): Add.
* config.guess (interix Alpha): Add.
Co-Authored-By: Martin Heller <Ing.-Buero_Heller@t-online.de>
From-SVN: r26423
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | config.guess | 6 |
2 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Tue Apr 13 22:50:54 1999 Donn Terry (donn@interix.com) + Martin Heller (Ing.-Buero_Heller@t-online.de) + + * config.guess (interix Alpha): Add. + Sun Apr 11 23:55:34 1999 Alexandre Oliva <oliva@dcc.unicamp.br> * config-ml.in: On mips*-*-*, if multidirs contains mabi=64, try to diff --git a/config.guess b/config.guess index f3fce22..a91e750 100755 --- a/config.guess +++ b/config.guess @@ -100,6 +100,12 @@ EOF rm -f dummy.s dummy echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` exit 0 ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than generic posix subsystem? + # Should we change UNAME_MACHINE based on the output of uname + # instead of the specific alpha model. + echo alpha-pc-interix + exit 0;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit 0 ;; |