gpt4 book ai didi

gdb - 自动化 gdb : show backtrace at every call to function puts

转载 作者:行者123 更新时间:2023-12-02 10:41:22 24 4
gpt4 key购买 nike

我想调试一些程序。我需要对某个函数的所有调用的回溯,例如看跌期权。

现在我使用这样的gdb 脚本:

set width 0
set height 0
set verbose off
break puts
commands 1
backtrace
continue
end

但是从

开始
gdb --batch --command=script --args ./some_program arguments

报错:

Function "puts" not defined.
Make breakpoint pending on future shared library load? (y or [n]) [answered N; input not from terminal]
/root/script:5: Error in sourced command file:
No breakpoint number 1.

如何在库调用的脚本中设置断点?

最佳答案

试试这个:

set width 0
set height 0
set verbose off
start # runs to main, so shared libraries are loaded
# after you reach main, GDB should have libc symbols, "puts" among them
break puts
commands 1
backtrace
continue
end

如果这不起作用,请说明操作系统版本。

编辑:正如 osgx 正确指出的那样,另一种选择是添加

set breakpoint pending on

中断看跌期权之前

关于gdb - 自动化 gdb : show backtrace at every call to function puts,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2388799/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com