|
|
|
|
|
by loeg
3154 days ago
|
|
backtrace(3) doesn't use or understand DWARF debug information at all — it's purely a machine stack (doesn't understand tail calls or inlined functions) and can only look up ELF symbols. It's better than nothing, but consider using something like libunwind instead. |
|
The ultimate goal is to get a backtrace without debug symbol (in release) but I don't know any method to achieve that without instrumentation.