https://github.com/ssbssa/dwarfstack
Provides stacktrace with source file/line information.
https://github.com/ssbssa/dwarfstack
mingw-w64 stack-traces
Last synced: about 1 year ago
JSON representation
Provides stacktrace with source file/line information.
- Host: GitHub
- URL: https://github.com/ssbssa/dwarfstack
- Owner: ssbssa
- License: lgpl-2.1
- Created: 2015-09-06T16:00:38.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-06-01T15:28:03.000Z (almost 2 years ago)
- Last Synced: 2024-06-01T17:38:28.443Z (almost 2 years ago)
- Topics: mingw-w64, stack-traces
- Language: C
- Homepage:
- Size: 843 KB
- Stars: 26
- Watchers: 4
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
dwarfstack
==========
dwarfstack aims to provide a simple way to get meaningful stacktraces.
Only windows executables (mingw-gcc) are supported.
It uses the debug information (if available) of the executables and converts
the addresses into source file/line information.
To get a better picture, check out the examples.
compilation:
------------
make
installation:
-------------
make PREFIX=/your/install/path
notes:
------
If you need a full stacktrace for release builds, you should consider
using -fno-omit-frame-pointer (and maybe even
-fno-optimize-sibling-calls / -fno-schedule-insns2).
Otherwise, depending on the situation (like gcc version), some frames
might be missing.