bug-libtool
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

PATCH: Fix mips*-*-linux*


From: H . J . Lu
Subject: PATCH: Fix mips*-*-linux*
Date: Sun, 21 Oct 2001 12:05:04 -0700
User-agent: Mutt/1.2.5i

It is very stupid for libtool.m4 to break other Linux platforms just
because Linux/ARM is different. Here is a patch for Linux/mips.
However, the correct fix should be

        case $host_cpu in
        arm*)
         # Handle ARM differently.
         ....
         ;;
        *)
          lt_cv_deplibs_check_method=pass_all ;;
        esac


H.J.
----
2001-10-21  H.J. Lu <address@hidden>

        * libtool.m4 (lt_cv_deplibs_check_method): Set to pass_all for
        mips*-*-linux*.

Index: libtool.m4
===================================================================
RCS file: /work/cvs/gnu/binutils/libtool.m4,v
retrieving revision 1.1.1.7
diff -u -p -r1.1.1.7 libtool.m4
--- libtool.m4  2001/05/21 17:33:45     1.1.1.7
+++ libtool.m4  2001/10/21 18:52:18
@@ -597,7 +597,7 @@ irix5* | irix6*)
 # This must be Linux ELF.
 linux-gnu*)
   case $host_cpu in
-  alpha* | hppa* | i*86 | powerpc* | sparc* | ia64* )
+  alpha* | hppa* | i*86 | mips* | powerpc* | sparc* | ia64* )
     lt_cv_deplibs_check_method=pass_all ;;
   *)
     # glibc up to 2.1.1 does not perform some relocations on ARM



reply via email to

[Prev in Thread] Current Thread [Next in Thread]