diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2020-06-24 06:39:03 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2020-06-24 06:39:03 -0700 |
commit | 4bf05d4a900ae2c6c59e173340cc087584e46c81 (patch) | |
tree | 41153f11e11aebb2beef4bc73d9abf264e6fe5d5 /ld/lexsup.c | |
parent | 2c8e370829c7e4ed73d64a9d7be4991521620b3a (diff) | |
download | gdb-4bf05d4a900ae2c6c59e173340cc087584e46c81.zip gdb-4bf05d4a900ae2c6c59e173340cc087584e46c81.tar.gz gdb-4bf05d4a900ae2c6c59e173340cc087584e46c81.tar.bz2 |
ld: Correct --dependency-file order
Change ld --help output to
-d, -dc, -dp Force common symbols to be defined
--dependency-file FILE Write dependency file
instead of
-d, -dc Force common symbols to be defined
--dependency-file FILE, -dp Write dependency file
PR ld/26165
* lexsup.c (ld_options): Correct --dependency-file order.
Diffstat (limited to 'ld/lexsup.c')
-rw-r--r-- | ld/lexsup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/lexsup.c b/ld/lexsup.c index d6e9367..58c6c07 100644 --- a/ld/lexsup.c +++ b/ld/lexsup.c @@ -111,10 +111,10 @@ static const struct ld_option ld_options[] = 'c', N_("FILE"), N_("Read MRI format linker script"), TWO_DASHES }, { {"dc", no_argument, NULL, 'd'}, 'd', NULL, N_("Force common symbols to be defined"), ONE_DASH }, - { {"dependency-file", required_argument, NULL, OPTION_DEPENDENCY_FILE}, - '\0', N_("FILE"), N_("Write dependency file"), TWO_DASHES }, { {"dp", no_argument, NULL, 'd'}, '\0', NULL, NULL, ONE_DASH }, + { {"dependency-file", required_argument, NULL, OPTION_DEPENDENCY_FILE}, + '\0', N_("FILE"), N_("Write dependency file"), TWO_DASHES }, { {"force-group-allocation", no_argument, NULL, OPTION_FORCE_GROUP_ALLOCATION}, '\0', NULL, N_("Force group members out of groups"), TWO_DASHES }, |