Wgcc 2.0 RC2 released.

2006-09-22 Thread Duft Markus
wgcc is a cross-compiler tool primarily written for Microsoft's Interix. Its primary purpose is to produce native Windows binaries (internally using the Microsoft Tool chain), and to mimic the behaviour of the GNU compiler collection. This means that wgcc understands many of GCC's command line

gcov

2006-09-22 Thread Baurzhan Ismagulov
Hello all, I use libtool 1.5.22 in my project. I have the following directory structure: /dir/ /dir/build/ /dir/build/.libs/ /dir/build/.libs/a.o /dir/build/a.lo /dir/build/a.o /dir/prj/ /dir/prj/a/ /dir/prj/a/a.c When I call gcov under /dir/build, it says stamp mismatch with graph file

Re: gcov

2006-09-22 Thread Ralf Wildenhues
Hello Baurzhan, * Baurzhan Ismagulov wrote on Fri, Sep 22, 2006 at 02:19:32PM CEST: /dir/ /dir/build/ /dir/build/.libs/ /dir/build/.libs/a.o /dir/prj/ /dir/prj/a/ /dir/prj/a/a.c When I call gcov under /dir/build, it says stamp mismatch with graph file (perhaps the *.gc* files do not

Re: gcov

2006-09-22 Thread Baurzhan Ismagulov
Hello Ralf, thanks much for your prompt answer! On Fri, Sep 22, 2006 at 02:59:15PM +0200, Ralf Wildenhues wrote: When I call gcov under /dir/build, it says stamp mismatch with graph file (perhaps the *.gc* files do not match a.o?). So I call it from /dir/build/.libs. In this case, a.c is

cannot install...to a directory not ending in

2006-09-22 Thread Jeff Blaine
Okay, I've run into this enough that it's taken its toll on me and I must know the proper modern way to handle this. For years and years, the following worked fine for any GNU app using autoconf: ./configure --prefix=/my/final/destination make make install

Re: cannot install...to a directory not ending in

2006-09-22 Thread Ralf Wildenhues
Hello Jeff, * Jeff Blaine wrote on Fri, Sep 22, 2006 at 04:17:07PM CEST: Okay, I've run into this enough that it's taken its toll on me and I must know the proper modern way to handle this. Hmm. This sounds like it used to work before and we broke something. Is it what you are implying? For

Re: message to the bug-libtool list

2006-09-22 Thread Ralf Wildenhues
[ bug-libtool readers: the original bug report was filtered ] Hello Jitesh, * Jitesh Jhatakia wrote on Fri, Sep 22, 2006 at 05:16:12PM CEST: Tagdemo-make.test failed 2 times once for tagdemo-conf.test and 2nd time for tagdemo-shared.test. Thanks for the bug report. Could you please post

Re: cannot install...to a directory not ending in

2006-09-22 Thread Edward Maros
I believe the problem being described here is one that I have encountered also since I use stow for package management. A long time ago, it use to be the case you could say: ./configure --prefix=/dest make make prefix=/dest/stow/package-package version install even if the package installed

Re: gcov

2006-09-22 Thread Ralf Wildenhues
Hello Baurzhan, * Baurzhan Ismagulov wrote on Fri, Sep 22, 2006 at 03:28:09PM CEST: When I call gcov under /dir/build, it says stamp mismatch with graph file (perhaps the *.gc* files do not match a.o?). So I call it from /dir/build/.libs. In this case, a.c is looked for in ../prj/a,

Re: cannot install...to a directory not ending in

2006-09-22 Thread Jeff Blaine
Hi Ralf and Ed, Ed's description of the problem is what I am experiencing. We use VECT (aka CMU's EMT Rewritten and made Lite) for release management of apps. Written by yours truly :) http://vect.sourceforge.net/ Anyway, it's the same problematic idea as Stow's. I will try --with-libdir,

RE: message to the bug-libtool list

2006-09-22 Thread Jitesh Jhatakia
Title: RE: message to the bug-libtool list See in line -Original Message- From: Ralf Wildenhues [mailto:[EMAIL PROTECTED]] Sent: Friday, September 22, 2006 9:34 AM To: Jitesh Jhatakia Cc: bug-libtool@gnu.org Subject: Re: message to the bug-libtool list [ bug-libtool readers: the

Re: cannot install...to a directory not ending in

2006-09-22 Thread Ralf Wildenhues
* Jeff Blaine wrote on Fri, Sep 22, 2006 at 06:30:42PM CEST: I will try --with-libdir, however I'm immediately concerned that it's going to cause an additional problem: We don't want anything we build for /dest to have any references to /dest/stow/package-package version (to use Ed's

Re: cannot install...to a directory not ending in

2006-09-22 Thread Jeff Blaine
I tried DESTDIR. It doesn't do what I want. If I specify % ./configure --prefix=/usr/local % make % make install DESTDIR=/blah/blah ...then the install process builds out /blah/blah/usr/local. We can't use that. Let me explain better what it is I am doing. The players that are

Re: cannot install...to a directory not ending in

2006-09-22 Thread Albert Chin
On Fri, Sep 22, 2006 at 05:26:07PM -0400, Jeff Blaine wrote: I tried DESTDIR. It doesn't do what I want. If I specify % ./configure --prefix=/usr/local % make % make install DESTDIR=/blah/blah ...then the install process builds out /blah/blah/usr/local. We can't use that.

Re: cannot install...to a directory not ending in

2006-09-22 Thread Albert Chin
On Fri, Sep 22, 2006 at 04:52:27PM -0500, Albert Chin wrote: On Fri, Sep 22, 2006 at 05:26:07PM -0400, Jeff Blaine wrote: I tried DESTDIR. It doesn't do what I want. If I specify % ./configure --prefix=/usr/local % make % make install DESTDIR=/blah/blah ...then the