home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: gnu.gdb.bug
- Path: sparky!uunet!cis.ohio-state.edu!martigny.ai.mit.edu!cph
- From: cph@martigny.ai.mit.edu (Chris Hanson)
- Subject: GDB 4.6 for hppa
- Message-ID: <9207242049.AA00217@life.ai.mit.edu>
- Sender: gnulists@ai.mit.edu
- Organization: GNUs Not Usenet
- Distribution: gnu
- Date: Fri, 24 Jul 1992 12:52:09 GMT
- Approved: bug-gdb@prep.ai.mit.edu
- Lines: 138
-
- I'm trying to bring up GDB 4.6 on an HP 9000 model 710 running HP-UX
- 8.05. So far, I've had to make several changes; patches are attached.
-
- After these changes I have run up against a problem that I can't
- solve: "gdb/tm-hppahpux.h" includes a file "tm-hppa.h", which doesn't
- seem to exist.
-
- Please send me a copy of this file so I can continue.
-
-
- *** ./gdb/configure.in.~1~ Wed Jul 8 04:01:38 1992
- --- ./gdb/configure.in Fri Jul 24 16:21:12 1992
- ***************
- *** 156,162 ****
- gdb_host=${host_cpu}
- ;;
-
- ! hppa)
- case "${host_vendor}" in
- hp)
- case "${host_os}" in
- --- 156,162 ----
- gdb_host=${host_cpu}
- ;;
-
- ! hppa*)
- case "${host_vendor}" in
- hp)
- case "${host_os}" in
- ***************
- *** 340,346 ****
- gdb_target=rs6000
- ;;
-
- ! hppa)
- case "${target_vendor}" in
- hp)
- case "${target_os}" in
- --- 340,346 ----
- gdb_target=rs6000
- ;;
-
- ! hppa*)
- case "${target_vendor}" in
- hp)
- case "${target_os}" in
-
- *** ./bfd/configure.in.~1~ Wed Jul 8 04:01:12 1992
- --- ./bfd/configure.in Fri Jul 24 16:05:32 1992
- ***************
- *** 115,121 ****
- *) my_host=vaxbsd ;;
- esac
- ;;
- ! hppa)
- case "${host_vendor}" in
- hp)
- case "${host_os}" in
- --- 115,121 ----
- *) my_host=vaxbsd ;;
- esac
- ;;
- ! hppa*)
- case "${host_vendor}" in
- hp)
- case "${host_os}" in
- ***************
- *** 196,203 ****
- vax-*-* ) bfd_target=vax ;;
- tahoe-*-* ) bfd_target=tahoe ;;
-
- ! hppa-hp-hpux ) bfd_target=hppahpux ;;
- ! hppa-hp-bsd ) bfd_target=hppabsd ;;
-
- *-*-aout ) bfd_target=${target_cpu}-aout ;;
- *-*-bsd ) bfd_target=${target_cpu}-aout ;;
- --- 196,203 ----
- vax-*-* ) bfd_target=vax ;;
- tahoe-*-* ) bfd_target=tahoe ;;
-
- ! hppa*-hp-hpux ) bfd_target=hppahpux ;;
- ! hppa*-hp-bsd ) bfd_target=hppabsd ;;
-
- *-*-aout ) bfd_target=${target_cpu}-aout ;;
- *-*-bsd ) bfd_target=${target_cpu}-aout ;;
-
- *** ./include/bfd.h.~1~ Mon Jul 6 13:11:47 1992
- --- ./include/bfd.h Fri Jul 24 16:14:10 1992
- ***************
- *** 1154,1159 ****
- --- 1154,1160 ----
- struct bout_data_struct *bout_data;
- struct sun_core_struct *sun_core_data;
- struct trad_core_struct *trad_core_data;
- + struct hppa_data_struct *hppa_data;
- PTR any;
- } tdata;
-
- *** ./readline/configure.in.~1~ Thu Jun 25 19:16:17 1992
- --- ./readline/configure.in Fri Jul 24 16:19:04 1992
- ***************
- *** 27,33 ****
- files=sysdep-sco.h
- ;;
-
- ! m88kbcs | sysv*)
- host_makefile_frag=config/mh-sysv
- case "${host_vendor}" in
- apollo)
- --- 27,33 ----
- files=sysdep-sco.h
- ;;
-
- ! m88kbcs | sysv* | hpux)
- host_makefile_frag=config/mh-sysv
- case "${host_vendor}" in
- apollo)
-
- *** ./glob/configure.in.~1~ Thu Jun 25 19:12:51 1992
- --- ./glob/configure.in Fri Jul 24 16:20:17 1992
- ***************
- *** 32,38 ****
- my_host=sysv4
- ;;
-
- ! sysv*)
- case "${host_vendor}" in
- sco*) files=sysdep-sco.h;;
- apollo*) files=sysdep-a68v.h
- --- 32,38 ----
- my_host=sysv4
- ;;
-
- ! sysv* | hpux)
- case "${host_vendor}" in
- sco*) files=sysdep-sco.h;;
- apollo*) files=sysdep-a68v.h
-
-