记录执行的源代码行
是否可以使用 gdb (或其他工具)记录使用 g++ -g 编译的程序的每个执行行? (即记录在 gdb 中从程序开始到结束重复“step”命令时看到的所有源代码行)
Is it possible with gdb (or other tools) to log every executed line of a program compiled with g++ -g? (i.e. log all source code lines that you would see when repeating the "step" command in gdb from program start to end)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
类型
设置日志记录
当你进入gdb时。
所有输出都将复制到 gdb.txt
其他命令是:
设置日志记录(禁用日志)
设置日志文件FILE(更改日志文件名)
设置日志记录覆盖 [开|关]
设置日志记录重定向 [开|关]
显示日志记录
更多信息可以在
中找到
此处
type
set logging on
when you enter gdb.
and all output will be copy to gdb.txt
other commands are:
set logging of (disable log)
set logging file FILE (change file name of log)
set logging overwrite [on|off]
set logging redirect [on|off]
show logging
more information can be found in
here