I've downloaded the Android Tree and succeeded to compile an run it on a device. After that, I added some C++ files and I got error like: no such file or directory. I tried to add the libstlport_static but that did not work for me, I think I haven't implemented it in the right way.
I hope you could help me with that. Thanks!
Makefile (from comment)
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SHARED_LIBRARIES := libstlport
include external/stlport/libstlport.mk
include $(LOCAL_PATH)/sources.mk
LOCAL_MODULE := myLib
LOCAL_CLFAGS := -std=c99 -DHAVE_CONFIG_H=1
LOCAL_EXPORT_CFLAGS := -DHAVE_CONFIG_H=1
include $(BUILD_SHARED_LIBRARY)