[PATCH] D53379: GSYM symbolication format

Greg Clayton via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 5 09:45:40 PST 2018


clayborg added a comment.

A great way to understand and see the file format is to use to convert some DWARF:

  $ llvm-gsymutil -dwarf /tmp/a.out

Then dump it:

  $ llvm-gsymutil -verbose /tmp/a.out.gsym

The verbose flag will dump all GSYM sections (header, address table, address offsets table, file table, string table, and all address infos. This allows you to take known input from DWARF and generate GSYM output files.


https://reviews.llvm.org/D53379





More information about the llvm-commits mailing list