标签: debugging console gdb
我设置了一个断点,运行正常。
有没有办法在不使用“next”或“step”的情况下立即跳转到该断点?
使用“next”或“step”需要很长时间才能到达最终断点。
答案 0 :(得分:36)
只需按 c ,它将继续执行,直到下一个断点。
您还可以按照here所述的disable #breakpointnumber禁用中间断点。
disable #breakpointnumber