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 optims in my autoconf/automake project?
> I use gcc 2.96 on Linux with autoconf 2.53 and automake 1.5
> Thanks
> -jec
>



Reply via email to