libtool-patches
[Top][All Lists]
Advanced

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

Re: libtool VPATH build


From: Peter O'Gorman
Subject: Re: libtool VPATH build
Date: Thu, 22 Jul 2004 22:03:06 +0900
User-agent: Mozilla Thunderbird 0.6 (Macintosh/20040502)

Bob Friesenhahn wrote:

On Thu, 22 Jul 2004, Peter O'Gorman wrote:

Bob Friesenhahn wrote:

This annoying situation is compounded by the fact that executing the 'bootstrap' script takes almost 9 minutes on a dual Pentium IV 2.4 GHz Xeon system. I would hate to think about how long it would take on a slower system.


Hehe, that makes me *so* jealous. It just took me 50 minutes to bootstrap.


I can compile all of GCC in 50 minutes.

Presumably the bootstrap is bootstrapping each and every test subdirectory.

I would really like for the VPATH build to work since distclean doesn't work and some systems will take much longer than 9 minutes to bootstrap.

Okay, I just applied this patch, should fix it for VPATH builds.

Peter
--
Peter O'Gorman - http://www.pogma.com
Index: ChangeLog
2004-07-22  Peter O'Gorman  <address@hidden>

        * libltdl/Makefile.am, libltdl/loaders/Makefile.am: Look for
        included files in the right places.

Index: libltdl/Makefile.am
===================================================================
RCS file: /cvsroot/libtool/libtool/libltdl/Makefile.am,v
retrieving revision 1.60
diff -u -3 -p -u -r1.60 Makefile.am
--- libltdl/Makefile.am 18 Jul 2004 14:13:04 -0000 1.60
+++ libltdl/Makefile.am 22 Jul 2004 13:00:19 -0000
@@ -27,7 +27,7 @@ AUTOMAKE_OPTIONS      = foreign
 ACLOCAL_AMFLAGS                = -I m4
 
 DEFS                   = -DHAVE_CONFIG_H="<$(CONFIG_H)>" -DLTDL
-AM_CPPFLAGS            = -I$(top_builddir)/.. -I$(top_srcdir)/..
+AM_CPPFLAGS            = -I$(top_builddir) -I$(top_srcdir)
 AM_LDFLAGS             = -no-undefined
 VERSION_INFO           = -version-info 6:0:0
 
Index: libltdl/loaders/Makefile.am
===================================================================
RCS file: /cvsroot/libtool/libtool/libltdl/loaders/Makefile.am,v
retrieving revision 1.2
diff -u -3 -p -u -r1.2 Makefile.am
--- libltdl/loaders/Makefile.am 18 Jul 2004 14:52:17 -0000 1.2
+++ libltdl/loaders/Makefile.am 22 Jul 2004 13:00:19 -0000
@@ -24,7 +24,7 @@ EXTRA_DIST            =
 AUTOMAKE_OPTIONS       = foreign
 
 DEFS                   = -DHAVE_CONFIG_H="<$(CONFIG_H)>" -DLTDL
-AM_CPPFLAGS            = -I$(top_builddir)/.. -I$(top_srcdir)/.. \
+AM_CPPFLAGS            = -I$(top_builddir) -I$(top_srcdir) \
                          -I.. -I$(srcdir)/..
 AM_LDFLAGS             = -no-undefined -module -avoid-version -export-dynamic
 

reply via email to

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