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

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?

share|improve this question

1 Answer

That's because the shared_ptr.hpp is a header library. It is basically a template so when you write:

boost::shared_ptr<YourClass> yourPtr;

the compiler generates the shared_ptr code adapted to the class "YourClass" for the first time. As the final code depends on which class you use there is no binary library.

As most of the boost libraries are templates and therefore headers libraries you don't need to do anything special in android to use them apart of include them. In their documentation page they indicate which libraries are header only.

share|improve this answer
I understand it's header only library but in that case, I expected it to link to nothing at all. But LOCAL_STATIC_LIBRARIES of any arbitrary library in boost was needed to compile my code. That led to my question. Thanks for your answer. – Paul Jan 16 '12 at 15:58

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.