So I wrote buggy code that occasionally crash ... and creates a stackdump file.
Using addr2line I can figure out how the program got to the crash point by decoding the addresses from the stackdump one by one. Is there an alternative tool that can ease the debug using stack dumps? Is there a way to to load this information in Insight/Gdb?
gdb path/to/the/binary path/to/the/core
to debug it. Thanks to https://mcmap.net/q/107737/-core-dump-file-analysis-duplicate. – Kassey