How to use the GDB console in Eclipse CDT?

前端 未结 4 776
渐次进展
渐次进展 2020-12-28 14:03

Is there a way how I can access gdb\'s console in Eclipse? I would like to just be able to set breakpoints with the mouse and then use the console for debugging.

相关标签:
4条回答
  • 2020-12-28 14:34

    First of all, you need to install CDT plugin. Then, you can debug C++ application like Java application in Eclipse.

    If you want gdb console, push 'Display Selected Console' in Console view in Debug perspective.

    You can choose '[Your App name][C/C++ Application]gdb' entry, and then you can type gdb instruction(i.e. print this) in Console View.

    0 讨论(0)
  • 2020-12-28 14:43

    Window > Show view > "Debugger Console" is the right way as of Eclipse CDT 4.7.0.

    You can then type certain commands like print on the console and they will be evaluated.

    Other more "active" commands like continue have no effect however.

    Mentioned on this comment.

    0 讨论(0)
  • 2020-12-28 14:49

    You must click here enter image description here

    Next select one with *gdb enter image description here

    Now you can write GDB commands in console example:

    enter image description here

    0 讨论(0)
  • 2020-12-28 14:50

    It is possible to write in the console window and gdb answers. (You have to choose the right console window from the chooser in the top right edge of the console view).

    Unfortunately the console is quite limited: gdb answers to command, but important features like tab-completion do not work.

    0 讨论(0)
提交回复
热议问题