aboutsummaryrefslogtreecommitdiff
path: root/config.guess
diff options
context:
space:
mode:
authorLassi A. Tuura <lat@iki.fi>1998-01-28 00:15:40 +0200
committerJeff Law <law@gcc.gnu.org>1998-01-27 15:15:40 -0700
commit228197ee2322f885ea9c3b21f75e97e4c6420606 (patch)
treef2b0ac37a16428c08e24b07c3670f28a4834535c /config.guess
parent169809000c089d2c7f822f3225df6bf02aecb236 (diff)
downloadgcc-228197ee2322f885ea9c3b21f75e97e4c6420606.zip
gcc-228197ee2322f885ea9c3b21f75e97e4c6420606.tar.gz
gcc-228197ee2322f885ea9c3b21f75e97e4c6420606.tar.bz2
config.guess: More accurate determination of HP processor types.
* config.guess: More accurate determination of HP processor types. * config.sub: More accurate determination of HP processor types. From-SVN: r17520
Diffstat (limited to 'config.guess')
-rwxr-xr-xconfig.guess9
1 files changed, 7 insertions, 2 deletions
diff --git a/config.guess b/config.guess
index 6fd3e68..e65adcc 100755
--- a/config.guess
+++ b/config.guess
@@ -358,8 +358,13 @@ EOF
case "${UNAME_MACHINE}" in
9000/31? ) HP_ARCH=m68000 ;;
9000/[34]?? ) HP_ARCH=m68k ;;
- 9000/7?? | 9000/8?[13679] ) HP_ARCH=hppa1.1 ;;
- 9000/8?? ) HP_ARCH=hppa1.0 ;;
+ 9000/6?? ) HP_ARCH=hppa1.0 ;;
+ 9000/78? ) HP_ARCH=hppa1.1 ;; # FIXME: really hppa2.0
+ 9000/7?? ) HP_ARCH=hppa1.1 ;;
+ 9000/8[67]1 | 9000/80[24] | 9000/8[78]9 | 9000/893 )
+ HP_ARCH=hppa1.1 ;; # FIXME: really hppa2.0
+ 9000/8?[13679] ) HP_ARCH=hppa1.1 ;;
+ 9000/8?? ) HP_ARCH=hppa1.0 ;;
esac
HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
echo ${HP_ARCH}-hp-hpux${HPUX_REV}