我正在尝试在我的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中启用此选项?
答案 0 :(得分:13)
将“-std = c ++ 11”添加到CFLAGS
中的Android.mk
:
LOCAL_CFLAGS += -std=c++11