diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-06-17 17:30:30 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-06-17 17:30:30 +0000 |
commit | e5fe55f7e7a0df003080893c5d22c6cf438f05f5 (patch) | |
tree | bec4199d70c2bd2078eb86500d07185855bb8deb /gdb | |
parent | c9b549b25c3f8456f21f5365d41d0a95465cd0cb (diff) | |
download | gdb-e5fe55f7e7a0df003080893c5d22c6cf438f05f5.zip gdb-e5fe55f7e7a0df003080893c5d22c6cf438f05f5.tar.gz gdb-e5fe55f7e7a0df003080893c5d22c6cf438f05f5.tar.bz2 |
2004-06-17 Andrew Cagney <cagney@gnu.org>
GDB 6.1.1 released from the GDB 6.1 branch.
* NEWS: Merge in 6.1.1 NEWS from 6.1 branch.
* PROBLEMS: Ditto.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/NEWS | 67 | ||||
-rw-r--r-- | gdb/PROBLEMS | 2 |
3 files changed, 63 insertions, 12 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 47f5e93..8c79160 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2004-06-17 Andrew Cagney <cagney@gnu.org> + + GDB 6.1.1 released from the GDB 6.1 branch. + * NEWS: Merge in 6.1.1 NEWS from 6.1 branch. + * PROBLEMS: Ditto. + 2004-06-16 Daniel Jacobowitz <dan@debian.org> PR gdb/1658 @@ -20,17 +20,6 @@ kernel. * Cygwin support for DWARF 2 added. -* Fixed build problem on IRIX 5 - -Due to header problems with <sys/proc.h>, the file gdb/proc-api.c -wasn't able to compile compile on an IRIX 5 system. - -* Added execute permission to gdb/gdbserver/configure - -The shell script gdb/testsuite/gdb.stabs/configure lacked execute -permission. This bug would cause configure to fail on a number of -systems (Solaris, IRIX). Ref: server/519. - * New native configurations OpenBSD/m68k m68*-*-openbsd* @@ -53,6 +42,62 @@ riscos mips-*-riscos* mips-*-sysv* sonymips mips-sony-* sysv mips*-*-sysv4* (IRIX 5/6 not included) +*** Changes in GDB 6.1.1: + +* TUI (Text-mode User Interface) built-in (also included in GDB 6.1) + +The TUI (Text-mode User Interface) is now built as part of a default +GDB configuration. It is enabled by either selecting the TUI with the +command line option "-i=tui" or by running the separate "gdbtui" +program. For more information on the TUI, see the manual "Debugging +with GDB". + +* Pending breakpoint support (also included in GDB 6.1) + +Support has been added to allow you to specify breakpoints in shared +libraries that have not yet been loaded. If a breakpoint location +cannot be found, and the "breakpoint pending" option is set to auto, +GDB queries you if you wish to make the breakpoint pending on a future +shared-library load. If and when GDB resolves the breakpoint symbol, +the pending breakpoint is removed as one or more regular breakpoints +are created. + +Pending breakpoints are very useful for GCJ Java debugging. + +* Fixed ISO-C build problems + +The files bfd/elf-bfd.h, gdb/dictionary.c and gdb/types.c contained +non ISO-C code that stopped them being built using a more strict ISO-C +compiler (e.g., IBM's C compiler). + +* Fixed build problem on IRIX 5 + +Due to header problems with <sys/proc.h>, the file gdb/proc-api.c +wasn't able to compile compile on an IRIX 5 system. + +* Added execute permission to gdb/gdbserver/configure + +The shell script gdb/testsuite/gdb.stabs/configure lacked execute +permission. This bug would cause configure to fail on a number of +systems (Solaris, IRIX). Ref: server/519. + +* Fixed build problem on hpux2.0w-hp-hpux11.00 using the HP ANSI C compiler + +Older HPUX ANSI C compilers did not accept variable array sizes. somsolib.c +has been updated to use constant array sizes. + +* Fixed a panic in the DWARF Call Frame Info code on Solaris 2.7 + +GCC 3.3.2, on Solaris 2.7, includes the DW_EH_PE_funcrel encoding in +its generated DWARF Call Frame Info. This encoding was causing GDB to +panic, that panic has been fixed. Ref: gdb/1628. + +* Fixed a problem when examining parameters in shared library code. + +When examining parameters in optimized shared library code generated +by a mainline GCC, GDB would incorrectly report ``Variable "..." is +not available''. GDB now correctly displays the variable's value. + *** Changes in GDB 6.1: * Removed --with-mmalloc diff --git a/gdb/PROBLEMS b/gdb/PROBLEMS index 2f53313..b39e94a 100644 --- a/gdb/PROBLEMS +++ b/gdb/PROBLEMS @@ -1,5 +1,5 @@ - Known problems in GDB 6.1 + Known problems in GDB 6.1.1 See also: http://www.gnu.org/software/gdb/bugs/ |