diff options
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 67d3320..6bb1e7b 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2013-09-11 Jan Kratochvil <jan.kratochvil@redhat.com> + + * gdb.texinfo (MiniDebugInfo): Fix two trailing dots. + 2013-08-27 Pedro Alves <pedro@codesourcery.com> Yao Qi <yao@codesourcery.com> diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 21250fe..dfc9882 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -17325,11 +17325,11 @@ standard utilities: @smallexample # Extract the dynamic symbols from the main binary, there is no need -# to also have these in the normal symbol table +# to also have these in the normal symbol table. nm -D @var{binary} --format=posix --defined-only \ | awk '@{ print $1 @}' | sort > dynsyms -# Extract all the text (i.e. function) symbols from the debuginfo . +# Extract all the text (i.e. function) symbols from the debuginfo. nm @var{binary} --format=posix --defined-only \ | awk '@{ if ($2 == "T" || $2 == "t") print $1 @}' \ | sort > funcsyms |