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

From Gavin Sherry
Subject Re: --enable-debug does not work with gcc
Date
Msg-id Pine.LNX.4.58.0702022003080.29862@linuxworld.com.au
Whole thread Raw
In response to Re: --enable-debug does not work with gcc  (NikhilS <nikkhils@gmail.com>)
Responses Re: --enable-debug does not work with gcc  (NikhilS <nikkhils@gmail.com>)
List pgsql-hackers
On Fri, 2 Feb 2007, NikhilS wrote:

> Hi,
>
> Indeed it does, apologies for not doing the entire groundwork. But what it
> also does is that it adds -O2 by default for gcc even when --enable-debug is
> specified. gdb is not able to navigate the stack traces properly with this
> optimization in place. Especially tracing of static functions becomes
> difficult. Has this issue been faced by anybody else? If so can try out a
> patch to avoid using O2 with enable-debug.

Yes, this is known. The thing with gcc is, it only emits some warnings at
-O2. I'm not that this is why we do not set optimisation to 0 but have
long assumed it to be the case. I imagine that it's fairly standard
practice for people doing debugging to CFLAGS=-O0 as an argument to
configure.



pgsql-hackers by date:

Previous
From: Michael Meskes
Date:
Subject: Re: Why is ecpg segfaulting on buildfarm member "clownfish"?
Next
From: NikhilS
Date:
Subject: Re: --enable-debug does not work with gcc