From 7d43f9dace6a76dee1abdb90c9d239e82e0730bf Mon Sep 17 00:00:00 2001 From: Vitaly Zaitsev Date: Sun, 31 Mar 2019 19:30:30 +0200 Subject: [PATCH] Enabled IPO optimizations for official RPM package. Fixed small mistake in README.md file. --- README.md | 2 +- kepka.spec | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4fdf33d9d..7188dd3c1 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ This is the complete source code and the build instructions for the Kepka's alph - remove some Qt and custom types in favor of using C++ Standard Library types and classes; - clang-format; - fix almost all warnings; - - optional inter-procedural optimizations on \*nix (enabled using CMake's `-DENABLE_IPO:BOOL=ON` flag; improves performance but could degrade compile times); + - optional inter-procedural optimizations on \*nix (can be enabled by forwarding CMake's `-DENABLE_IPO:BOOL=ON` flag; improves performance but could significantly increase compilation times); * Ability to toggle "typographical" replaces (like replace << to « and another); * Packages for Fedora and Arch Linux (packages for Debian and Ubuntu will be done soon); * UI based on 1.1.21 before UI "mobilization" which degrades UX (e.g. group settings will be accessible from 5 clicks); diff --git a/kepka.spec b/kepka.spec index 6b7f270d6..dfa8a1c83 100644 --- a/kepka.spec +++ b/kepka.spec @@ -1,5 +1,6 @@ -# Allow to use Clang compiler... +# Setting some build conditions... %global clang 0 +%global ipo 1 # Applying workaround to RHBZ#1559007... %if 0%{?clang} @@ -81,7 +82,13 @@ export CXX=clang++ # Configuring application... pushd %{_target_platform} - %cmake -G Ninja -DPACKAGED_BUILD=1 -DCMAKE_BUILD_TYPE=Release .. + %cmake -G Ninja \ + -DPACKAGED_BUILD:BOOL=ON \ +%if 0%{?ipo} + -DENABLE_IPO:BOOL=ON \ +%endif + -DCMAKE_BUILD_TYPE=Release \ + .. popd # Building application...