minidebuginfo: ppc64 sync testcase->doc
[deliverable/binutils-gdb.git] / gdb / doc / gdb.texinfo
index dfc9882f871d4a468364112f94eb7cdc73754bab..00f8e7774bc6a8ce4ae9677f644d00545c8180fe 100644 (file)
@@ -17330,8 +17330,10 @@ nm -D @var{binary} --format=posix --defined-only \
   | awk '@{ print $1 @}' | sort > dynsyms
 
 # 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 \
-  | awk '@{ if ($2 == "T" || $2 == "t") print $1 @}' \
+  | awk '@{ if ($2 == "T" || $2 == "t" || $2 == "D") print $1 @}' \
   | sort > funcsyms
 
 # Keep all the function symbols not already in the dynamic symbol
This page took 0.037166 seconds and 4 git commands to generate.