diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-06-15 16:13:59 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-06-15 16:13:59 +0000 |
commit | 9eb39bca511f11b6b21fb823cf9216d52cf3a8bc (patch) | |
tree | 8ded4a99d358c18b8fad23e904dc8bd89371c930 /binutils/binutils.texi | |
parent | 605da7e26f895461e45f3573406d984d5173f2f6 (diff) | |
download | gdb-9eb39bca511f11b6b21fb823cf9216d52cf3a8bc.zip gdb-9eb39bca511f11b6b21fb823cf9216d52cf3a8bc.tar.gz gdb-9eb39bca511f11b6b21fb823cf9216d52cf3a8bc.tar.bz2 |
* nm.c (long_options): Add --no-demangle to turn off --demangle,
and --no-cplus for Linux compatibility.
(usage): Mention --no-demangle.
* binutils.texi: Document --no-demangle.
Diffstat (limited to 'binutils/binutils.texi')
-rw-r--r-- | binutils/binutils.texi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/binutils/binutils.texi b/binutils/binutils.texi index 820890c..10f4665 100644 --- a/binutils/binutils.texi +++ b/binutils/binutils.texi @@ -572,7 +572,7 @@ nm [ -a | --debug-syms ] [ -g | --extern-only ] [ -r | --reverse-sort ] [ -u | --undefined-only ] [ -t @var{radix} | --radix=@var{radix} ] [ -P | --portability ] [ --target=@var{bfdname} ] [ -f @var{format} | --format=@var{format} ] - [ -V | --version ] [ --help ] [ @var{objfile}@dots{} ] + [ --no-demangle ] [ -V | --version ] [ --help ] [ @var{objfile}@dots{} ] @end smallexample GNU @code{nm} lists the symbols from object files @var{objfile}@dots{}. @@ -653,6 +653,9 @@ Besides removing any initial underscore prepended by the system, this makes C++ function names readable. @xref{c++filt}, for more information on demangling. +@item --no-demangle +Do not demangle low-level symbol names. This is the default. + @item -D @itemx --dynamic @cindex dynamic symbols |