Re: ccache and autotools

2002-11-08 Thread Jean-Eric Cuendet
Is it possible to tell autoconf/automake to not use -MT when generating the Makefiles? Would it not be best to fix ccache? Or is it such that ccache should avoid -MT? In fact, ccache tells in logfile that -MT is not supported. What does -MT do? And why dows autoconf use it? Can we not use

ccache and autotools

2002-11-08 Thread Jean-Eric Cuendet
Hi, I have a C++ project with a lot of source files (~4000). I'd like to use ccache to speed recompilation of the project. I can't since ccache doesn't support -MT flag to gcc What does EXACTLY this flags? Is it possible to tell autoconf/automake to not use -MT when generating the Makefiles? Thank

Re: cxx + cpp

2002-11-08 Thread Jean-Eric Cuendet
Thanks. Upgrading to 1.7.1 solved my problem -jec Alexandre Duret-Lutz wrote: "Jean-Eric" == Jean-Eric Cuendet <[EMAIL PROTECTED]> writes: [...] Jean-Eric> Thus the question how to tell automake not to doubly define that. I think upgrading the Automake 1.7.1 sho

Re: cxx + cpp

2002-11-05 Thread Jean-Eric Cuendet
Thanks, but the problem is not there. You've doubly defined your target, once at line 35275 and once at line 61202 in your Makefile. Remove one and the warnings will go away. It's automake that creates the Makefile! My Makefile.am contains only bla_SOURCES=file1.cpp file2.cxx And then automake

cxx + cpp

2002-11-05 Thread Jean-Eric Cuendet
1: warning: ignoring old commands for target `fn_xmlfinancialreceiver.o' Makefile:61208: warning: overriding commands for target `fn_xmlfinancialreceiver.obj' If I remove the cxx files, these errors are gone. Is there a way to remove these messages? Thanks -jec -- Jean-Eric Cuendet Linkvest SA

RE : Removing Optim

2002-07-26 Thread Jean-Eric Cuendet
I have an automake project. By default, its compiled with -g -O2 I need -g3 -O0 to debug it How to do it? Thanks -jec Message d'origine De: Tom Tromey [mailto:[EMAIL PROTECTED]] Date: mer. 24/07/2002 16:55 À: Jean-Eric Cu

Removing Optim

2002-07-23 Thread Jean-Eric Cuendet
Hi Could someone tell me how to remove optims in my autoconf/automake project? I use gcc 2.96 on Linux with autoconf 2.53 and automake 1.5 Thanks -jec

EXE stripe

2002-07-22 Thread Jean-Eric Cuendet
Hi, Can someone explain me 2 things: - How I stripe my objects using in automake Makefile.am? - I have a Makefile.am that have only SUBDIRS. I need to do something else than that (a custom script), How do I write that in the Makefile.am? Thanks -jec PS: Im not in the list