I can build the google breakpad client, the stackwalker can convert the dump to human readable txt file. But there is no gyp file to make vs2008 solution. Does anyone know how to build the stackwalker on windows. Thanks
Asked
Active
Viewed 3,292 times
2
-
Could you please explain how you converted the dump to a readable file? And how did you compile the converter? thanks – Marc-Christian Schulze Nov 26 '12 at 15:17
1 Answers
6
The stackwalker tool doesn't build using Visual C++ currently. You can build it with Cygwin if you install that whole toolchain. If you'd find it useful there's a prebuilt Cygwin minidump_stackwalk binary that Mozilla uses on our build machines.
Along with the matching Cygwin support DLLs: cygwin1.dll, cygstdc++-6.dll, cyggcc_s-1.dll.
It's slightly out-of-date but should work fine.
Also note that you should be able to load Windows minidump files directly into a debugger on Windows, like Visual C++ or WinDBG.

Thomas Weller
- 55,411
- 20
- 125
- 222

Ted Mielczarek
- 3,919
- 26
- 32
-
1This version unfortunately doesn't have the most useful parameter yet ( -s : Output stack contents). Is there a newer build from more current sources? – FourtyTwo Nov 06 '17 at 13:00