diff options
author | Nick Clifton <nickc@redhat.com> | 2020-08-12 13:31:59 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2020-08-12 13:31:59 +0100 |
commit | 79bc120c7be00596098c09cecd25383ae6ddce34 (patch) | |
tree | 52603d55375f972945e4e25f611f7bd89f637a1e /binutils/NEWS | |
parent | 79ddc88496c3c18eac94b7776dc75b05c33abf25 (diff) | |
download | gdb-79bc120c7be00596098c09cecd25383ae6ddce34.zip gdb-79bc120c7be00596098c09cecd25383ae6ddce34.tar.gz gdb-79bc120c7be00596098c09cecd25383ae6ddce34.tar.bz2 |
Add demangling support to readelf.
PR binutils/26331
* readelf.c (do_demangle): New option flag.
(print_symbol): If do_demangle is enabled, demangle the symbol.
(enum long_option_values): New enum to hold long option values.
(options): Add demangle, no-demangle, recursion-limit and
no-recursion-limit options. Alpha sort the table.
(usage): Describe the new options.
(parse_args): Handle the new options.
* NEWS: Mention the new feature.
* doc/binutils.texi: Document the new feature.
* testsuite/binutils-all/readelf.exp: Test the new feature.
* testsuite/binutils-all/mangled.s: New file - assembler source.
* testsuite/binutils-all/readelf.demangled: New file - expected
output from readelf.
Diffstat (limited to 'binutils/NEWS')
-rw-r--r-- | binutils/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/binutils/NEWS b/binutils/NEWS index e776f5a..c0dc73d 100644 --- a/binutils/NEWS +++ b/binutils/NEWS @@ -1,5 +1,9 @@ -*- text -*- +* Readelf now accepts the -C command line option to enable the demangling of + symbol names. In addition the --demangle=<style>, --no-demangle, + --recurse-limit and --no-recurse-limit options are also now availale. + Changes in 2.35: * Changed readelf's display of symbol names when wide mode is not enabled. |