What is wrong with my make file?

Android.mk

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)
LOCAL_MODULE    := foo
LOCAL_SRC_FILES := foo.c
LOCAL_EXPORT_LDLIBS := -llog
include $(BUILD_SHARED_LIBRARY)

foo.c

#include <string.h>
#include <jni.h>
#include <android/log.h>

#define  LOG_TAG    "foo"
#define  LOGI(...)  __android_log_print(ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__)

void test() {
    LOGI("test");
}

ndk-build

foo.c:9: undefined reference to `__android_log_print'
link|improve this question

67% accept rate
feedback

2 Answers

up vote 9 down vote accepted

Try LOCAL_LDLIBS := -L$(SYSROOT)/usr/lib -llog

link|improve this answer
feedback

You need to add

LOCAL_LDLIBS := -llog

to Android.mk

link|improve this answer
yes, this is correct – radhoo Apr 3 at 12:31
feedback

Your Answer

 
or
required, but never shown

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