XCode 全局断点不显示堆栈跟踪
我从 libobjc.A.dylib 和 CoreFoundation 位置设置了全局断点。我运行我的 iPhone 应用程序,它遇到了异常。 XCode 在断点处停止,但在日志中没有显示任何错误: 待处理断点 1 - “objc_exception_throw”已解决 待定断点 2 - “-[NSException raise]” 已解决
我单击控制台上的“继续”按钮,并收到与启用断点之前收到的相同的难以区分的错误。
如何获取设置全局断点应该生成的堆栈跟踪?
I set up global break points from locations libobjc.A.dylib and CoreFoundation. I run my iphone app and it hits the exception. XCode stops at the breakpoint but does not show any error in the log besides:
Pending breakpoint 1 - "objc_exception_throw" resolved
Pending breakpoint 2 - "-[NSException raise]" resolved
I click the "Continue" button on the console and I get the same indistinguishable error I received before I enabled the breakpoints.
How do I get the stack trace that setting up the global breakpoints is supposed to generate?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 GDB 控制台输入
bt
或backtrace
type
bt
orbacktrace
from the GDB console