diff options
author | Doug Evans <dje@google.com> | 2012-06-26 20:14:03 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2012-06-26 20:14:03 +0000 |
commit | 45cfd468960ba37fc9cf11fffc680fc7ac5d8ee8 (patch) | |
tree | 2c7da6994eecab930483601ce9fbb64d9415e5fb /gdb/doc | |
parent | 1c658ad5fac2a221b589cbe26ec84c788b24a8d1 (diff) | |
download | gdb-45cfd468960ba37fc9cf11fffc680fc7ac5d8ee8.zip gdb-45cfd468960ba37fc9cf11fffc680fc7ac5d8ee8.tar.gz gdb-45cfd468960ba37fc9cf11fffc680fc7ac5d8ee8.tar.bz2 |
* NEWS: Mention new options "set debug dwarf2-read" and
"set debug symtab-create".
* dwarf2read.c (dwarf2_read_debug): New static global.
(dwarf2_build_psymtabs_hard): Add debugging printfs.
(process_queue): Ditto.
(process_full_comp_unit): Ditto.
(_initialize_dwarf2_read): Add new option "set debug dwarf2-read".
* elfread.c (elf_symfile_read): Add debugging printf.
* minsyms.c (install_minimal_symbols): Ditto.
* psymtab.c (allocate_psymtab): Ditto.
* symfile.c (allocate_symtab): Ditto.
* symtab.c (symtab_create_debug): New global.
(_initialize_symtab): Add new option "set debug symtab-create".
* symtab.h (symtab_create_debug): Declare.
doc/
* gdb.texinfo (Debugging Output): Document debug options dwarf2-read
and symtab-create.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 12 |
2 files changed, 17 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 267a2df..b0efb1d 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2012-06-26 Doug Evans <dje@google.com> + + * gdb.texinfo (Debugging Output): Document debug options dwarf2-read + and symtab-create. + 2012-06-25 Keith Seitz <keiths@redhat.com> * gdb.texinfo (GDB/MI Breakpoint Commands): Remove "-r" option diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index d3f702a..3282b46 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -21741,6 +21741,12 @@ The value is the number of nesting levels to print. A value of zero turns off the display. @item show debug dwarf2-die Show the current state of DWARF2 DIE debugging. +@item set debug dwarf2-read +@cindex DWARF2 Reading +Turns on or off display of debugging messages related to reading +DWARF debug info. The default is off. +@item show debug dwarf2-read +Show the current state of DWARF2 reader debugging. @item set debug displaced @cindex displaced stepping debugging info Turns on or off display of @value{GDBN} debugging info for the @@ -21838,6 +21844,12 @@ Turns on or off debugging messages for FR-V shared-library code. @item show debug solib-frv Display the current state of FR-V shared-library code debugging messages. +@item set debug symtab-create +@cindex symbol table creation +Turns on or off display of debugging messages related to symbol table creation. +The default is off. +@item show debug symtab-create +Show the current state of symbol table creation debugging. @item set debug target @cindex target debugging info Turns on or off display of @value{GDBN} target debugging info. This info |