Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
strdup is not part of ansi standards, and msys compiler honor the strict paranoid...
authorMartin Quinson <martin.quinson@loria.fr>
Tue, 28 Jul 2015 11:28:28 +0000 (13:28 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Tue, 28 Jul 2015 11:28:28 +0000 (13:28 +0200)
CMakeLists.txt

index b1deaac..d874f67 100644 (file)
@@ -30,9 +30,9 @@ endif()
 
 ## We need a decent support of the c++11 standard
 include(CheckCXXCompilerFlag)
 
 ## 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=gnu++11" COMPILER_SUPPORTS_CXX11)
 if(COMPILER_SUPPORTS_CXX11)
 if(COMPILER_SUPPORTS_CXX11)
-  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
+  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11")
 else() 
   message(FATAL_ERROR 
           "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. "
 else() 
   message(FATAL_ERROR 
           "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. "