Unhandled dwarf expression

前端 未结 2 1421
一向
一向 2021-02-19 13:55

Can anybody tell me what exactly the following segmentation fault means?

Unhandled dwarf expression opcode 0x93

Its on solaris 10 i386.

相关标签:
2条回答
  • 2021-02-19 14:11

    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.

    0 讨论(0)
  • 2021-02-19 14:28

    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.

    0 讨论(0)
提交回复
热议问题