mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 23:39:35 +08:00
Add 'n' in order to prevent "-n" from being taken as an abbreviation for
"--no-pipeline-knowledge".
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2002-04-11 Nick Clifton <nickc@cambridge.redhat.com>
|
||||||
|
|
||||||
|
* emultempl/armelf.em (PARSE_AND_LIST_SHORTOPTS): Add 'n' in order
|
||||||
|
to prevent "-n" from being taken as an abbreviation for
|
||||||
|
"--no-pipeline-knowledge".
|
||||||
|
|
||||||
2002-04-08 Alan Modra <amodra@bigpond.net.au>
|
2002-04-08 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
* ldlang.c (lang_size_sections_1): Don't complain about
|
* ldlang.c (lang_size_sections_1): Don't complain about
|
||||||
|
@ -156,7 +156,12 @@ PARSE_AND_LIST_PROLOGUE='
|
|||||||
#define OPTION_THUMB_ENTRY 301
|
#define OPTION_THUMB_ENTRY 301
|
||||||
'
|
'
|
||||||
|
|
||||||
PARSE_AND_LIST_SHORTOPTS=p
|
# Note we add 'n' to the short option list in order to prevent
|
||||||
|
# getopt_long_only from thinking that -n is a unique abbreviation
|
||||||
|
# for --no-pipeline-knowledge. There is no case to handle 'n' here
|
||||||
|
# however, so instead it will be passed back to parse_args() in
|
||||||
|
# lexsup.c where it will be handled.
|
||||||
|
PARSE_AND_LIST_SHORTOPTS=pn
|
||||||
|
|
||||||
PARSE_AND_LIST_LONGOPTS='
|
PARSE_AND_LIST_LONGOPTS='
|
||||||
{ "no-pipeline-knowledge", no_argument, NULL, '\'p\''},
|
{ "no-pipeline-knowledge", no_argument, NULL, '\'p\''},
|
||||||
|
@ -104,11 +104,13 @@ foreach testitem $seltests {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# V850 targets need libgcc.a
|
# V850 targets need libgcc.a
|
||||||
|
# FIXME: This does not work with installed toolchains!
|
||||||
if [istarget v850*-*-elf] {
|
if [istarget v850*-*-elf] {
|
||||||
set objfile "$objfile -L ../gcc -lgcc"
|
set objfile "$objfile -L ../gcc -lgcc"
|
||||||
}
|
}
|
||||||
|
|
||||||
# ARM targets need libgcc.a in THUMB mode so that __call_via_r3 is provided
|
# ARM targets need libgcc.a in THUMB mode so that __call_via_r3 is provided
|
||||||
|
# FIXME: This does not work with installed toolchains!
|
||||||
if {[istarget arm-*-*] || [istarget xscale-*-*]} {
|
if {[istarget arm-*-*] || [istarget xscale-*-*]} {
|
||||||
set objfile "$objfile -L ../gcc -lgcc"
|
set objfile "$objfile -L ../gcc -lgcc"
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user