I have a crash dump from my c++ application in ubuntu. I am using gdb to analyze the dump.
I can run the following commands:
bt
frame #
info args
print *this
The output of the print *this
is not very neat.
I learned that you can use a gui wrapper Eclipse cdt for gdb. I tried finding some information how to do that but couldn't find a very clear answer on how can this be done.
How can I analyze the dump with gdb using eclipse cdt wrapper?
How can I analyze the dump with gdb using eclipse cdt wrapper?
In Eclipse CDT you do a C/C++ Postmortem Debugger session.
The output of the print *this is not very neat.
Using Eclipse CDT alone may not change this significantly. You may want STL pretty printing to help support this.
See https://stackoverflow.com/a/33048311/2796832 for instructions on setting that up in CDT.