android编译环境用mmm编译,报错'string' does not name a type
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android编译环境用mmm编译,报错'string' does not name a type相关的知识,希望对你有一定的参考价值。
#include <string>
std::string xx;
此时报错string no such file or directory,修改成
#include <string.h>
std::string xx;
此时报错'string' does not name a type
问题已经解决:
#include <string>
下面用using namespace std;或者用string的时候加std::string
重点:在android.mk中添加
LOCAL_C_INCLUDES := \
external/stlport/stlport \
bionic \
LOCAL_STATIC_LIBRARIES := libstlport_static
搞定
以上是关于android编译环境用mmm编译,报错'string' does not name a type的主要内容,如果未能解决你的问题,请参考以下文章
错误记录Android Studio 编译报错 ( VirtualApp 编译 NDK 报错 | Error:A problem occurred configuring project ‘: )(代
错误记录Android Studio 编译报错 ( Could not determine java version from ‘11.0.8‘. ② | 升级 Gradle 版本 )