summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Shachnev <mitya57@gmail.com>2017-11-08 17:20:42 +0300
committerDmitry Shachnev <mitya57@gmail.com>2017-11-10 12:54:57 +0300
commit067398240a710bfb12420283f486903ec64badd6 (patch)
tree52622c88c8b10764455d1080a03516ae32e8e323
parent6c494654b397a917f6574dde5083ced9dc0ad795 (diff)
downloadqt5webkit-067398240a710bfb12420283f486903ec64badd6.tar.gz
Make sure JIT is not enabled on x32.
References: #881055.
-rw-r--r--debian/changelog2
-rwxr-xr-xdebian/rules6
2 files changed, 4 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog
index e614e2f..a883b14 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,7 @@
qtwebkit-opensource-src (5.212.0~alpha2-6) UNRELEASED; urgency=medium
+ [ Dmitry Shachnev ]
+ * Make sure JIT is not enabled on x32.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 08 Nov 2017 17:14:28 +0300
diff --git a/debian/rules b/debian/rules
index acd2533..cf46c09 100755
--- a/debian/rules
+++ b/debian/rules
@@ -3,9 +3,7 @@
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
-DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU)
-DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
-DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
+include /usr/share/dpkg/architecture.mk
export DEB_CPPFLAGS_MAINT_APPEND = -DNDEBUG
@@ -23,7 +21,7 @@ ifneq (,$(filter $(DEB_HOST_ARCH_CPU),mips mipsel))
endif
# JIT is only supported on x86 / armhf / aarch64 / mips32
-ifeq (,$(filter $(DEB_HOST_ARCH_CPU),amd64 arm64 armhf i386 mips mipsel))
+ifeq (,$(filter $(DEB_HOST_ARCH),amd64 arm64 armhf i386 mips mipsel))
EXTRA_CMAKE_ARGUMENTS += -DENABLE_JIT=OFF
endif