DWARFHacktoberfestPDBRAnaldebug-infoenhancementvars
Repository metrics
- Stars
- (23,826 stars)
- PR merge metrics
- (平均マージ 16h 24m) (30d で 99 merged PRs)
説明
DWARF
Radare2 does not output variable/attribute names (DW_AT_name). As a result, local function variables in binaries with debuginfo aren't named and still use "local_XX".
For example:
- Compile a binary with "-g3"
- Compare the output of
objdump -g a.out,readelf --debug-dump=info a.outandrabin2 -d a.out
It would be fantastic if we could automatically rename "local_XX" by thier DW_AT_name for binaries with debuginfo.
PDB
Same applies here