4

主题。

编译:g++ -g -Wall -o program program.cpp

运行:gdb -tui 程序

谢谢,

哈维尔。

4

2 回答 2

5

如果你有 GDB 7.4 或更高版本,有一个skip命令可以让你跳过函数或整个文件。将文件或函数标记为跳过后,它不会再次进入其中。来自 GDB 手册——跳过函数和文件

skip [linespec]

skip function [linespec]
After running this command, the function named by linespec or the function containing the line named by linespec will be skipped over when stepping. 

skip file [filename]
After running this command, any function whose source lives in filename will be skipped over when stepping.
于 2013-09-11T15:47:38.457 回答
2

使用fin(ish)命令跳出函数调用。n(ext)或者使用命令跳过函数调用。请参阅继续和步进

于 2013-09-11T15:33:17.307 回答