diff options
author | Alan Modra <amodra@gmail.com> | 2021-05-29 22:45:28 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-05-29 22:47:44 +0930 |
commit | 63e47e10725f93a4c07ced83050b917bc9e6b205 (patch) | |
tree | c62c2ad7d4b4a7171a48c051756306bac0eac8fd /binutils | |
parent | 3067d0b1beebca59eb6148dc141436de3131a316 (diff) | |
download | gdb-63e47e10725f93a4c07ced83050b917bc9e6b205.zip gdb-63e47e10725f93a4c07ced83050b917bc9e6b205.tar.gz gdb-63e47e10725f93a4c07ced83050b917bc9e6b205.tar.bz2 |
Re: readelf and objdump help
Fix a last-minute change..
* objdump (usage): Add missing \n.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/objdump.c | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index cd7bd6e..9ff312c 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,5 +1,9 @@ 2021-05-29 Alan Modra <amodra@gmail.com> + * objdump (usage): Add missing \n. + +2021-05-29 Alan Modra <amodra@gmail.com> + * readelf.c (parse_args): Call dwarf_select_sections_all on --debug-dump without optarg. (usage): Associate -w and --debug-dump options closely. diff --git a/binutils/objdump.c b/binutils/objdump.c index 977f817..a7b8303 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -254,17 +254,17 @@ usage (FILE *stream, int status) separate debuginfo files\n")); #if DEFAULT_FOR_FOLLOW_LINKS fprintf (stream, _("\ - -WK,--dwarf=follow-links\ + -WK,--dwarf=follow-links\n\ Follow links to separate debug info files (default)\n")); fprintf (stream, _("\ - -WN,--dwarf=no-follow-links\ + -WN,--dwarf=no-follow-links\n\ Do not follow links to separate debug info files\n")); #else fprintf (stream, _("\ - -WK,--dwarf=follow-links\ + -WK,--dwarf=follow-links\n\ Follow links to separate debug info files\n")); fprintf (stream, _("\ - -WN,--dwarf=no-follow-links\ + -WN,--dwarf=no-follow-links\n\ Do not follow links to separate debug info files\n\ (default)\n")); #endif |