diff options
author | StapleButter <thetotalworm@gmail.com> | 2020-05-19 14:41:11 +0200 |
---|---|---|
committer | StapleButter <thetotalworm@gmail.com> | 2020-05-19 14:41:11 +0200 |
commit | d5f1633019b3cd14d7f5e5fb7d7d193d6bfe67ea (patch) | |
tree | 70e3d9a131e797cfba478c12d11322902fd37ba7 | |
parent | 7d69699d648b93d76f14024705c4a86f5929ba3d (diff) |
remove LTO
-rw-r--r-- | CMakeLists.txt | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 488da81..ee021d9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,21 +14,6 @@ if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE Release) 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_link_options(-no-pie) |