[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: REÂ : Removing Optim
From: |
Tom Tromey |
Subject: |
Re: REÂ : Removing Optim |
Date: |
26 Jul 2002 18:48:54 -0600 |
User-agent: |
Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 |
>>>>> "jec" == Jean-Eric Cuendet <address@hidden> 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