aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>1997-04-30 19:22:11 +0000
committerJason Merrill <jason@redhat.com>1997-04-30 19:22:11 +0000
commit070573509fc9cd4a23e72675df94e6dea592853f (patch)
tree3c8c4a74a517934fff834490c27db3bfd8ca7813 /configure.in
parent717dbb296e3054cc456021e510a548d38a248425 (diff)
downloadgdb-070573509fc9cd4a23e72675df94e6dea592853f.zip
gdb-070573509fc9cd4a23e72675df94e6dea592853f.tar.gz
gdb-070573509fc9cd4a23e72675df94e6dea592853f.tar.bz2
* configure.in: Turn on multilib by default.
(cross_only): Remove target-libiberty. * Makefile.in (all-gcc): Don't depend on libiberty.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in9
1 files changed, 7 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 64f4cd7..be1db62 100644
--- a/configure.in
+++ b/configure.in
@@ -84,7 +84,7 @@ native_only="autoconf cvs emacs emacs19 fileutils find gawk grep gzip hello inde
# directories to be built in a cross environment only
#
-cross_only="target-libiberty target-libgloss target-newlib"
+cross_only="target-libgloss target-newlib"
## All tools belong in one of the four categories, and are assigned above
## We assign ${configdirs} this way to remove all embedded newlines. This
@@ -537,7 +537,7 @@ case "${target}" in
noconfigdirs="$noconfigdirs ld gprof emacs target-libgloss"
;;
mips*-*-irix6*)
- # The GNU linker does not support shared libraries.
+ # The GNU assembler and linker do not support IRIX 6.
# emacs is emacs 18, which does not work on Irix 5 (emacs19 does work)
noconfigdirs="$noconfigdirs ld gas gprof emacs target-libgloss"
;;
@@ -846,6 +846,11 @@ if [ x${is_cross_compiler} = xyes ]; then
targargs="--with-cross-host=${host_alias} ${targargs}"
fi
+# Default to --enable-multilib.
+if [ x${enable_multilib} = x ]; then
+ targargs="--enable-multilib ${targargs}"
+fi
+
targargs="--host=${target_alias} ${targargs}"
sed -e "s:^TARGET_CONFIGDIRS[ ]*=.*$:TARGET_CONFIGDIRS = ${target_configdirs}:" \
-e "s%^CONFIG_ARGUMENTS[ ]*=.*$%CONFIG_ARGUMENTS = ${targargs}%" \