我使用gdb来调试我的cpp代码。 我以这种方式设置断点:
(gdb) break ParseDriver.cc:60
No source file named ParseDriver.cc.
Make breakpoint pending on future shared library load? (y or [n]) y
Breakpoint 1 (ParseDriver.cc:60) pending.
为了简化设置断点,我编写了一个简单的gdb脚本(名为breakpoints.gdb),它只包含一行:
break ParseDriver.cc:60
我在gdb终端中获取此脚本,但它失败了。
(gdb) source ~/breakpoints.gdb
No source file named ParseDriver.cc.
Make breakpoint pending on future shared library load? (y or [n]) [answered N; input not from terminal]
似乎我们需要在脚本中回答Y以设置断点。
那么,如何在gdb脚本中回答Y? 提前谢谢。
答案 0 :(得分:40)