]> gcc.gnu.org Git - gcc.git/commitdiff
Fix sunos4/rs6000/powerpc/etc build problems with multilibbed libraries.
authorJim Wilson <wilson@cygnus.com>
Mon, 1 Sep 1997 23:55:29 +0000 (23:55 +0000)
committerJim Wilson <wilson@gcc.gnu.org>
Mon, 1 Sep 1997 23:55:29 +0000 (16:55 -0700)
* configure.in (target_subdir): Set to libraries if enable_multilib.

From-SVN: r15025

ChangeLog
configure.in

index 341c887384a9c3e99abdc4157e6c936da42c58c4..beb9a01999c0c2cffcc8123323de26a47dfa3280 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Sep  1 16:45:44 1997  Jim Wilson  <wilson@cygnus.com>
+
+       * configure.in (target_subdir): Set to libraries if enable_multilib.
+
 Wed Aug 27 16:15:11 1997  Jim Wilson  <wilson@cygnus.com>
 
        * config.guess: Update from gcc directory.
index e251e85b42470423a346bb55df5c6d622550aff9..70d8a87ec5143b0a27749a5f4b13ff3fd95c3437 100644 (file)
@@ -244,12 +244,12 @@ if [ x"${host}" = x"${target}" ] ; then
        # that are in the 'cross only' list
        skipdirs="${skipdirs} ${cross_only}"
        is_cross_compiler=no
-       target_subdir=.
-       case "${host}" in
-          # We need multilib support for irix6, to get libiberty built
-         #  properly for o32 and n32.
-          mips-sgi-irix6*) target_subdir=${host} ;;
-       esac
+       # Default to --enable-multilib.  See similar code below.
+       if [ x${enable_multilib} = xno ]; then
+         target_subdir=.
+       else
+         target_subdir=libraries
+       fi
 else
        # similarly, don't build the targets in the 'native only' 
        # list when building a cross compiler
This page took 0.079266 seconds and 5 git commands to generate.