>>>>> "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 first. Or you can set CFLAGS on the `make' command line. If you're using C++, use CXXFLAGS. Tom