Enabled IPO optimizations for official RPM package.

Fixed small mistake in README.md file.
This commit is contained in:
Vitaly Zaitsev 2019-03-31 19:30:30 +02:00
parent e511b23a83
commit 7d43f9dace
2 changed files with 10 additions and 3 deletions

View File

@ -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);

View File

@ -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...