Android NDK:错误:必须使用-std = c ++ 11或-std = gnu ++ 11编译器选项启用

时间:2012-12-23 20:58:42

标签: android android-ndk

我正在尝试在我的Android应用程序中使用一个大的c ++库。我正在使用eclipse与android ndk插件。当我运行它时,我收到此错误消息;

This file requires compiler and library support for the ISO C++ 2011 standard.This
support is currently experimental, and must be enabled with the -std=c++11 or
-std=gnu++11 compiler  options.

我该怎么办?如何在eclipse中启用此选项?

1 个答案:

答案 0 :(得分:13)

将“-std = c ++ 11”添加到CFLAGS中的Android.mk

LOCAL_CFLAGS += -std=c++11