diff options
author | Joel Brobecker <brobecker@adacore.com> | 2011-01-13 16:24:08 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@adacore.com> | 2011-01-13 16:24:08 +0000 |
commit | e82bcd79cd7d90e2ef258ecb76bc37f60da70a8a (patch) | |
tree | c742c9dd7fa80456abf8c72705d01753728b071b | |
parent | 49d31b4e82969a5d16e29cb73c6ce25ba615d370 (diff) | |
download | cygnal-e82bcd79cd7d90e2ef258ecb76bc37f60da70a8a.tar.gz cygnal-e82bcd79cd7d90e2ef258ecb76bc37f60da70a8a.tar.bz2 cygnal-e82bcd79cd7d90e2ef258ecb76bc37f60da70a8a.zip |
port GDB to ia64-hpux (native).
ChangeLog:
* configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs
for ia64-hpux.
* configure: Regenerate.
gdb/ChangeLog:
* config/ia64/hpux.mh, ia64-hpux-nat.c, ia64-hpux-tdep.c,
ia64-hpux-tdep.h, solib-ia64-hpux.c, solib-ia64-hpux.h: New files.
* configure.host: Add handling for ia64-hpux hosts. Add associated
floatformats.
* configure.tgt: Add handling for ia64-hpux targets.
* Makefile.in (ALL_64_TARGET_OBS): Add ia64-hpux-tdep.o.
(HFILES_NO_SRCDIR): Add ia64-hpux-tdep.h.
(ALLDEPFILES): Add ia64-hpux-nat.c ia64-hpux-tdep.c.
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.ac | 4 |
3 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2011-01-13 Joel Brobecker <brobecker@adacore.com> + + * configure.ac: Remove readline, mmalloc, and gdb from noconfigdirs + for ia64-hpux. + * configure: Regenerate. + 2011-01-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> Sync from GCC: @@ -3353,8 +3353,8 @@ case "${target}" in noconfigdirs="$noconfigdirs readline mmalloc libgui itcl gdb" ;; ia64*-**-hpux*) - # No gdb or ld support yet. - noconfigdirs="$noconfigdirs ${libgcj} readline mmalloc libgui itcl gdb ld" + # No ld support yet. + noconfigdirs="$noconfigdirs ${libgcj} libgui itcl ld" ;; ia64*-*-*vms*) # No gdb or ld support yet. diff --git a/configure.ac b/configure.ac index 4807ffb9d..c7a86e2b6 100644 --- a/configure.ac +++ b/configure.ac @@ -804,8 +804,8 @@ case "${target}" in noconfigdirs="$noconfigdirs readline mmalloc libgui itcl gdb" ;; ia64*-**-hpux*) - # No gdb or ld support yet. - noconfigdirs="$noconfigdirs ${libgcj} readline mmalloc libgui itcl gdb ld" + # No ld support yet. + noconfigdirs="$noconfigdirs ${libgcj} libgui itcl ld" ;; ia64*-*-*vms*) # No gdb or ld support yet. |