From: Gabriel Corona Date: Mon, 27 Jul 2015 10:21:46 +0000 (+0200) Subject: Revert "[cmake] Use -std=c++0x if -std=c++11 is not available" X-Git-Tag: v3_12~379 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/3219cfd2e43b93e0646b50d71143066a6cbbe1a5 Revert "[cmake] Use -std=c++0x if -std=c++11 is not available" This reverts commit adab702a13b6d64bd50ce0e3db7aa6a8574459d5. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 64b80175ae..abfa14c7df 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,11 +31,8 @@ endif() ## We need a decent support of the c++11 standard include(CheckCXXCompilerFlag) CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11) -CHECK_CXX_COMPILER_FLAG("-std=c++0x" COMPILER_SUPPORTS_CXX0X) if(COMPILER_SUPPORTS_CXX11) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") -elseif(COMPILER_SUPPORTS_CXX0X) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x") else() message(FATAL_ERROR "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. "