On Feb 12, 1:59 am, "[email protected]" <[email protected]> wrote: > I am looking for little more informations rather than Hex values. > Like the backtrace feature where the stack hex values is mapped to the > function names and function names are visible.
The device can't show these, because the symbols are stripped out of the libraries before they are installed on the device. They do exist in the build tree; since you're doing your own builds, you can find them in the appropriate "symbols" directory under "out/". Given that, you can use "arm-eabi-addr2line" to convert the symbols, or use gdb/gdbserver to do debugging directly on the device. Make sure you're using the "out" directory that corresponds to the binaries installed on the device. In any event, discussions about debugging native libraries might be more appropriate for android-porting or android-platform at this time. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

