X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5e24d669301ee52c043d5833ebeb89f07d8b2799..73cbb3a156b37df3bf0caf3b992dde0d701eeeeb:/tools/cmake/GCCFlags.cmake?ds=sidebyside diff --git a/tools/cmake/GCCFlags.cmake b/tools/cmake/GCCFlags.cmake index 94aaffda7f..13db52578b 100644 --- a/tools/cmake/GCCFlags.cmake +++ b/tools/cmake/GCCFlags.cmake @@ -107,20 +107,20 @@ if(enable_lto) # User wants LTO. Try if we can do that endif() endif() if(enable_lto) - message("-- LTO seems usable.") + message(STATUS "LTO seems usable.") else() if(NOT enable_compile_optimizations) - message("-- LTO disabled: Compile-time optimizations turned off.") + message(STATUS "LTO disabled: Compile-time optimizations turned off.") else() if(enable_model-checking) - message("-- LTO disabled when compiling with model-checking.") + message(STATUS "LTO disabled when compiling with model-checking.") else() - message("-- LTO does not seem usable -- try updating your build chain.") + message(STATUS "LTO does not seem usable -- try updating your build chain.") endif() endif() endif() else() - message("-- LTO disabled on the command line.") + message(STATUS "LTO disabled on the command line.") endif() if(enable_lto) # User wants LTO, and it seems usable. Go for it set(optCFLAGS "${optCFLAGS} -flto ")