From 7415b33104fb8d0ff748b4f43a3a7d0ac98c2893 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Wed, 29 Jul 2015 10:46:57 +0200 Subject: [PATCH] disable lto for gcc 4.8 too --- buildtools/Cmake/Flags.cmake | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 -- 2.20.1