Debugging with step filters in eclipse CDT

When I enter functions using the Eclipse CDT, I often have to go in and out of many standard libraries and increase library functions before I get code that interests me. I think that Eclipse JDT offers step filters that allow you to select packages that are ignored at login. I can not enable them for CDT. There is a menu item in the Run menu, but it is inactive. They exist? How to use them?

+4
source share
1 answer

Eclipse CDT uses gdb to execute code. You need to run "skip" or "skip file X" in the gdb console in Eclipse. "skip" was added to gdb in v7.4.

+1
source

Source: https://habr.com/ru/post/1480330/


All Articles