aboutsummaryrefslogtreecommitdiff
path: root/gdb/doc
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2013-09-11 08:28:04 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2013-09-11 08:28:04 +0000
commit5423b017be8ae3fb18960f490df7962702ecc8c4 (patch)
tree97538b8f1525d6b45f3b5c644b9f6e6e321f09ff /gdb/doc
parentf9a1695ef6e26fa3bf1736599c32dbd02f6a7bda (diff)
downloadfsf-binutils-gdb-5423b017be8ae3fb18960f490df7962702ecc8c4.zip
fsf-binutils-gdb-5423b017be8ae3fb18960f490df7962702ecc8c4.tar.gz
fsf-binutils-gdb-5423b017be8ae3fb18960f490df7962702ecc8c4.tar.bz2
minidebuginfo: Obvious changes
gdb/doc/ 2013-09-11 Jan Kratochvil <jan.kratochvil@redhat.com> * gdb.texinfo (MiniDebugInfo): Fix two trailing dots. gdb/testsuite/ 2013-09-11 Jan Kratochvil <jan.kratochvil@redhat.com> * gdb.base/gnu-debugdata.exp (strip): Add -R .comment. (addlink): Add comment.
Diffstat (limited to 'gdb/doc')
-rw-r--r--gdb/doc/ChangeLog4
-rw-r--r--gdb/doc/gdb.texinfo4
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