I’m successfully symbolicating minidump crash reports with the electron.breakpad.syms
downloaded from the electron releases, but the main module always shows “WARNING: No symbols” and I can’t seem to figure out why or how to symbolicate these lines.
Example:
Thread 0 (crashed)
0 0x7fff3970e794
rax = 0x00007ff299259e00 rdx = 0x00000000000012a0
rcx = 0x0000000000000000 rbx = 0x0000604000c52180
rsi = 0x00007ff2993cf261 rdi = 0x0000000008000101
rbp = 0x00007ffee8e8b420 rsp = 0x00007ffee8e8b410
r8 = 0x0000000000000000 r9 = 0x0000000000000000
r10 = 0x00007ffee8e8af18 r11 = 0xffffffffffe8bdff
r12 = 0x00007ffee8e8b420 r13 = 0x0000604000125f00
r14 = 0x00007fff62b16e80 r15 = 0x00007ffee8e8b430
rip = 0x00007fff3970e794
Found by: given as instruction pointer in context
1 0x7fff3970e67c
rbp = 0x00007ffee8e8b560 rsp = 0x00007ffee8e8b430
rip = 0x00007fff3970e67c
Found by: previous frame's frame pointer
2 0x7fff393d8e2e
rbp = 0x00007ffee8e8b610 rsp = 0x00007ffee8e8b570
rip = 0x00007fff393d8e2e
Found by: previous frame's frame pointer
3 Electron Framework!base::MessagePumpNSApplication::DoRun(base::MessagePump::Delegate*) [message_pump_mac.mm : 755 + 0xd]
rbp = 0x00007ffee8e8b790 rsp = 0x00007ffee8e8b620
rip = 0x0000000108adcbee
Found by: previous frame's frame pointer
[…]
Loaded modules:
0x106d74000 - 0x106d74fff Missive 0.0.0.0 (main) (WARNING: No symbols, Missive, C11B8E11EDD237B99AB55FE9E97FFFFB0)
0x106d79000 - 0x106d93fff Squirrel 1.0.0.0
0x106db8000 - 0x106e1bfff ReactiveCocoa 1.0.0.0
0x106e93000 - 0x106ea7fff Mantle 1.0.0.0
0x106ebc000 - 0x107dcefff libnode.dylib 0.0.0.0
0x10809b000 - 0x1082fffff libffmpeg.dylib 0.0.0.0
0x1087e7000 - 0x108831fff dyld 0.0.0.0
0x108885000 - 0x10c7ebfff Electron Framework 0.0.0.0
0x10f32a000 - 0x10f36efff .com.missiveapp.osx.zuBYus 0.0.0.0
0x111cb0000 - 0x1121eafff AppleIntelBDWGraphicsGLDriver 0.0.0.0
0x11bf00000 - 0x11bf1afff csparser 0.0.0.0
0x11feb1000 - 0x11feb3fff CloudDocsFileProvider 0.0.0.0
0x11feb8000 - 0x11febbfff FileProviderOverride 0.0.0.0
0x11fec1000 - 0x11fec7fff FinderSyncCollaborationFileProviderOverride 0.0.0.0
0x12019a000 - 0x1201a6fff Web2 0.0.0.0
0x120c81000 - 0x120c85fff Generic 0.0.0.0
Should I be including other symbols in minidump’s walkStack
?