Use LTO by default

The mingw toolchains override this for now.
This commit is contained in:
Zachary Michaels
2014-09-15 22:36:58 +02:00
committed by Riccardo Spagni
parent 59c1ac503f
commit ed41ee4c26
3 changed files with 6 additions and 1 deletions
+4 -1
View File
@@ -119,7 +119,10 @@ else()
set(RELEASE_FLAGS "-Ofast -DNDEBUG -Wno-unused-variable")
set(USE_LTO false CACHE BOOL "Use Link-Time Optimization (Release mode only)")
if(NOT DEFINED USE_LTO_DEFAULT)
set(USE_LTO_DEFAULT true)
endif()
set(USE_LTO ${USE_LTO_DEFAULT} CACHE BOOL "Use Link-Time Optimization (Release mode only)")
if(USE_LTO)
# There is a clang bug that does not allow to compile code that uses AES-NI intrinsics if -flto is enabled
set(RELEASE_FLAGS "${RELEASE_FLAGS} -flto")