diff options
author | Nick Clifton <nickc@redhat.com> | 2020-11-20 13:04:56 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2020-11-20 13:04:56 +0000 |
commit | e6f6aa8d184c38230d9acd91a49aa0cbe3f37e42 (patch) | |
tree | e79643c26315046beb132228fdbb4d26b025e4fa /binutils/ChangeLog | |
parent | 8881640c8071b04fa2566f21eb2a47e691caf11c (diff) | |
download | gdb-e6f6aa8d184c38230d9acd91a49aa0cbe3f37e42.zip gdb-e6f6aa8d184c38230d9acd91a49aa0cbe3f37e42.tar.gz gdb-e6f6aa8d184c38230d9acd91a49aa0cbe3f37e42.tar.bz2 |
Add option to nm to change the characters displayed for ifunc symbols. Add a configure time option to change the default characters.
PR 22967
* nm.c (ifunc_type_chars): New variable.
(long_options): Add --ifunc-chars.
(print_symbol): Use ifunc_type_chars for ifunc symbols.
(main): Handle the new option.
* doc/binutils.texi: Document the new option.
* configure.ac: Add --enable-f-for-ifunc-symbols option which
changes the default symbol displayed by nm.
* NEWS: Mention the new feature.
* testsuite/binutils-all/nm.exp: Test the new feature.
* config.in: Regenerate.
* configure: Regenerate.
Diffstat (limited to 'binutils/ChangeLog')
-rw-r--r-- | binutils/ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index d6af8df..946ce6c 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,18 @@ +2020-11-20 Nick Clifton <nickc@redhat.com> + + PR 22967 + * nm.c (ifunc_type_chars): New variable. + (long_options): Add --ifunc-chars. + (print_symbol): Use ifunc_type_chars for ifunc symbols. + (main): Handle the new option. + * doc/binutils.texi: Document the new option. + * configure.ac: Add --enable-f-for-ifunc-symbols option which + changes the default symbol displayed by nm. + * NEWS: Mention the new feature. + * testsuite/binutils-all/nm.exp: Test the new feature. + * config.in: Regenerate. + * configure: Regenerate. + 2020-11-20 Linda Zhang <lindasc@qq.com> PR 20979 |