Re: --enable-debug does not work with gcc - Mailing list pgsql-hackers

From Magnus Hagander
Subject Re: --enable-debug does not work with gcc
Date
Msg-id 45C3865B.1080000@hagander.net
Whole thread Raw
In response to Re: --enable-debug does not work with gcc  (Bruce Momjian <bruce@momjian.us>)
Responses Re: --enable-debug does not work with gcc  (Matthias Luedtke <matthias-luedtke@gmx.de>)
Re: --enable-debug does not work with gcc  (Bruce Momjian <bruce@momjian.us>)
List pgsql-hackers
>> If we did what you suggest, then --enable-debug would cause performance
>> degradation, which would cause people to not use it, which would result
>> in most binaries being completely undebuggable rather than only partially.
>> Doesn't sound like a good tradeoff to me.
>>
>> Personally, in my development tree I use a Makefile.custom containing
>>
>> # back off optimization unless profiling
>> ifeq ($(PROFILE),)
>>    CFLAGS:= $(patsubst -O2,-O1,$(CFLAGS))
>> endif
>>
>> -O1 still generates "uninitialized variable" warnings but the code is a
>> lot saner to step through ... not perfect, but saner.  It's been a
>> workable compromise for a long time.  I don't recommend developing with
>> -O0, exactly because it disables some mighty valuable warnings.
> 
> Agreed.  I use -O1 by default myself, unless I am doing performance testing.
> 
Something for the developers FAQ perhaps? I confess I did not know of
Makefile.custom :-D

//Magnus



pgsql-hackers by date:

Previous
From: imad
Date:
Subject: Re: PL/pgSQL RENAME functionality in TODOs
Next
From: "Ioseph Kim"
Date:
Subject: problem of geometric operator in v8.2.1