How to write your own C ++ Debugger Visualizer in gdb / TotalView for complex types

How to write your own C ++ Debugger Visualizer in gdb / TotalView for complex types. Suppose we have one complex type that again contains more different types. how to get the debug symbol of this complex type. Note. For reference, you can see the link for Visual Studio. But I need for gdb / TOtalView on linux. http://www.idigitalhouse.com/Blog/?p=83

early.

+7
source share
2 answers

GDB and TotalView are completely different products.

Instructions for GDB are here .

Instructions for TotalView are here . If this link does not work, google has a copy .

+6
source

I think the C ++ View function from TotalView is what you are looking for. To confirm this, you can watch the following video: TotalView: C ++ view presentation . More information can be found in the online documentation.

-one
source

All Articles