This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: c++ debugging remarkably good right now
- From: Benjamin Kosnik <bkoz at redhat dot com>
- To: libstdc++ at gcc dot gnu dot org
- Date: Mon, 4 Feb 2002 18:15:05 -0800 (PST)
- Subject: Re: c++ debugging remarkably good right now
> Now, how about defaulting to *not* printing out static members?
Put this in your .gdbinit:
set print static-members off
I like to see them, but you can do whatever.
The .gdbinit used:
set print pretty on
set print object on
set print static-members on
set print vtbl on
set print demangle on
set demangle-style gnu-v3
More info in the gdb docs...
-benjamin