You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We've started encountering minidumps coming from Android builds of Firefox where the shared libraries have been mapped directly from an APK (which is just a ZIP file, so they're probably stored uncompressed). The relevant mappings look like this:
Since we record the module name we find in the mappings the minidumps are unusable, as we can't symbolicate them.
We look for the SONAME in the mapped ELF file so we should be finding it, but chances are that we are failing to open the underlying file here.
So this could be related to issue #71, because we'd be certainly capable of finding the SONAME within the crashed process' memory. If we switch reading the build ID from there, reading the SONAME would be a trivial addition.
The text was updated successfully, but these errors were encountered:
We've started encountering minidumps coming from Android builds of Firefox where the shared libraries have been mapped directly from an APK (which is just a ZIP file, so they're probably stored uncompressed). The relevant mappings look like this:
Since we record the module name we find in the mappings the minidumps are unusable, as we can't symbolicate them.
We look for the SONAME in the mapped ELF file so we should be finding it, but chances are that we are failing to open the underlying file here.
So this could be related to issue #71, because we'd be certainly capable of finding the SONAME within the crashed process' memory. If we switch reading the build ID from there, reading the SONAME would be a trivial addition.
The text was updated successfully, but these errors were encountered: