记录执行的源代码行

发布于 2024-10-17 14:51:19 字数 90 浏览 1 评论 0原文

是否可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沉鱼一梦 2024-10-24 14:51:19

类型
设置日志记录
当你进入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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文