remove LTO
This commit is contained in:
parent
7d69699d64
commit
d5f1633019
|
@ -14,21 +14,6 @@ if(NOT CMAKE_BUILD_TYPE)
|
||||||
set(CMAKE_BUILD_TYPE Release)
|
set(CMAKE_BUILD_TYPE Release)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (CMAKE_BUILD_TYPE STREQUAL Release)
|
|
||||||
option(ENABLE_LTO "Enable link-time optimization" ON)
|
|
||||||
else()
|
|
||||||
option(ENABLE_LTO "Enable link-time optimization" OFF)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
if(ENABLE_LTO)
|
|
||||||
add_compile_options(-O3 -flto)
|
|
||||||
set(CMAKE_AR "gcc-ar")
|
|
||||||
set(CMAKE_C_ARCHIVE_CREATE "<CMAKE_AR> qcs <TARGET> <LINK_FLAGS> <OBJECTS>")
|
|
||||||
set(CMAKE_C_ARCHIVE_FINISH true)
|
|
||||||
set(CMAKE_CXX_ARCHIVE_CREATE "<CMAKE_AR> qcs <TARGET> <LINK_FLAGS> <OBJECTS>")
|
|
||||||
set(CMAKE_CXX_ARCHIVE_FINISH true)
|
|
||||||
endif()
|
|
||||||
|
|
||||||
add_compile_options(-fno-pic)
|
add_compile_options(-fno-pic)
|
||||||
add_link_options(-no-pie)
|
add_link_options(-no-pie)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue