In my JNI code, I am only using boost/share_ptr.h But I didn't know which library I should include and for place-holder to work with it later, I just added boost_date library in Android.mk like this.
LOCAL_PATH := $(call my-dir)
include $(call all-subdir-makefiles)
include $(CLEAR_VARS)
LOCAL_LDLIBS := -L$(SYSROOT)/usr/lib -llog -ldl
LOCAL_CFLAGS := -I$(LOCAL_PATH)/boost
LOCAL_MODULE := mathparser
LOCAL_SRC_FILES := main.cpp pmain.cpp
LOCAL_STATIC_LIBRARIES := boost_date
include $(BUILD_SHARED_LIBRARY)
$(call import-module,boost)
Surprisingly, it succeeded to compile and generate shared library. May I ask why it worked? Does this mean I can include any static library of Boost for shared_ptr?