Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
For now model checking can not be compile with flto.
authornavarro <navarro@caraja.(none)>
Fri, 15 Jun 2012 08:55:03 +0000 (10:55 +0200)
committernavarro <navarro@caraja.(none)>
Fri, 15 Jun 2012 08:55:03 +0000 (10:55 +0200)
buildtools/Cmake/Flags.cmake

index a17b015..a8cfb32 100644 (file)
@@ -70,3 +70,7 @@ if(NOT $ENV{LDFLAGS} STREQUAL "")
     message(STATUS "Add LDFLAGS: \"$ENV{LDFLAGS}\" to CMAKE_C_LINK_FLAGS")
     set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} $ENV{LDFLAGS}")
 endif(NOT $ENV{LDFLAGS} STREQUAL "")
     message(STATUS "Add LDFLAGS: \"$ENV{LDFLAGS}\" to CMAKE_C_LINK_FLAGS")
     set(CMAKE_C_LINK_FLAGS "${CMAKE_C_LINK_FLAGS} $ENV{LDFLAGS}")
 endif(NOT $ENV{LDFLAGS} STREQUAL "")
+
+if(enable_model-checking AND enable_compile_optimizations)
+    message(FATAL_ERROR "Sorry for now GCC optimizations does not work with model checking.\nPlease turn off optimizations with command:\ncmake -Denable_compile_optimizations=off. ")
+endif(enable_model-checking AND enable_compile_optimizations)