1. ホーム
  2. android

[解決済み] Android NDKでvectorのようなC++ヘッダをインクルードできない

2023-06-09 19:03:02

質問

Android NDK プロジェクト (最新の NDK r5b を使用) で vector などの C++ クラスをインクルードしようとすると、次のようなエラーが表示されます。

Compile++ thumb : test-libstl <= test-libstl.cpp /Users/nitrex88/Desktop/Programming/EclipseProjects/STLTest/jni/test-libstl.cpp:3:18: error: vector: No such file or directory

この問題をオンラインで報告した他の人々は、以下を追加することで成功したと主張しています。

APP_STL := stlport_static

を Application.mk ファイルに追加しました。これを実行し、APP_STL の他のすべての可能な値も試しました。プロジェクトをクリーンにして、NDK-build clean を実行し、obj と libs フォルダを削除しましたが、それでもコンパイル時にベクトル クラスを見つけることができません。NDK r5が出て以来)何週間もこの問題に取り組んでいますが、どなたかアドバイスがあれば本当に感謝します。ありがとうございます!

どのように解決するのですか?

可能です。ここでは、いくつかのステップバイステップを紹介します。

$PROJECT_DIR/jni/Application.mkにあります。 :

APP_STL                 := stlport_static

stlport_sharedを使ってみましたが、ダメでした。libstdc++ と同じです。

$PROJECT_DIR/jni/Android.mkにあります。 :

LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE    := hello-jni
LOCAL_SRC_FILES := hello-jni.cpp
LOCAL_LDLIBS    := -llog

include $(BUILD_SHARED_LIBRARY)

ここでは特に何もありませんが、ファイルが .cpp .

$PROJECT_DIR/jni/hello-jni.cppにあります。 :

#include <string.h>
#include <jni.h>
#include <android/log.h>

#include <iostream>
#include <vector>


#define  LOG_TAG    "hellojni"
#define  LOGI(...)  __android_log_print(ANDROID_LOG_INFO,LOG_TAG,__VA_ARGS__)
#define  LOGE(...)  __android_log_print(ANDROID_LOG_ERROR,LOG_TAG,__VA_ARGS__)


#ifdef __cplusplus
extern "C" {
#endif

// Comments omitted.    
void
Java_com_example_hellojni_HelloJni_stringFromJNI( JNIEnv* env,
                                                  jobject thiz )
{
    std::vector<std::string> vec;

    // Go ahead and do some stuff with this vector of strings now.
}

#ifdef __cplusplus
}
#endif

ここで唯一噛みついたのが#ifdef __cplusplusです。

ディレクトリに注意

コンパイルするには ndk-build clean && ndk-build .