dump_syms icon indicating copy to clipboard operation
dump_syms copied to clipboard

A reimplementation of the Breakpad Windows dump_syms tool

Results 5 dump_syms issues
Sort by recently updated
recently updated
newest added

Just putting this information here for visibility, but it looks like Microsoft is finally opening up about the PDB internals here https://github.com/Microsoft/microsoft-pdb in order for other compilers to output debug...

For compatibility with Breakpad's dump_syms, we should figure out how to dump extern "C" functions without parameters in the function signature. I have an attempt at doing this in the...

Some PDBs e.g. kernel32.pdb/17D8B8C647E14C1DAF9C6FC206AAAC512 only seem to have global symbol information, and no module symbol information. Presumably this can be fixed by creating FunctionRecords in getGlobalFunctions, as it did prior...

Breakpad's dump_syms can read the x64 unwind tables out of the PE and dump them as STACK CFI records. We should do the same. Additionally, some PDB files (notably Microsoft's)...

We get bad addresses for functions in some PDBs, I think we need to handle OMAP remapping properly.