I have an elf object file I want to know which type of debugging info it contains. It was compiled with diab compiler (c source) for architecture ppc. I'm pretty sure it was built with debugging symbols.
I have tried extracting the debugging info with dwarfdump but I doesn't work so I guess the debugging information is not of type DWARF.
$ dwarfdump file.elf
No DWARF information present in file.elf
Using objdump to show debugging information comes up empty.
$ objdump -g file.elf
file.elf: file format elf32-powerpc
Can it be this elf file does not contain debugging info even though the elf file has sections called .debug_sfnames, .debug_srcinfo and .debug.srcinfo or is the debugging info stored in a format objdump can't handle ?