Enabled LTO optimizations.

Closes #226.

Signed-off-by: Vitaly Zaitsev <vitaly@easycoding.org>
This commit is contained in:
Vitaly Zaitsev 2019-03-15 20:59:17 +01:00
parent 450409095a
commit 6ebbe5a2a9
1 changed files with 16 additions and 0 deletions

View File

@ -696,6 +696,22 @@ if (LINUX)
target_link_libraries(Kepka Qt5::DBus dl ${ALSA_LIBRARIES} ${PULSEAUDIO_LIBRARIES})
endif()
# Enable LTO optimizations...
include(CheckIPOSupported)
check_ipo_supported(RESULT ipo_result OUTPUT ipo_output)
if(ipo_result)
message(STATUS "IPO optimizations enabled.")
if(LINUX AND (CMAKE_CXX_COMPILER_ID MATCHES "GNU"))
set(CMAKE_AR "/usr/bin/gcc-ar")
set(CMAKE_RANLIB "/usr/bin/gcc-ranlib")
set(CMAKE_NM "/usr/bin/gcc-nm")
endif()
set_property(TARGET Kepka PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
else()
message(WARNING "IPO is not supported: ${ipo_output}")
endif()
##================================================
## Installlation
##================================================