主题。
编译:g++ -g -Wall -o program program.cpp
运行:gdb -tui 程序
谢谢,
哈维尔。
如果你有 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.
使用fin(ish)
命令跳出函数调用。n(ext)
或者使用命令跳过函数调用。请参阅继续和步进。