My program operates like this:
exe -p param1 -i param2 -o param3
It crashed and generated a core dump file, core.pid.
I want to analyze the core dump file by
gdb ./exe -p param1 -i param2 -o param3 core.…
I have to debug a program that has errors in it as part of my assignment. However, I must first pass command line arguments in order to solve this problem.
I do:
gdb -tui InsertionSortWithErrors
which works, but after that …
Briefly: Does anyone know of a GUI for gdb that brings it on par or close to the feature set you get in the more recent version of Visual C++?
In detail: As someone who has spent a lot of …