Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我将 gdb 附加到使用许多源文件(例如 PHP)的进程时,有时我想在文件 y 的第 x 行设置断点。如何为 gdb 指定文件?
它很简单:
b filename.c:XYZ
有关更多信息,请参阅文档。
gdb ./test.exe
b 117
b filename.c:110
r
n
c
s
until 1120
for
您可以将 GDB 中的几乎所有命令缩短到它们保持明确的程度。