diff options
author | Doug Evans <dje@google.com> | 2013-09-25 23:17:12 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2013-09-25 23:17:12 +0000 |
commit | 8fb8eb5ca4ca4c7a1410659a289e1a91c380832d (patch) | |
tree | f77f83bfe6fe0710e823d1dde50d463a4a3e51e1 /gdb/doc | |
parent | c256e171654791e456088ccb4c83d183650d8940 (diff) | |
download | gdb-8fb8eb5ca4ca4c7a1410659a289e1a91c380832d.zip gdb-8fb8eb5ca4ca4c7a1410659a289e1a91c380832d.tar.gz gdb-8fb8eb5ca4ca4c7a1410659a289e1a91c380832d.tar.bz2 |
New option "set debug symfile on".
* NEWS: Mention "set debug symfile".
* Makefile.in (SFILES): Add symfile-debug.c.
(COMMON_OBS): Add symfile-debug.o.
* elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
objfile's symbol functions.
* objfiles.h (objfile_set_sym_fns): Declare.
* symfile-debug.c: New file.
* symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
objfile's symbol functions.
(reread_symbols): Ditto.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index f5e4a04..f5a80d3 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2013-09-25 Doug Evans <dje@google.com> + + * gdb.texinfo (Debugging Output): Document set/show debug symfile. + 2013-09-16 Stan Shebs <stan@codesourcery.com> Remove the internals manual gdbint.texinfo. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 60d2877..07d5068 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -22573,6 +22573,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 symfile +@cindex symbol file functions +Turns on or off display of debugging messages related to symbol file functions. +The default is off. @xref{Files}. +@item show debug symfile +Show the current state of symbol file debugging messages. @item set debug symtab-create @cindex symbol table creation Turns on or off display of debugging messages related to symbol table creation. |