mipsel-gdb 源代码断点
如果在头文件中实现了一个类,gdb 似乎无法找到断点。因此我试图从源头强制断点。我想我需要相当于 asm("int3") 的 mips。有什么想法吗?
PS:asm(“break 3”)不起作用
It seems that gdb is failing to find breakpoints if a class is implemented in the header file. Therefore I am trying to force a breakpoint from the source. I guess I need the mips equivalent of asm("int3"). Any ideas?
PS: asm("break 3") does not work
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 __volatile__ __asm__("break");
Try
__volatile__ __asm__("break");