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在带有标签的行之后的两行设置断点。如何在gdb不向程序添加额外标签的情况下做到这一点?
gdb
gdb支持在标签后添加断点 X 字节,由于每条指令是 4 字节,我只需要执行以下操作:
*&labelname + 8
b foo,其中foo是源中的行号。
b foo
foo