Hi!
I am currently trying to make backtraces in Rust work, a long desired
wish. Previously Rust tried to use dladdr to find symbol names, but
this failed because Haiku's dladdr only looks at dynamic symbols and
not local symbols. The current implementation uses dwarf debugging
information.
I may be mistaken since ELF and runtime loading is not my expertise,
but as I understand it for unwinding to being able to find symbol
...
↧