diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-09-26 18:10:28 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-09-26 18:10:28 +0200 |
commit | 40e7ca4c71a5777ead1699a7264cb39606504596 (patch) | |
tree | f585dfd45d8e2177ec1d12b746d6e845375002df /doc | |
parent | Bookmarks: remove debug defines (diff) | |
download | smolbote-40e7ca4c71a5777ead1699a7264cb39606504596.tar.xz |
Add breakpad submodule
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Breakpad.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/Breakpad.md b/doc/Breakpad.md new file mode 100644 index 0000000..d1056a5 --- /dev/null +++ b/doc/Breakpad.md @@ -0,0 +1,14 @@ +## Producing symbols + +~~~sh +tools/linux/dump_syms/dump_syms ./poi > poi.sym +head -n1 poi.sym +mkdir -p ./symbols/poi/<hex> +mv poi.sym ./symbols/poi/<hex> +~~~ + +## Processing minidump + +~~~sh +processor/minidump_stackwalk minidump.dmp ./symbols +~~~ |