dimahardie / google-breakpad

Automatically exported from code.google.com/p/google-breakpad
0 stars 0 forks source link

I can not fully analyze the dump test application #470

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I try to parse dump of test application from Guide 
(http://code.google.com/p/google-breakpad/wiki/LinuxStarterGuide)

When parsing can not get a complete description of the stack.
minidump_staсkwalk requires standard symbol libraries

Where to find them? How do the symbols of standard libraries?

Log minidump_staсkwalk attached

Original issue reported on code.google.com by sqbo...@gmail.com on 2 Mar 2012 at 1:20

Attachments:

GoogleCodeExporter commented 8 years ago
Ubuntu 12.04 x86_64
Tested using gcc 4.6.2, 4.8.1 with different flags

main moments of issue:
- minidump.cc:4186: INFO: GetStream: type 1197932545 not present
- MinidumpModule could not determine version for ... (all modules)
- basic_code_modules.cc:88: INFO: No module at ... (0x0,  0x7f29900008c0 and 
other)

Original comment by kutashe...@gmail.com on 25 Jun 2013 at 2:36

GoogleCodeExporter commented 8 years ago
This is not a bug. You need to run dump_syms. For example:

dump_syms /lib/x86_64-linux-gnu/libglib-2.0.so.0.3200.4 
/usr/lib/debug/lib/x86_64-linux-gnu > libglib-2.0.so.0.3200.4.sym
and then move the .sym file to the right location.

Original comment by thestig@chromium.org on 25 Jun 2013 at 6:16