Reputation: 12136
I have tried various front-ends for gdb but I did not notice in any of them an option to interact with gdb directly (issuing CLI commands).
Is there a gdb front-end which supports this? I am mainly interested in memory examining functionality.
Upvotes: 1
Views: 946
Reputation: 9466
Eclipse is of course much more than GDB front-end, but it does provide a console view, where you can interact with GDB directly.
It also provides (at least) two different memory views, plus third party plug-ins that allow you to examine "bare metal" peripheral registers - if this is what you want to do.
You can do all this with Eclipse for C/C++ developers. There is now also a standalone debugger build of Eclipse which I did not try yet, but should be lighter version of above focused only on debugging.
Once you start Eclipse (for which you will need Java 7) you will need to create a launch configuration for C/C++ application, then launch it in Eclipse.
Or even better import you project into eclipse and create launch configuration for that project.
Upvotes: 1