diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-27 22:15:40 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-27 22:15:40 +0000 |
commit | 580bb6d90510743a119e48ed4b532e3ffa99e0be (patch) | |
tree | f2b0ac37a16428c08e24b07c3670f28a4834535c /config.guess | |
parent | d8fe37e0b67c37f21382d606df15590e71d1d624 (diff) | |
download | gcc-580bb6d90510743a119e48ed4b532e3ffa99e0be.tar.gz |
* config.guess: More accurate determination of HP processor types.
* config.sub: More accurate determination of HP processor types.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17520 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/config.guess b/config.guess index 6fd3e68510b..e65adcc8178 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} |