diff options
author | Pedro Alves <palves@redhat.com> | 2013-04-02 17:52:08 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2013-04-02 17:52:08 +0000 |
commit | be9a8770181c7323f54c41cc576760bc8b55bf88 (patch) | |
tree | 28bda63aba330f0179ab8cbc271f0ca2ac035dc7 /gdb/doc | |
parent | a46c1e422db177a25e87346dccec01a956f3d93d (diff) | |
download | gdb-be9a8770181c7323f54c41cc576760bc8b55bf88.zip gdb-be9a8770181c7323f54c41cc576760bc8b55bf88.tar.gz gdb-be9a8770181c7323f54c41cc576760bc8b55bf88.tar.bz2 |
NEWS/manual: Missing documentation for new commands in 7.6.
I hacked "apropos" to dump the whole set of commands (just make it
accept the entry string as regex), and then diffed the output of 7.5
vs 7.6, --enable-targets=all builds. That allowed then checking
whether some commands had not been mentioned in NEWS or the manual.
These are what I found missing. We've been a bit negligent in
requiring documentation bits for debug commands.
gdb/
2013-04-02 Pedro Alves <palves@redhat.com>
* NEWS: Mention "set/show debug aarch64", "set/show debug
coff-pe-read" and "set/show debug mach-o".
gdb/doc/
2013-04-02 Pedro Alves <palves@redhat.com>
* gdb.texinfo (Debugging Output): Document "set/show debug
aarch64", "set/show debug coff-pe-read" and "set/show debug
mach-o".
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 23 |
2 files changed, 28 insertions, 1 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 41d4db3..34e1f61 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,5 +1,11 @@ 2013-04-02 Pedro Alves <palves@redhat.com> + * gdb.texinfo (Debugging Output): Document "set/show debug + aarch64", "set/show debug coff-pe-read" and "set/show debug + mach-o". + +2013-04-02 Pedro Alves <palves@redhat.com> + * gdb.texinfo (Remote Configuration) <set remote @var{name}-packet table>: Add entry for "trace-buffer-size". diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 601e2b3..8ae7259 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -22023,11 +22023,18 @@ asynchronous command finishes its execution. The default is off. Displays the current setting of asynchronous command completion notification. @kindex set debug +@cindex ARM AArch64 +@item set debug aarch64 +Turns on or off display of debugging messages related to ARM AArch64. +The default is off. +@kindex show debug +@item show debug aarch64 +Displays the current state of displaying debugging messages related to +ARM AArch64. @cindex gdbarch debugging info @cindex architecture debugging info @item set debug arch Turns on or off display of gdbarch debugging info. The default is off -@kindex show debug @item show debug arch Displays the current state of displaying gdbarch debugging info. @item set debug aix-thread @@ -22046,6 +22053,13 @@ When enabled, this setting causes @value{GDBN} to compute the names both ways and display any discrepancies. @item show debug check-physname Show the current state of ``physname'' checking. +@item set debug coff-pe-read +@cindex COFF/PE exported symbols +Control display of debugging messages related to reading of COFF/PE +exported symbols. The default is off. +@item show debug coff-pe-read +Displays the current state of displaying debugging messages related to +reading of COFF/PE exported symbols. @item set debug dwarf2-die @cindex DWARF2 DIEs Dump DWARF2 DIEs after they are read in. @@ -22110,6 +22124,13 @@ Displays the current state of @value{GDBN} JIT debugging. Turns on or off debugging messages from the Linux LWP debug support. @item show debug lin-lwp Show the current state of Linux LWP debugging messages. +@item set debug mach-o +@cindex Mach-O symbols processing +Control display of debugging messages related to Mach-O symbols +processing. The default is off. +@item show debug mach-o +Displays the current state of displaying debugging messages related to +reading of COFF/PE exported symbols. @item set debug notification @cindex remote async notification debugging info Turns on or off debugging messages about remote async notification. |