I have 3 static libraries. I am trying to link them with a shared library, but am getting a whole load of of undefined refrences. It is probably important to mention the static libraries also dhave dependancies.
Here is an example of what I am trying to do
##### STATIC #####
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := A
LOCAL_SRC_FILES := libA.a
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/A/include
LOCAL_STATIC_LIBRARIES := C B
include $(PREBUILT_STATIC_LIBRARY)
include $(CLEAR_VARS)
LOCAL_MODULE := B
LOCAL_SRC_FILES := libB.a
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/B/Include
LOCAL_STATIC_LIBRARIES := C
include $(PREBUILT_STATIC_LIBRARY)
include $(CLEAR_VARS)
LOCAL_MODULE := C
LOCAL_SRC_FILES := libC.a
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH)/C/Include
include $(PREBUILT_STATIC_LIBRARY)
##### SHARED #####
include $(CLEAR_VARS)
LOCAL_MODULE := D
LOCAL_SRC_FILES += d.cpp
LOCAL_C_INCLUDES := $(LOCAL_PATH)/D/Include
LOCAL_C_INCLUDES += $(LOCAL_PATH)/A/Include
LOCAL_C_INCLUDES += $(LOCAL_PATH)/B/Include
LOCAL_C_INCLUDES += $(LOCAL_PATH)/C/Include
LOCAL_STATIC_LIBRARIES := A B C
include $(BUILD_SHARED_LIBRARY)
When I try and build, I'm getting literally tons of undefined refrences. If anyone has any ideas it would be greatly appreciated, i'm pulling my hair out!
C B A, or useLOCAL_WHOLE_STATIC_LIBRARIES– ognian Mar 31 '11 at 17:09