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 中是否有任何方法可以重新定义断点的位置,而不必禁用/删除它并制作另一个断点
不。
大概您关心保留旧断点编号,因为您已附加命令以禁用和启用该断点到其他断点。如果是这样,您可以使用save breakpoints命令将断点定义保存到文件中,使用编辑器调整断点的位置,然后重新启动 GDB 并使用source命令重新加载断点。
save breakpoints
source