Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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'
share|improve this question

2 Answers

up vote 23 down vote accepted

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

share|improve this answer
   
Worked for me :) – Kevin Jun 6 '12 at 20:05
What is the necessary to add this? Would you Please explain in detail? – Dhasneem Mar 7 at 12:40
its adding an android library to the make file - and it worked for me too – gheese Apr 24 at 15:08

You need to add

LOCAL_LDLIBS := -llog

to Android.mk

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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