summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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