Skip to content

Commit

Permalink
* config.guess: More accurate determination of HP processor types.
Browse files Browse the repository at this point in the history
        * 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
  • Loading branch information
law committed Jan 27, 1998
1 parent d8fe37e commit 580bb6d
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Tue Jan 27 23:15:55 1998 Lassi A. Tuura <lat@iki.fi>

* config.guess: More accurate determination of HP processor types.
* config.sub: More accurate determination of HP processor types.

Sat Jan 24 01:59:45 1998 Manfred Hollstein <manfred@s-direktnet.de>

* configure (package_makefile_frag): Move inserting the
Expand Down
9 changes: 7 additions & 2 deletions config.guess
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
17 changes: 16 additions & 1 deletion config.sub
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,22 @@ case $basic_machine in
hp9k3[2-9][0-9])
basic_machine=m68k-hp
;;
hp9k7[0-9][0-9] | hp7[0-9][0-9] | hp9k8[0-9]7 | hp8[0-9]7)
hp9k6[0-9][0-9] | hp6[0-9][0-9] )
basic_machine=hppa1.0-hp
;;
hp9k7[0-79][0-9] | hp7[0-79][0-9] )
basic_machine=hppa1.1-hp
;;
hp9k78[0-9] | hp78[0-9] )
# FIXME: really hppa2.0-hp
basic_machine=hppa1.1-hp
;;
hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | \
hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893 )
# FIXME: really hppa2.0-hp
basic_machine=hppa1.1-hp
;;
hp9k8[0-9][13679] | hp8[0-9][13679] )
basic_machine=hppa1.1-hp
;;
hp9k8[0-9][0-9] | hp8[0-9][0-9])
Expand Down

0 comments on commit 580bb6d

Please sign in to comment.