diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-04-08 17:05:54 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-04-08 17:08:45 -0700 |
commit | 82d8e420ab39cf227aa8e0869a54fb0a29b0a00d (patch) | |
tree | 70c405bc0bec4d338e6dc18c4e0d5edbbde848c5 /ld/configure.ac | |
parent | 11161a6e382f7585ed2971b3c8d5af1d5fa34b8c (diff) | |
download | gdb-82d8e420ab39cf227aa8e0869a54fb0a29b0a00d.zip gdb-82d8e420ab39cf227aa8e0869a54fb0a29b0a00d.tar.gz gdb-82d8e420ab39cf227aa8e0869a54fb0a29b0a00d.tar.bz2 |
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.
Diffstat (limited to 'ld/configure.ac')
-rw-r--r-- | ld/configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
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` |