This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]