Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

what is the equivalent of dumpstabs -s solaris command in linux?

Regards ven

share|improve this question

1 Answer

up vote 0 down vote accepted

I guess this should do the same:

objdump -g

Or maybe

readelf --debug-dump

for ELF files. You can give various options to that last command (see man readelf).

Edit: After reading the manual of objdump, I found the -G option to show the STABS (I guess this is what you want). The manual mentions the following:

This is only useful on systems (such as Solaris 2.0) in which ".stab" debugging symbol-table entries are carried in an ELF section.

So maybe what you want just isn't possible on Linux.

share|improve this answer
for objdump -g i am getting objdump -G a.out a.out: file format elf32-i386 – user424897 Aug 24 '10 at 10:55
it is(readelf --debug-dump ) not matching to dumpstabs -s – user424897 Aug 24 '10 at 11:47
@venkat: I guess you won't find a tool that will be 100% equivalent with dumpstabs but I think you should be able to get the information you want using the tools I mentioned. Read the man pages of those tools (especially about the options you can give to readelf --debug-dump). – Job Aug 24 '10 at 12:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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