Search code examples
google-breakpad

build google breakpad stackwalk


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


Solution

  • 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.