From: Martin Quinson Date: Wed, 29 Jul 2015 08:46:57 +0000 (+0200) Subject: disable lto for gcc 4.8 too X-Git-Tag: v3_12~340 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/7415b33104fb8d0ff748b4f43a3a7d0ac98c2893 disable lto for gcc 4.8 too --- diff --git a/buildtools/Cmake/Flags.cmake b/buildtools/Cmake/Flags.cmake index 8072d1db3d..a11db3dbf2 100644 --- a/buildtools/Cmake/Flags.cmake +++ b/buildtools/Cmake/Flags.cmake @@ -35,9 +35,12 @@ if(enable_compile_optimizations) if(CMAKE_COMPILER_IS_GNUCC AND (NOT enable_model-checking)) set(optCFLAGS "${optCFLAGS} -finline-functions ") if(WIN32) - if (COMPILER_C_VERSION_MAJOR_MINOR STRGREATER "4.7") + if (COMPILER_C_VERSION_MAJOR_MINOR STRGREATER "4.8") # On windows, we need 4.8 or higher to enable lto because of http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50293 - set(optCFLAGS "${optCFLAGS} -flto ") + # + # We are experiencing assertion failures even with 4.8 on MinGW. + # Push the support forward: will see if 4.9 works when we test it. + set(optCFLAGS "${optCFLAGS} -flto ") endif() else() # On non-windows, 4.6 is enough for that