I'm looking for a way to easily debug C code in an Android NDK application using Eclipse. I've read ways to debug the app using gdb or something similar but what I want is a way to push messages to Eclipse somehow.

I'm looking for a solution that's as simple as using a print function in C and seeing it in the DDMS Log or anything similar. Does anyone have any experience doing this?

link|improve this question

80% accept rate
feedback

4 Answers

up vote 9 down vote accepted

You can use the Android logging facilities:

#include <android/log.h>

#define APPNAME "MyApp"

__android_log_print(ANDROID_LOG_VERBOSE, APPNAME, "The value of 1 + 1 is %d", 1+1);

Make sure you also link against the logging library, in your Android.mk file:

  LOCAL_LDLIBS := -llog
link|improve this answer
hmm...can't get this way to work just yet. It's compiling fine and my test code works, though nothing in the log. Gonna keep playing with it. Thanks for the suggestion – wajiw Jan 7 '11 at 20:23
Okay, I got it working using your code. Had to get the jni to reload the library. Not sure why it was caching it. Thanks again! – wajiw Jan 7 '11 at 20:53
This isn't real debugging and isn't very helpful – Kevin Aug 26 '11 at 21:13
6  
Excuse me? The guy asked for a way to print messages that show up in the DDMS log, and this is exactly how you do that. Did you even read the question? – svdree Aug 26 '11 at 22:25
feedback

An alternative solution (using a debugger) is explained here:

How can I effectively debug C code that's wrapped with JNI in Eclipse? (Android Dev)

link|improve this answer
feedback

The easiest way is probably to redirect printf() statements to the system log (based on the "Viewing stdout and stderr" section of the official ADB reference manual.

Type these 3 commands on a command line:

adb shell stop
adb shell setprop log.redirect-stdio true
adb shell start

Then you can view the output of your "printf()" statements by looking at the "LogCat" window of Eclipse Debugger, or by typing this on a command line:

adb logcat

Just be aware that since the data is buffered before transferring from the emulator or device, you should definitely flush the stdout buffer, eg:

printf("Hello, I am %d years old!\n", 30);
fflush(stdout);

You should then see a log message starting with "I/stdout:"

link|improve this answer
Note that this solution breaks JUnit tests. See: stackoverflow.com/questions/3462850/… – Sebastian Krysmanski May 10 at 7:28
feedback

Your Answer

 
or
required, but never shown

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