summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Shachnev <mitya57@gmail.com>2017-09-16 11:28:00 +0300
committerDmitry Shachnev <mitya57@gmail.com>2017-09-16 11:28:00 +0300
commitbb3c1b4cd674400d63df7045af547e06e7a8252d (patch)
tree0496c186d5570d5153d6788ed1b172da515a74aa
parent403e155a4b9d5814e083c7e5e3a3709a458826da (diff)
downloadqt5webkit-bb3c1b4cd674400d63df7045af547e06e7a8252d.tar.gz
Disable JIT on sh4, it is broken and support was removed upstream.
See https://bugs.webkit.org/show_bug.cgi?id=166640.
-rw-r--r--debian/changelog1
-rwxr-xr-xdebian/rules2
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 5b1a518..262ccb4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ qtwebkit-opensource-src (5.212.0~alpha2-2) UNRELEASED; urgency=medium
[ Dmitry Shachnev ]
* Add -DNDEBUG to CPPFLAGS to disable debug output.
* Use -g1 on less powerful architectures instead of no debug at all.
+ * Disable JIT on sh4, it is broken and support was removed upstream.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 13 Sep 2017 18:44:14 +0300
diff --git a/debian/rules b/debian/rules
index 58a1b61..53e71da 100755
--- a/debian/rules
+++ b/debian/rules
@@ -18,7 +18,7 @@ ifeq (,$(filter $(DEB_HOST_ARCH_CPU),ppc64 ppc64el s390x))
endif
# JIT is only supported on x86 / armhf / aarch64 / mips32
-ifeq (,$(filter $(DEB_HOST_ARCH_CPU),amd64 arm64 armhf i386 mips mipsel sh4))
+ifeq (,$(filter $(DEB_HOST_ARCH_CPU),amd64 arm64 armhf i386 mips mipsel))
EXTRA_CMAKE_ARGUMENTS += -DENABLE_JIT=OFF
endif