mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
minidebuginfo: ppc64 sync testcase->doc
gdb/doc/ 2013-09-11 Jan Kratochvil <jan.kratochvil@redhat.com> Sync documentation with gdb.base/gnu-debugdata.exp. * gdb.texinfo (MiniDebugInfo): Add comment and "D" in the example.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2013-09-11 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||||
|
|
||||||
|
Sync documentation with gdb.base/gnu-debugdata.exp.
|
||||||
|
* gdb.texinfo (MiniDebugInfo): Add comment and "D" in the example.
|
||||||
|
|
||||||
2013-09-11 Jan Kratochvil <jan.kratochvil@redhat.com>
|
2013-09-11 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||||
|
|
||||||
* gdb.texinfo (MiniDebugInfo): Fix two trailing dots.
|
* gdb.texinfo (MiniDebugInfo): Fix two trailing dots.
|
||||||
|
@ -17330,8 +17330,10 @@ nm -D @var{binary} --format=posix --defined-only \
|
|||||||
| awk '@{ print $1 @}' | sort > dynsyms
|
| 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.
|
||||||
|
# (Note that we actually also accept "D" symbols, for the benefit
|
||||||
|
# of platforms like PowerPC64 that use function descriptors.)
|
||||||
nm @var{binary} --format=posix --defined-only \
|
nm @var{binary} --format=posix --defined-only \
|
||||||
| awk '@{ if ($2 == "T" || $2 == "t") print $1 @}' \
|
| awk '@{ if ($2 == "T" || $2 == "t" || $2 == "D") print $1 @}' \
|
||||||
| sort > funcsyms
|
| sort > funcsyms
|
||||||
|
|
||||||
# Keep all the function symbols not already in the dynamic symbol
|
# Keep all the function symbols not already in the dynamic symbol
|
||||||
|
Reference in New Issue
Block a user