未处理的侏儒表情
谁能告诉我以下分段错误到底是什么意思?
Unhandled dwarf expression opcode 0x93
它在Solaris 10 i386 上。
任何建议表示赞赏。
Can anybody tell me what exactly the following segmentation fault means?
Unhandled dwarf expression opcode 0x93
Its on solaris 10 i386.
Any advice appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的 GDB 版本太旧(比生成代码的编译器旧),则可能会出现此类错误消息(“未处理的矮表达式”)。 尝试安装最新版本的 gdb 并运行它。
This sort of error message ("unhandled dwarf expression") can occur if your version of GDB is too old (older than the compiler that generated the code). Try installing the latest version of gdb and running that.
这可能不会立即有所帮助,但“dwarf”可能指的是 DWARF 调试标准。
DWARF 的维基百科条目 表明该文件格式包含“用于简单、特殊的字节编码指令” -目的有限状态机”。 这可能意味着您有某种损坏的调试信息文件,但如果没有更多信息,我将无法进一步猜测。
This may not immediately help, but "dwarf" probably refers to the DWARF Debugging Standard.
The wikipedia entry for DWARF indicates that the file format contains "byte-coded instructions for simple, special-purpose finite state machines". This may mean that you have a corrupted debug info file of some kind, but without more information I wouldn't be able to guess further.