X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7a8cd62135619ad52e05ae1c929ef07e166e4260..100710ba458751657e86b02075014c46969eaa36:/buildtools/Cmake/Flags.cmake diff --git a/buildtools/Cmake/Flags.cmake b/buildtools/Cmake/Flags.cmake index e8e8401f00..be0a919e25 100644 --- a/buildtools/Cmake/Flags.cmake +++ b/buildtools/Cmake/Flags.cmake @@ -19,6 +19,8 @@ if(enable_compile_warnings) endif() set(CMAKE_Fortran_FLAGS "-Wall") # FIXME: Q&D hack + + set(CMAKE_JAVA_COMPILE_FLAGS "-Xlint") endif() if(enable_compile_optimizations) @@ -35,6 +37,12 @@ if(APPLE AND COMPILER_C_VERSION_MAJOR_MINOR MATCHES "4.6") set(optCFLAGS "-O0 ") endif() +if(WIN32) # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50293 + if (COMPILER_C_VERSION_MAJOR_MINOR MATCHES "4.7" OR + COMPILER_C_VERSION_MAJOR_MINOR MATCHES "4.6") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} --disable-lto") +endif() + if(NOT enable_debug) set(CMAKE_C_FLAGS "-DNDEBUG ${CMAKE_C_FLAGS}") endif() @@ -77,5 +85,5 @@ if(NOT $ENV{LDFLAGS} STREQUAL "") endif() if(enable_model-checking AND enable_compile_optimizations) - message(WARNING "Sorry for now GCC optimizations does not work with model checking.\nPlease turn off optimizations with command:\ncmake -Denable_compile_optimizations=off. ") + message(WARNING "Sorry for now GCC optimizations does not work with model checking.\nPlease turn off optimizations with command:\ncmake -Denable_compile_optimizations=off .") endif()