mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2025-07-06 01:00:34 +00:00
and updating minidump_stackwalk to show process uptime. I tested this with a minidump from Chrome and I got a result that is inline with what the Windows debugger is showing for that dump: minidump_stackwalk output: -------------------------- Process uptime: 601 seconds WinDBG output: -------------- Process Uptime: 0 days 0:10:01.000 I didn't update the machine readable output of minidump_stackwalk on purpose in order to avoid breaking someone that uses it. It can be added later to the machine output if needed. R=mark@chromium.org Review URL: https://breakpad.appspot.com/7754002 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1406 4c0a9323-5329-0410-9bdc-e9ce6186880e |
||
---|---|---|
.. | ||
process_state.proto | ||
README |
If you wish to use these protobufs, you must generate their source files using protoc from the protobuf project (http://code.google.com/p/protobuf/). ----- Troubleshooting for Protobuf: Install: If you are getting permission errors install, make sure you are not trying to install from an NFS. Running protoc: protoc: error while loading shared libraries: libprotobuf.so.0: cannot open shared object file: No such file or directory The issue is that Ubuntu 8.04 doesn't include /usr/local/lib in library paths. To fix it for your current terminal session, just type in export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib