diff options
author | Dmitry Shachnev <mitya57@gmail.com> | 2017-11-11 13:20:56 +0300 |
---|---|---|
committer | Dmitry Shachnev <mitya57@gmail.com> | 2017-11-11 13:20:56 +0300 |
commit | eac2436a5b33f28c2e60131655651094fe8de517 (patch) | |
tree | 9c81bcd10f0aa9b05e81c73a222dc7de079aead1 | |
parent | 067398240a710bfb12420283f486903ec64badd6 (diff) | |
download | qt5webkit-eac2436a5b33f28c2e60131655651094fe8de517.tar.gz |
Fix for the previous commit: make sure JIT is enabled on Hurd and kFreeBSD.
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index cf46c09..b3afa15 100755 --- a/debian/rules +++ b/debian/rules @@ -21,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),amd64 arm64 armhf i386 mips mipsel)) +ifeq (,$(filter $(DEB_HOST_ARCH),amd64 arm64 armhf hurd-i386 i386 kfreebsd-amd64 kfreebsd-i386 mips mipsel)) EXTRA_CMAKE_ARGUMENTS += -DENABLE_JIT=OFF endif |