Tagged Questions
7
votes
2answers
517 views
How to get the function name of a C function pointer
I have the following problem: when I get a backtrace in C using the backtrace(3) function the symbols returned the name of the functions is easily determinable with the dwarf library and dladdr(3).
...
4
votes
5answers
5k views
Library to read ELF file DWARF debug information
Any recommendations for a good cross-platform library for reading ELF file debug information in DWARF format? I'd like to read the DWARF debug info in a Python program.
4
votes
2answers
492 views
in Java: programmatically determining addresses of C/C++ variables given a COFF/ELF/DWARF executable
This is a situation I run into now and then:
For an embedded system which does not use virtual addressing, I have an executable file that was compiled from C or C++ code with debugging information ...
1
vote
0answers
71 views
Change ELF Endian Data Format
I am trying to edit some software to work with both Big and Little Endian ELF/DWARF files. In order to this, I think it would be a good idea to have both a Little and Big ELF file of the same data. I ...