diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-05-19 21:16:30 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-05-19 21:16:30 +0000 |
commit | f8cc598ecdf8160dc914d3093c4a7400f48ce532 (patch) | |
tree | 4978d9e48a536140aaf631d2e500cd7c5e3b4746 | |
parent | 2f1099839992840fbf5c913c7e56d98d750a3398 (diff) | |
download | gdb-f8cc598ecdf8160dc914d3093c4a7400f48ce532.zip gdb-f8cc598ecdf8160dc914d3093c4a7400f48ce532.tar.gz gdb-f8cc598ecdf8160dc914d3093c4a7400f48ce532.tar.bz2 |
* configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*.
Don't set use_gnu_ld to no for *-*-sysv4; that only controls
whether we pass down --with-gnu-ld anyhow.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.in | 12 |
2 files changed, 6 insertions, 12 deletions
@@ -1,3 +1,9 @@ +Thu May 19 17:12:12 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com) + + * configure.in: Use ld for i[34]86-*-sysv4* and sparc-*-solaris2*. + Don't set use_gnu_ld to no for *-*-sysv4; that only controls + whether we pass down --with-gnu-ld anyhow. + Thu May 19 09:29:12 1994 Steve Chamberlain (sac@cygnus.com) * Makefile.in (INSTALL_LAST): Change operation so it works diff --git a/configure.in b/configure.in index 452a175..1ed4555 100644 --- a/configure.in +++ b/configure.in @@ -241,11 +241,6 @@ case "${target}" in esac # but that's okay since emacs doesn't work anyway noconfigdirs="$noconfigdirs emacs" - - # static versions of several key libraries are not available, - # so building our entire toolchain is impossible until - # the GNU linker supports shared libraries - noconfigdirs="$noconfigdirs ld" ;; powerpc-*-aix*) # copied from rs6000-*-* entry @@ -297,10 +292,6 @@ case "${target}" in else use_gnu_ld=no fi - ;; - sparc-*-solaris2*) - # See i386-*-solaris2* above. - noconfigdirs="$noconfigdirs ld" ;; vax-*-vms) noconfigdirs="$noconfigdirs bfd binutils gdb ld newlib opcodes" @@ -308,9 +299,6 @@ case "${target}" in vax-*-*) noconfigdirs="$noconfigdirs newlib" ;; - *-*-sysv4) - use_gnu_ld=no - ;; *-*-lynxos*) # Newlib makes problems for libg++ in crosses. noconfigdirs="$noconfigdirs newlib" |