androidNDK出现错误 i

android应用中用到了C++数据库。然后本人用Eclipse中的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.

这怎么办?请高手指点帮忙正常运行。谢谢!

这个我知道怎么解决

android.mk文件中,添加"-std=c++11" 到CFLAGS

LOCAL_CFLAGS += -std=c++11