Issue
I have an Android SO library with STABS debug info, as opposed to DWARF. I'd like to get the call frame information from it, similar to what ...-readelf --debug-dump=frames-interp
outputs.
With most NDK built libraries, readelf
does the trick, but not with this one.
Is frame info even supported in STABS? If so, what kind of executable file parser can get it out?
Addr2line
has no trouble with that file.
Solution
what kind of executable file parser can get it out?
objdump -G
should do the trick.
Answered By - Employed Russian
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.