mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
Enable ELF ld_list_options for --enable-targets=all
When --enable-targets=all is used with non-ELF target, we should enable ELF ld_list_options. * configure.ac (elf_list_options): Set to TRUE for --enable-targets=all. (elf_shlib_list_options): Likewise. (elf_plt_unwind_list_options): Likewise. * configure: Regenerated.
This commit is contained in:
@ -1,3 +1,11 @@
|
|||||||
|
2015-04-08 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* configure.ac (elf_list_options): Set to TRUE for
|
||||||
|
--enable-targets=all.
|
||||||
|
(elf_shlib_list_options): Likewise.
|
||||||
|
(elf_plt_unwind_list_options): Likewise.
|
||||||
|
* configure: Regenerated.
|
||||||
|
|
||||||
2015-04-08 H.J. Lu <hongjiu.lu@intel.com>
|
2015-04-08 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* emulparams/elf32bmipn32-defs.sh: Skip empty EMULATION_NAME.
|
* emulparams/elf32bmipn32-defs.sh: Skip empty EMULATION_NAME.
|
||||||
|
3
ld/configure
vendored
3
ld/configure
vendored
@ -17035,6 +17035,9 @@ for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
|
|||||||
do
|
do
|
||||||
if test "$targ_alias" = "all"; then
|
if test "$targ_alias" = "all"; then
|
||||||
all_targets=true
|
all_targets=true
|
||||||
|
elf_list_options=TRUE
|
||||||
|
elf_shlib_list_options=TRUE
|
||||||
|
elf_plt_unwind_list_options=TRUE
|
||||||
else
|
else
|
||||||
# Canonicalize the secondary target names.
|
# Canonicalize the secondary target names.
|
||||||
result=`$ac_config_sub $targ_alias 2>/dev/null`
|
result=`$ac_config_sub $targ_alias 2>/dev/null`
|
||||||
|
@ -288,6 +288,9 @@ for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
|
|||||||
do
|
do
|
||||||
if test "$targ_alias" = "all"; then
|
if test "$targ_alias" = "all"; then
|
||||||
all_targets=true
|
all_targets=true
|
||||||
|
elf_list_options=TRUE
|
||||||
|
elf_shlib_list_options=TRUE
|
||||||
|
elf_plt_unwind_list_options=TRUE
|
||||||
else
|
else
|
||||||
# Canonicalize the secondary target names.
|
# Canonicalize the secondary target names.
|
||||||
result=`$ac_config_sub $targ_alias 2>/dev/null`
|
result=`$ac_config_sub $targ_alias 2>/dev/null`
|
||||||
|
Reference in New Issue
Block a user