Re: .cpp.lo

2002-07-26 Thread Tom Tromey
> "Waldemar" == Waldemar Rosenbach <[EMAIL PROTECTED]> writes: Waldemar> and that doesn't work: *.lo files are not created. Could you send the tail of the build output? That might help us understand what is going wrong. Tom

Re: RE : Removing Optim

2002-07-26 Thread Tom Tromey
> "jec" == Jean-Eric Cuendet <[EMAIL PROTECTED]> writes: jec> I have an automake project. jec> By default, its compiled with -g -O2 jec> I need -g3 -O0 to debug it jec> How to do it? With up-to-date tools: ./configure CFLAGS='-g3 -O0' With older tools, set CFLAGS in the environment fir

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 Cuendet

Re: Removing Optim

2002-07-26 Thread Segher Boessenkool
I think you mean to build without compiler optimizations. You could add something like this to Makefile.am: debug: $(MAKE) all CFLAGS="$(CFLAGS) -O0" and run make debug (-O0 is GCC specific). Cheers, Segher Jean-Eric Cuendet wrote: > > Hi > Could someone tell me how to remove o

.cpp.lo

2002-07-26 Thread Waldemar Rosenbach
Linux 2.4.18 GNU Make version 3.79.1 autoconf (GNU Autoconf) 2.52 automake (GNU automake) 1.6.2 automake generates in Makefile.in: .cpp.lo: @AMDEP_TRUE@source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLA