1
0

Accepting request 766529 from home:Vogtinator:qt5.14

- Only force-enable the QML JIT for 32-bit x86

Checked locally, is still auto-enabled for x86_64

OBS-URL: https://build.opensuse.org/request/show/766529
OBS-URL: https://build.opensuse.org/package/show/KDE:Qt:5.14/libqt5-qtdeclarative?expand=0&rev=8
This commit is contained in:
Luca Beltrame 2020-01-23 10:53:07 +00:00 committed by Git OBS Bridge
parent 59bdd28c86
commit ce0b3a03ad
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Jan 23 09:45:26 UTC 2020 - Fabian Vogt <fabian@ritter-vogt.de>
- Only force-enable the QML JIT for 32-bit x86
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Dec 16 09:53:10 UTC 2019 - Christophe Giboudeaux <christophe@krop.fr> Mon Dec 16 09:53:10 UTC 2019 - Christophe Giboudeaux <christophe@krop.fr>

View File

@ -143,7 +143,12 @@ mkdir .git
mkdir -p %{_target_platform} mkdir -p %{_target_platform}
pushd %{_target_platform} pushd %{_target_platform}
# Force-enable the JIT for 32-bit x86
%ifarch %{ix86}
qmake-qt5 .. -- -qml-jit qmake-qt5 .. -- -qml-jit
%else
qmake-qt5 ..
%endif
popd popd
make %{?_smp_mflags} VERBOSE=1 -C %{_target_platform} make %{?_smp_mflags} VERBOSE=1 -C %{_target_platform}