mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-19 00:59:15 +08:00
* configure.in: Turn on multilib by default.
(cross_only): Remove target-libiberty. * Makefile.in (all-gcc): Don't depend on libiberty.
This commit is contained in:
13
ChangeLog
13
ChangeLog
@ -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>
|
Mon Apr 28 18:39:45 1997 Michael Snyder <msnyder@cleaver.cygnus.com>
|
||||||
|
|
||||||
* config.guess: improve algorithm for recognizing Gnu Hurd x86.
|
* config.guess: improve algorithm for recognizing Gnu Hurd x86.
|
||||||
|
@ -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
|
# 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
|
## All tools belong in one of the four categories, and are assigned above
|
||||||
## We assign ${configdirs} this way to remove all embedded newlines. This
|
## 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"
|
noconfigdirs="$noconfigdirs ld gprof emacs target-libgloss"
|
||||||
;;
|
;;
|
||||||
mips*-*-irix6*)
|
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)
|
# emacs is emacs 18, which does not work on Irix 5 (emacs19 does work)
|
||||||
noconfigdirs="$noconfigdirs ld gas gprof emacs target-libgloss"
|
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}"
|
targargs="--with-cross-host=${host_alias} ${targargs}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Default to --enable-multilib.
|
||||||
|
if [ x${enable_multilib} = x ]; then
|
||||||
|
targargs="--enable-multilib ${targargs}"
|
||||||
|
fi
|
||||||
|
|
||||||
targargs="--host=${target_alias} ${targargs}"
|
targargs="--host=${target_alias} ${targargs}"
|
||||||
sed -e "s:^TARGET_CONFIGDIRS[ ]*=.*$:TARGET_CONFIGDIRS = ${target_configdirs}:" \
|
sed -e "s:^TARGET_CONFIGDIRS[ ]*=.*$:TARGET_CONFIGDIRS = ${target_configdirs}:" \
|
||||||
-e "s%^CONFIG_ARGUMENTS[ ]*=.*$%CONFIG_ARGUMENTS = ${targargs}%" \
|
-e "s%^CONFIG_ARGUMENTS[ ]*=.*$%CONFIG_ARGUMENTS = ${targargs}%" \
|
||||||
|
Reference in New Issue
Block a user