diff options
-rw-r--r-- | ld/ChangeLog | 8 | ||||
-rwxr-xr-x | ld/configure | 3 | ||||
-rw-r--r-- | ld/configure.ac | 3 |
3 files changed, 14 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index b83c11e..9807eab 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,5 +1,13 @@ 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> + * emulparams/elf32bmipn32-defs.sh: Skip empty EMULATION_NAME. 2015-04-08 H.J. Lu <hongjiu.lu@intel.com> diff --git a/ld/configure b/ld/configure index 44bce0e..b528f74 100755 --- a/ld/configure +++ b/ld/configure @@ -17035,6 +17035,9 @@ for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'` do if test "$targ_alias" = "all"; then all_targets=true + elf_list_options=TRUE + elf_shlib_list_options=TRUE + elf_plt_unwind_list_options=TRUE else # Canonicalize the secondary target names. result=`$ac_config_sub $targ_alias 2>/dev/null` diff --git a/ld/configure.ac b/ld/configure.ac index 572440c..ac3c14f 100644 --- a/ld/configure.ac +++ b/ld/configure.ac @@ -288,6 +288,9 @@ for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'` do if test "$targ_alias" = "all"; then all_targets=true + elf_list_options=TRUE + elf_shlib_list_options=TRUE + elf_plt_unwind_list_options=TRUE else # Canonicalize the secondary target names. result=`$ac_config_sub $targ_alias 2>/dev/null` |