diff options
author | Nick Clifton <nickc@redhat.com> | 2023-11-13 16:24:19 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2023-11-13 16:24:19 +0000 |
commit | b0dfd7427be1c022581ea4ff33713e9922294c34 (patch) | |
tree | 77b0a942e3924a064415c628bb2cb45caa519165 | |
parent | 88bbac7c76e89cd3de75a25e46a69a4e7b608bff (diff) | |
download | gdb-b0dfd7427be1c022581ea4ff33713e9922294c34.zip gdb-b0dfd7427be1c022581ea4ff33713e9922294c34.tar.gz gdb-b0dfd7427be1c022581ea4ff33713e9922294c34.tar.bz2 |
GNU-ld: ARM: Issues when trying to set target output architecture
PR 28910
* lexsup.c (ld_options): Ensure that the --format option is correctly recognised.
-rw-r--r-- | ld/ChangeLog | 6 | ||||
-rw-r--r-- | ld/lexsup.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 316ef47..b9d6c31 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2023-11-13 Nick Clifton <nickc@redhat.com> + + PR 28910 + * lexsup.c (ld_options): Ensure that the --format option is + correctly recognised. + 2023-11-13 Chung-Ju Wu <jasonwucj@gmail.com> * ld.texi: Fix redundant space typo. diff --git a/ld/lexsup.c b/ld/lexsup.c index aa4c76e..ce0d733 100644 --- a/ld/lexsup.c +++ b/ld/lexsup.c @@ -108,7 +108,7 @@ static const struct ld_option ld_options[] = 'A', N_("ARCH"), N_("Set architecture") , EXACTLY_TWO_DASHES }, { {"format", required_argument, NULL, 'b'}, 'b', N_("TARGET"), N_("Specify target for following input files"), - TWO_DASHES }, + EXACTLY_TWO_DASHES }, { {"mri-script", required_argument, NULL, 'c'}, 'c', N_("FILE"), N_("Read MRI format linker script"), TWO_DASHES }, { {"dc", no_argument, NULL, 'd'}, |