Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
proper check for the -std=gnu++11 standard, and take in on clang too
authorMartin Quinson <martin.quinson@loria.fr>
Sat, 25 Jul 2015 08:40:43 +0000 (10:40 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Sat, 25 Jul 2015 08:40:47 +0000 (10:40 +0200)
Kill some old code pretending that we support Visual C or Borland
compilers.

CMakeLists.txt
buildtools/Cmake/Flags.cmake

index 9f85a08..f8fc182 100644 (file)
@@ -10,7 +10,7 @@ enable_language(CXX)
 INCLUDE(CheckCCompilerFlag)
 CHECK_C_COMPILER_FLAG(-fstack-cleaner HAVE_C_STACK_CLEANER)
 
-if (APPLE) #MAC
+if (APPLE)
   set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
   set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
 endif()
index 09753b0..6df76eb 100644 (file)
@@ -1,34 +1,33 @@
 set(warnCFLAGS "")
 set(optCFLAGS "")
 
+##
+## Request full debugging flags
+##
+set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99 -g3")
+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g3")
+set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g")
+
+##
+## We need a decent support of the c++11 standard
+##
 include(CheckCXXCompilerFlag)
-
+CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
+if(COMPILER_SUPPORTS_CXX11)
+  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
+else()
+  message(FATAL_ERROR 
+          "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. "
+         "Please use a decent C++ compiler.")
+endif()
 if (CMAKE_COMPILER_IS_GNUCC)
   if (COMPILER_C_VERSION_MAJOR_MINOR STRLESS "4.7")
-    message(FATAL_ERROR "SimGrid needs g++ version 4.7 to compile.")
-  endif()
-endif()
-
-if(NOT __VISUALC__ AND NOT __BORLANDC__)
-  CHECK_CXX_COMPILER_FLAG("-std=gnu++11" HAVE_CXX11)
-  CHECK_CXX_COMPILER_FLAG("-std=gnu++0x" HAVE_CXX0X)
-  if(HAVE_CXX11)
-    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11")
-  elseif(HAVE_CXX0X)
-    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++0x")
-  else()
-    message(FATAL_ERROR "Missing support for C++11.")
+    message(FATAL_ERROR
+            "SimGrid needs g++ version 4.7 to compile "
+           "(c++11 support of previous versions is too limited).")
   endif()
 endif()
 
-if(NOT __VISUALC__ AND NOT __BORLANDC__)
-  set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99 -g3")
-  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g3")
-  set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g")
-else()
-  set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}/Zi")
-  set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}/Zi")
-endif()
 
 if(enable_compile_warnings)
   set(warnCFLAGS "-fno-common -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations -Wpointer-arith -Wchar-subscripts -Wcomment -Wformat -Wwrite-strings -Wno-unused-function -Wno-unused-parameter -Wno-strict-aliasing -Wno-format-nonliteral -Werror ")