如何在GDB中抑制文件警告?

时间:2016-01-01 17:01:21

标签: c linux gdb suppress-warnings

当我调试一个带有 gdb 的C程序时,我经常遇到这样的警告:

66  ../sysdeps/x86_64/strlen.S: File or directory not found.
(gdb) step
67  in ../sysdeps/x86_64/strlen.S
(gdb) s
68  in ../sysdeps/x86_64/strlen.S
(gdb) s
69  in ../sysdeps/x86_64/strlen.S
(gdb) s
70  in ../sysdeps/x86_64/strlen.S
...

这会持续一段时间,直到找到文件(我猜)。稍后程序继续,但gdb运行到另​​一个未知文件,依此类推......

怎么了?我怎样才能摆脱这些错误/警告?

0 个答案:

没有答案