this file requires compiler and library support for the iso c++ 2011 standard 解决方法

若是在ubuntu中直接编译的话 将g++ 直接换成下面的编译语句

g++ -std=c++11 your_file.cpp -o main

当使用CMAKE编译工程时,出现这个错误,解决办法: 
在工程主目录的CMakeLists.txt中添加如下,可以编译成功:

SET( CMAKE_CXX_FLAGS "-std=c++11 -O3")

你可能感兴趣的:(this file requires compiler and library support for the iso c++ 2011 standard 解决方法)