I'm developing the native application that works with Android via the NDK. I need to call the backtrace() function when there is a crash. The problem is that there is no <execinfo.h> for the NDK.

Is there any other way to get that back trace?

link|improve this question

71% accept rate
you can try to use <unwind.h> and _Unwind_Backtrace() for C, but it don't work with C++ for me. – zxcat Nov 27 '11 at 21:06
feedback

2 Answers

up vote 3 down vote accepted
+100

backtrace() is a non-standard Glibc extension, and even then somewhat shaky on ARM (you need to have built everything with -funwind-tables, I think, and then have a somewhat new Glibc?)

As far as I know, this function is not included in the Bionic C library used by Android.

You could try pulling the source for Glibc backtrace into your project, and then rebuilding the interesting things with the unwind table, but it sounds like hard work to me.

If you have debug info, you could try launching GDB with a script that attaches to your process, and prints a backtrace that way, but I have no idea if GDB works on Android (although Android is basically Linux, so that much id fine, the installation details may be problematic?) You may get further by dumping core somehow (does Bionic support that?) and analysing it after-the-fact.

link|improve this answer
Thank you! -funwind-tables helped me. – zxcat Nov 30 '11 at 13:25
feedback

If you just want a few (eg 2 - 5) topmost call frames and if your GCC is recent enough, you might consider using some return address or frame address builtins.

(But I don't know much about Android, so I could be wrong)

link|improve this answer
Thanks, but unfortunately Android only supports level 0 and not higher. – givi Nov 13 '11 at 23:29
This probably means that Android does not keep back frame pointers, so you are stuck. (Or I am guessing wrong). – Basile Starynkevitch Nov 13 '11 at 23:30
Hope you are wrong :) – givi Nov 13 '11 at 23:33
feedback

Your Answer

 
or
required, but never shown

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