diff options
author | Alan Modra <amodra@gmail.com> | 2020-06-24 14:17:38 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-06-24 20:00:08 +0930 |
commit | a5aae5087ca50f14e361cffe155ad3886afb56cb (patch) | |
tree | e960bf58c8d5fb96a37bf7e54d1482e8707ff1af /ld/emultempl | |
parent | f8b1e5f6fcdb27c7ea520643880a208578d42d0e (diff) | |
download | gdb-a5aae5087ca50f14e361cffe155ad3886afb56cb.zip gdb-a5aae5087ca50f14e361cffe155ad3886afb56cb.tar.gz gdb-a5aae5087ca50f14e361cffe155ad3886afb56cb.tar.bz2 |
ld --help output
It's best if help message output does not contain tabs, since we don't
know tab stop settings or even if tabs are handled by the output
device. This reverts some 2020-06-23 changes and fixes the csky help
message.
* lexsup.c (elf_shlib_list_options): Properly format help message.
(elf_plt_unwind_list_options): Likewise.
* emultempl/cskyelf.em (PARSE_AND_LIST_OPTIONS): Likewise.
Diffstat (limited to 'ld/emultempl')
-rw-r--r-- | ld/emultempl/cskyelf.em | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/ld/emultempl/cskyelf.em b/ld/emultempl/cskyelf.em index e84ddb6..f8f8066 100644 --- a/ld/emultempl/cskyelf.em +++ b/ld/emultempl/cskyelf.em @@ -300,12 +300,14 @@ PARSE_AND_LIST_LONGOPTS=' {"stub-group-size", required_argument, NULL, OPTION_STUBGROUP_SIZE}, ' PARSE_AND_LIST_OPTIONS=' - fprintf (file, _(" --[no-]branch-stub\n")); - fprintf (file, _("\t\t\tDisable/enable use of stubs to expand branch " - "instructions that cannot reach the target.\n")); - fprintf (file, _(" --stub-group-size=N\n")); - fprintf (file, _("\t\t\tMaximum size of a group of input sections " - "handled by one stub section.")); + fprintf (file, _(" --[no-]branch-stub " + "Disable/enable use of stubs to expand branch\n" + " " + " instructions that cannot reach the target.\n")); + fprintf (file, _(" --stub-group-size=N " + "Maximum size of a group of input sections\n" + " " + " handled by one stub section.\n")); ' PARSE_AND_LIST_ARGS_CASES=' |