How can I map kotlin native stacktraces to kotlin source code? (Is there a tool for this?)
d
How can I map kotlin native stacktraces to kotlin source code? (Is there a tool for this?)
o
for debug binaries this information is available in DWARF format, so you could use lldb or other tool which could read DWARF
👍 1