I found these defs macros, but apart from that I can not say.
#include <android/log.h> #define LOGV(...) __android_log_print(ANDROID_LOG_VERBOSE, "libnav", __VA_ARGS__) #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG , "libnav", __VA_ARGS__) #define LOGI(...) __android_log_print(ANDROID_LOG_INFO , "libnav", __VA_ARGS__) #define LOGW(...) __android_log_print(ANDROID_LOG_WARN , "libnav", __VA_ARGS__) #define LOGE(...) __android_log_print(ANDROID_LOG_ERROR , "libnav", __VA_ARGS__) #endif // ANDROID_ALOG_H
UPDATE
Apparently you can use DDD either as a plugin for eclipse, like on Code Maemo
or run under Cygwin, you will find useful links in Debugging Android NDK under windows
In addition, there are some very useful plugins.
CDT plugin for eclipse
Sequoya Plugin
Installation and configuration of the stack is described in detail in How to debug native code with Android
source share