vote up 4 vote down star

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.

flag

3 Answers

vote up 2 vote down check

You might find useful informations here:

link|flag
Thanks, I missed that other SO question, I guess because I wasn't searching for "DWARF". I'll update the title of this question. – Craig McQueen Jul 9 at 2:29
vote up 1 vote down

Your options for reading the DWARF debugging information are unfortunately quite limited.

As far as I know there is only one general purpose library for parsing DWARF debugging information and that is link text. Unfortunately no one has written Python bindings for libdwarf (maybe you could take it up upon yourself and share it with everyone else :) ) You could certainly attempt to access the library's functions using ctypes or the Python C API.

A much less elegant solution, however, is to use an existing DWARF parser and parse the textual information it outputs. Your options for this (on Linux) are

objdump -W
readelf --debug-dump=[OPTIONS]

I currently use a project that builds off of readelf and it's support for the DWARF debugging information is very full featured. You could simply use Python to execute either command in the shell and then parse the information as you need. Certainly not as ideal as a library, but should do the trick.

EDIT: I noticed in a previous comment you mentioned Windows. Both of these programs(objdump and readelf) are part of GNU-binutils, so they should be available with Cygwin or mingw.

link|flag
vote up 2 vote down

The concept of "ELF debug info" doesn't really exist: the ELF specification leaves the content of the .debug section deliberately unspecified.

Common debug formats are STAB and DWARF. A library to read DWARF is libdwarf.

link|flag
Yes, quite right. DWARF is what I'm interested in. – Craig McQueen Jul 9 at 2:28
I updated the question accordingly. – Craig McQueen Jul 9 at 2:31
Is libdwarf cross-platform, do you know? The page doesn't say, but seems to have an overall Unix flavour to it. – Craig McQueen Jul 14 at 7:59
I haven't tried porting it. It seems that it has some Unix specificisms in it (e.g. in the darfdump executable); it's also based on libelf. However, porting it to a different system should be straight-forward. – Martin v. Löwis Jul 14 at 12:11
I've done some minor work with libdwarf. It's dependencies outside of the C standard library is libelf, which is currently available for Windows. It should be a fairly (for some definition of "fairly") easy task to compile it for Windows in Cygwin. – Falaina Jul 14 at 23:13
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.