diff options
-rw-r--r-- | ChangeLog | 13 | ||||
-rw-r--r-- | configure.in | 9 |
2 files changed, 20 insertions, 2 deletions
@@ -1,3 +1,16 @@ +Wed Apr 30 12:05:36 1997 Jason Merrill <jason@yorick.cygnus.com> + + * configure.in: Turn on multilib by default. + (cross_only): Remove target-libiberty. + + * Makefile.in (all-gcc): Don't depend on libiberty. + +start-sanitize-ide +Tue Apr 29 11:26:36 1997 Tom Tromey <tromey@cygnus.com> + + * configure.in (host_tools): Added vmake. + +end-sanitize-ide Mon Apr 28 18:39:45 1997 Michael Snyder <msnyder@cleaver.cygnus.com> * config.guess: improve algorithm for recognizing Gnu Hurd x86. 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}%" \ |