对“get_int()”的未定义引用
我正在尝试在 android 中构建共享库。这个库使用来自预建静态库“libATest.a”的函数我已经尝试了所有可以使用的方法。总是收到错误“未定义对 `get_int()' 的引用”,但我已经在 libAtest.a 中定义了它。寻求帮助! 安卓 ndk r8
安卓.mk:
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := ATest
LOCAL_SRC_FILES := libATest.a
include $(PREBUILT_STATIC_LIBRARY)
include $(CLEAR_VARS)
LOCAL_MODULE := capi
LOCAL_SRC_FILES := capi.cpp
LOCAL_STATIC_LIBRARIES := ATest
LOCAL_LDLIBS := -llog
#LOCAL_ALLOW_UNDEFINED_SYMBOLS := true
include $(BUILD_SHARED_LIBRARY)
测试.h:
int get_int();
应用程序.mk:
APP_MODULES :=capi
capi.cpp:
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include <jni.h>
#include <string.h>
#include <android/log.h>
#include "atest.h"
#ifdef __cplusplus
extern "C" {
#endif
jstring Java_com_wzh_test_AndriodJNITestActivity_ttstest(JNIEnv* env, jobject thiz){
get_int();
return env->NewStringUTF("I'm from C!");
}
#ifdef __cplusplus
}
#endif
libATest.a:
#include "atest.h"
int get_int(){
return 55;
}