]> git.lyx.org Git - features.git/commitdiff
Cmake build: Select use of interprocedural optimization
authorKornel Benko <kornel@lyx.org>
Tue, 17 Dec 2019 12:59:52 +0000 (13:59 +0100)
committerKornel Benko <kornel@lyx.org>
Tue, 17 Dec 2019 12:59:52 +0000 (13:59 +0100)
New cmake-option to explicit select/deselect the IPO

3rdparty/hunspell/CMakeLists.txt
3rdparty/libiconv/CMakeLists.txt
3rdparty/mythes/CMakeLists.txt
3rdparty/zlib/CMakeLists.txt
CMakeLists.txt

index 9921d6d88a3fa4ac46fad34e61e6e302ea51166d..90dae464f9498ad9f8fb798104fd095c78a7699f 100644 (file)
@@ -3,10 +3,9 @@ cmake_minimum_required(VERSION 3.1)
 
 set(LYX_IPO_SUPPORTED FALSE)
 if (POLICY CMP0069)
-  if (NOT LYX_DEBUG)
-    cmake_policy(SET CMP0069 NEW)
-    include(CheckIPOSupported)
-    check_ipo_supported(RESULT LYX_IPO_SUPPORTED)
+  cmake_policy(SET CMP0069 NEW)
+  if (LYX_USE_IPO MATCHES "ON")
+    set(LYX_IPO_SUPPORTED YES)
   endif()
 endif()
 
index 6261b3cb30fe940a86fc991ddfe20c75b4cf7404..39beb96fbf66bed6be220d51f89f5209a5aca07b 100644 (file)
@@ -9,10 +9,9 @@ cmake_minimum_required(VERSION 3.1)
 
 set(LYX_IPO_SUPPORTED FALSE)
 if (POLICY CMP0069)
-  if (NOT LYX_DEBUG)
-    cmake_policy(SET CMP0069 NEW)
-    include(CheckIPOSupported)
-    check_ipo_supported(RESULT LYX_IPO_SUPPORTED)
+  cmake_policy(SET CMP0069 NEW)
+  if (LYX_USE_IPO MATCHES "ON")
+    set(LYX_IPO_SUPPORTED YES)
   endif()
 endif()
 
index 1b224a9d4c303e3c8ea0196328a6a560fa42f79a..869bee7c93769987d3de546435a62011cedc5b57 100644 (file)
@@ -2,13 +2,13 @@ cmake_minimum_required(VERSION 3.1)
 
 set(LYX_IPO_SUPPORTED FALSE)
 if (POLICY CMP0069)
-  if (NOT LYX_DEBUG)
-    cmake_policy(SET CMP0069 NEW)
-    include(CheckIPOSupported)
-    check_ipo_supported(RESULT LYX_IPO_SUPPORTED)
+  cmake_policy(SET CMP0069 NEW)
+  if (LYX_USE_IPO MATCHES "ON")
+    set(LYX_IPO_SUPPORTED YES)
   endif()
 endif()
 
+
 set(VERSION "1.2.5")
 set(SRCDIR ${CMAKE_CURRENT_SOURCE_DIR}/${VERSION})
 
index b14776ef45d4dbb6591113360556866be0cb5063..9bc1d0dbee7c1dee2ad29e23400e0359a68c0176 100644 (file)
@@ -2,10 +2,9 @@ cmake_minimum_required(VERSION 3.1)
 
 set(LYX_IPO_SUPPORTED FALSE)
 if (POLICY CMP0069)
-  if (NOT LYX_DEBUG)
-    cmake_policy(SET CMP0069 NEW)
-    include(CheckIPOSupported)
-    check_ipo_supported(RESULT LYX_IPO_SUPPORTED)
+  cmake_policy(SET CMP0069 NEW)
+  if (LYX_USE_IPO MATCHES "ON")
+    set(LYX_IPO_SUPPORTED YES)
   endif()
 endif()
 
index ca9895dadd24267ef2fe1c0377005204d0502b04..fbcc460de7d4dd0dc40047dbd3444d7a44f1fcdc 100644 (file)
@@ -81,15 +81,6 @@ if(NOT help AND NOT HELP)
       message(FATAL_ERROR "Exiting")
     endif()
   endif()
-  # Enable LTO if supported and not debugging
-  set(LYX_IPO_SUPPORTED FALSE)
-  if (POLICY CMP0069)
-    if (NOT LYX_DEBUG)
-      cmake_policy(SET CMP0069 NEW)
-      include(CheckIPOSupported)
-      check_ipo_supported(RESULT LYX_IPO_SUPPORTED)
-    endif()
-  endif()
 endif()
 
 if(UNIX)
@@ -151,6 +142,7 @@ LYX_OPTION(ENABLE_KEYTESTS  "Enable for keytests" OFF ALL)
 LYX_OPTION(ASAN             "Use address sanitizer" OFF ALL)
 LYX_COMBO(USE_FILEDIALOG    "Use native or QT file dialog" QT NATIVE)
 LYX_COMBO(USE_QT            "Use Qt version as frontend" AUTO QT4 QT5)
+LYX_COMBO(USE_IPO           "Interprocedural optimization" OFF AUTO ON)
 #LYX_OPTION(3RDPARTY_BUILD   "Build 3rdparty libs" OFF ALL)
 LYX_OPTION(DISABLE_CALLSTACK_PRINTING "do not print a callstack when crashing" OFF ALL)
 LYX_OPTION(EXTERNAL_Z       "OFF := Build 3rdparty lib zlib" ON ALL)
@@ -250,8 +242,6 @@ if(LYX_DEPENDENCIES_DOWNLOAD)
        endforeach()
 endif()
 
-
-
 message(STATUS)
 
 set(EXECUTABLE_OUTPUT_PATH  ${TOP_BINARY_DIR}/bin)
@@ -261,6 +251,24 @@ else()
        set(LIBRARY_OUTPUT_PATH  ${TOP_BINARY_DIR}/lib)
 endif()
 
+set(LYX_IPO_SUPPORTED OFF)
+if (POLICY CMP0069)
+  cmake_policy(SET CMP0069 NEW)
+  if(LYX_USE_IPO MATCHES "AUTO")
+    # Enable LTO if supported and not debugging
+    if (NOT LYX_DEBUG)
+      include(CheckIPOSupported)
+      check_ipo_supported(RESULT LYX_IPO_SUPPORTED)
+    endif()
+  else()
+    set(LYX_IPO_SUPPORTED ${LYX_USE_IPO})
+  endif()
+endif()
+if (LYX_IPO_SUPPORTED)
+  set(LYX_USE_IPO "ON" CACHE STRING "Use interprocedural optimization" FORCE)
+else()
+  set(LYX_USE_IPO "OFF" CACHE STRING "Use interprocedural optimization" FORCE)
+endif()
 
 # Set to some meaningful default
 find_package(CXX11Compiler)