[SCM] qtdeclarative packaging branch, experimental, updated. debian/5.9.1-1-2-gd1579c6
Dmitry Shachnev
mitya57 at moszumanska.debian.org
Wed Jul 5 15:24:43 UTC 2017
Gitweb-URL: http://git.debian.org/?p=pkg-kde/qt/qtdeclarative.git;a=commitdiff;h=d1579c6
The following commit has been merged in the experimental branch:
commit d1579c6d5064ad1fea39251b5ac4dc8dffc8351f
Author: Dmitry Shachnev <mitya57 at gmail.com>
Date: Wed Jul 5 18:24:28 2017 +0300
Add a patch to enable JIT only on mipsel, not on mips and mips64el.
---
debian/changelog | 2 ++
debian/patches/jit_only_mipsel.diff | 16 ++++++++++++++++
debian/patches/series | 1 +
3 files changed, 19 insertions(+)
diff --git a/debian/changelog b/debian/changelog
index bc89aa3..bbc684d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,7 @@
qtdeclarative-opensource-src (5.9.1-2) UNRELEASED; urgency=medium
+ [ Dmitry Shachnev ]
+ * Add a patch to enable JIT only on mipsel, not on mips and mips64el.
-- Debian Qt/KDE Maintainers <debian-qt-kde at lists.debian.org> Wed, 05 Jul 2017 18:12:01 +0300
diff --git a/debian/patches/jit_only_mipsel.diff b/debian/patches/jit_only_mipsel.diff
new file mode 100644
index 0000000..e13af35
--- /dev/null
+++ b/debian/patches/jit_only_mipsel.diff
@@ -0,0 +1,16 @@
+Description: of all MIPS architectures, JIT should be only enabled on mipsel
+Author: Dmitry Shachnev <mitya57 at debian.org>
+Forwarded: not-yet
+Last-Update: 2017-07-05
+
+--- a/src/qml/jsruntime/qv4global_p.h
++++ b/src/qml/jsruntime/qv4global_p.h
+@@ -107,7 +107,7 @@
+ # if defined(Q_OS_LINUX)
+ # define V4_ENABLE_JIT
+ # endif
+-#elif defined(Q_PROCESSOR_MIPS_32) && defined(Q_OS_LINUX)
++#elif defined(Q_PROCESSOR_MIPS_32) && defined(Q_OS_LINUX) && Q_BYTE_ORDER == Q_LITTLE_ENDIAN && _MIPS_SIM == _ABIO32
+ # define V4_ENABLE_JIT
+ #endif
+
diff --git a/debian/patches/series b/debian/patches/series
index 71cb1c0..62271e6 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -2,3 +2,4 @@
disableopengltests.patch
fix_test_remove_qlibraryinfo.patch
Do-not-make-lack-of-SSE2-support-on-x86-32-fatal.patch
+jit_only_mipsel.diff
--
qtdeclarative packaging
More information about the pkg-kde-commits
mailing list