1
While trying to execute a program based on C++ in android via NDK platform, the compilation is giving error that 'iostream' and 'vector' header files are not found, as I have included both of them in my C++ code.
M using android-ndk-r5b and compiling it with Cygwin.
I have seen most of the header files (even iostream & vector) in the folder **root\android-ndk-r5b\sources\cxx-stl\gnu-libstdc++\include\** but dont know why its still showing the error.
I have to fetch some header files(*.h) and some cpp files also for my program, also guide me where to place the header files & how to mention them in make file.
My android make file is:

**ANDROID.MK**

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE    := NDK1
FILE_LIST := $(wildcard $(LOCAL_PATH)/*.cpp) 
LOCAL_SRC_FILES := $(FILE_LIST:$(LOCAL_PATH)/%=%) 
APP_STL := gnustl_static
APP_STL := stlport_static

include $(BUILD_SHARED_LIBRARY)

検索しましたが、この android.mk でヘッダー ファイルを指定する方法のコマンドが見つかりませんでした。前もって感謝します。

4

1 に答える 1

2

APP_STLディレクティブはApplication.mkファイルに入れる必要があります。

ドキュメントをより注意深く読んでください(docs / CPLUSPLUS-SUPPORT.htmlファイル内):

ただし、変数APP_STLをApplication.mk内の別の値に設定することで、別の実装を選択できます。次に例を示します。

APP_STL:= stlport_static

于 2012-05-28T19:57:05.317 に答える