11

我正在尝试在我的 android 应用程序中使用一个大型 c++ 库。我正在使用带有 android ndk 插件的 eclipse。当我运行它时,我收到了这个错误信息;

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 中启用此选项?

4

1 回答 1

13

将“-std=c++11”添加到您CFLAGSAndroid.mk

LOCAL_CFLAGS += -std=c++11
于 2012-12-23T21:12:15.090 回答