2000-11-15 Ben Elliston <bje@redhat.com>

* config.guess: Differentiate Cray T3D and T3E. From Kevin Ryde
	<user42@zip.com.au>.
This commit is contained in:
Ben Elliston 2000-11-15 12:47:24 +00:00
parent 1b75bd8e35
commit c588656294
2 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-11-15 Ben Elliston <bje@redhat.com>
* config.guess: Differentiate Cray T3D and T3E. From Kevin Ryde
<user42@zip.com.au>.
2000-11-10 Ben Elliston <bje@redhat.com>
* config.sub: Map pentiumpro and pentiumii aliases onto i686-pc.

7
config.guess vendored
View File

@ -3,7 +3,7 @@
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
# Free Software Foundation, Inc.
version='2000-11-10'
version='2000-11-15'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@ -640,9 +640,12 @@ EOF
CRAY*TS:*:*:*)
echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
exit 0 ;;
CRAY*T3E:*:*:*)
CRAY*T3D:*:*:*)
echo alpha-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
exit 0 ;;
CRAY*T3E:*:*:*)
echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
exit 0 ;;
CRAY*SV1:*:*:*)
echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
exit 0 ;;