当我尝试在我的Android NDK项目中包含任何类似矢量的C ++类时(使用最新的NDK r5b),我收到如下错误...
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干净,删除了obj和libs文件夹,仍然在我编译它时找不到矢量类。我已经在这个问题上工作了好几个星期(自从NDK r5问世以来),如果有人有任何建议,我会非常感激。谢谢!
答案 0 :(得分:119)
有可能。这是一步一步:
在 $ 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
。
答案 1 :(得分:20)
如果您正在使用Android工作室并且仍然看到消息&#34;错误:向量:没有这样的文件或目录&#34; (或其他与stl相关的错误)当您使用ndk进行编译时,这可能会对您有所帮助。
在您的项目中,打开模块的build.gradle文件(不是您的项目的build.grade,而是您的模块的文件)并添加&#39; stl&#34; stlport_shared&#34;&#39;在defaultConfig中的ndk元素中。
例如:
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.domain.app"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
ndk {
moduleName "myModuleName"
stl "stlport_shared"
}
}
}
答案 2 :(得分:9)
我使用的是Android Studio,截至2016年1月19日,这对我来说很有用。 (这似乎每年都会发生变化)
转到:app - &gt; Gradle Scripts - &gt; build.gradle(模块:app)
然后在模型{... android.ndk {...并添加一行:stl =&#34; gnustl_shared&#34;
像这样:
model {
...
android.ndk {
moduleName = "gl2jni"
cppFlags.add("-Werror")
ldLibs.addAll(["log", "GLESv2"])
stl = "gnustl_shared" // <-- this is the line that I added
}
...
}
答案 3 :(得分:4)
让我添加一点Sebastian Roth's answer.
添加Sebastian发布的代码后,可以在命令行中使用ndk-build
编译项目。但就我而言,Eclipse中存在语法错误,而且我没有完成代码。
请注意,您的项目必须转换为C / C ++项目。
How to convert a C/C++ project
要解决此问题,请右键单击您的项目,然后单击属性
选择 C / C ++一般 - &gt; 路径和符号并包含${ANDROID_NDK}/sources/cxx-stl/stlport/stlport
到包含目录
出现对话框时,点击是。
<强>之前强>
<强>后强>
更新#1
GNU C。添加目录,重建。 C 源文件中不会出现任何错误 GNU C ++。添加目录,重建。 CPP 源文件中不会出现任何错误。
答案 4 :(得分:4)
即使Sebastian在3年前给出了一个很好的答案,我仍然希望在这里分享一个新的经验,以防你在新的ndk版本中遇到与我相同的问题。
我有编译错误,例如:
fatal error: map: No such file or directory
fatal error: vector: No such file or directory
我的环境是android-ndk-r9d和adt-bundle-linux-x86_64-20140702。 我将Application.mk文件添加到同一个jni文件夹中并插入一行(且只有一行):
APP_STL := stlport_static
但不幸的是,它并没有解决我的问题! 我必须将这3行添加到Android.mk中才能解决它:
ifndef NDK_ROOT
include external/stlport/libstlport.mk
endif
我看到了here的一个很好的分享,上面写着&#34;&#39; stlport_shared&#39;是首选&#34;。因此,使用stlport作为共享库而不是静态库可能是更好的解决方案。只需将以下行添加到Android.mk中,然后无需添加文件Application.mk。
ifndef NDK_ROOT
include external/stlport/libstlport.mk
endif
LOCAL_SHARED_LIBRARIES += libstlport
希望这有用。
答案 5 :(得分:3)
如果您使用的是ndk r10c或更高版本,只需将APP_STL = c ++ _ static添加到Application.mk
答案 6 :(得分:0)
在android NDK中去 android-ndk-r9b&gt; / sources / cxx-stl / gnu-libstdc ++ / 4.X /包含在linux机器中
我从以下链接找到了解决方案 http://osdir.com/ml/android-ndk/2011-09/msg00336.html
答案 7 :(得分:0)
这是导致我的问题(CMakeLists.txt
)的原因:
set (CMAKE_CXX_FLAGS "...some flags...")
它使所有先前定义的包含目录不可见。 删除/重构此行后,一切正常。
答案 8 :(得分:0)