How can I debug command level using CDT

I use CDT to develop C programs.

When the debugger stops at a breakpoint and I do “Step Over” or “Step Into”, the behavior of the debugger is based on the source line level, but not on the command level.

Can I run command level debugging in the CDT?

+5
source share
3 answers

In the Debugging window (debugging perspective) there is a button Instructions step mode : it looks like a small self with an arrow i=>).
You can also set breakpoints for specific instructions in the Disassemble window.

+8

, CDT - . CDT , .

0

Step setting mode can also be activated from the menu. When debugging:

  • Run
  • Instruction step mode

This is a question about how to enable it by default: How to enable step-by-step execution of commands in eclipse-cdt (Eclipse for C ++)?

Tested on 4.6.3.

0
source

All Articles