Skip to content

Commit

Permalink
* config.guess: Detect and handle MPE/IX.
Browse files Browse the repository at this point in the history
        * config.sub: Deal with MPE/IX.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22108 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
law committed Aug 30, 1998
1 parent 3667037 commit 5e6f60d
Show file tree
Hide file tree
Showing 3 changed files with 17 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 @@
Sun Aug 30 21:15:19 1998 Mark Klein (mklein@dis.com)

* config.guess: Detect and handle MPE/IX.
* config.sub: Deal with MPE/IX.

Sat Aug 29 14:32:55 1998 David Edelsohn <edelsohn@mhpcc.edu>

* configure.in: Use mh-aix43.
Expand Down
3 changes: 3 additions & 0 deletions config.guess
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,9 @@ EOF
hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
echo m68k-hp-bsd4.4
exit 0 ;;
*9??*:MPE/iX:*:*)
echo hppa1.0-hp-mpeix
exit 0 ;;
9000/[3478]??:HP-UX:*:*)
case "${UNAME_MACHINE}" in
9000/31? ) HP_ARCH=m68000 ;;
Expand Down
12 changes: 9 additions & 3 deletions config.sub
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,9 @@ case $basic_machine in
basic_machine=hppa1.1-hp
os=-proelf
;;
hp3k9[0-9][0-9] | hp9[0-9][0-9])
basic_machine=hppa1.0-hp
;;
hp9k2[0-9][0-9] | hp9k31[0-9])
basic_machine=m68000-hp
;;
Expand Down Expand Up @@ -909,7 +912,7 @@ case $os in
| -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
| -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
| -cygwin32* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
| -mingw32* | -linux-gnu* | -uxpv*)
| -mingw32* | -linux-gnu* | -uxpv* | -mpeix*)
# Remember, each alternative MUST END IN *, to match a version number.
;;
# CYGNUS LOCAL
Expand Down Expand Up @@ -1161,8 +1164,11 @@ case $basic_machine in
vendor=be
;;
-hpux*)
vendor=hp
;;
vendor=hp
;;
-mpeix*)
vendor=hp
;;
-hiux*)
vendor=hitachi
;;
Expand Down

0 comments on commit 5e6f60d

Please sign in to comment.