From 0f9913644a9fcd9a54db903c8aa56ab6314b5ceb Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 5 Feb 2018 17:18:29 +0000 Subject: Qt 5.9.4 unleashes hell, prevent upgrades --- .../files/qtdeclarative-5.4.2-disable-jit.patch | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 dev-qt/qtdeclarative/files/qtdeclarative-5.4.2-disable-jit.patch (limited to 'dev-qt/qtdeclarative/files/qtdeclarative-5.4.2-disable-jit.patch') diff --git a/dev-qt/qtdeclarative/files/qtdeclarative-5.4.2-disable-jit.patch b/dev-qt/qtdeclarative/files/qtdeclarative-5.4.2-disable-jit.patch new file mode 100644 index 00000000..7799ef71 --- /dev/null +++ b/dev-qt/qtdeclarative/files/qtdeclarative-5.4.2-disable-jit.patch @@ -0,0 +1,18 @@ +diff --git a/src/qml/jsruntime/qv4global_p.h b/src/qml/jsruntime/qv4global_p.h +index 4b08194..224ddb1 100644 +--- a/src/qml/jsruntime/qv4global_p.h ++++ b/src/qml/jsruntime/qv4global_p.h +@@ -96,8 +96,13 @@ inline double trunc(double d) { return d > 0 ? floor(d) : ceil(d); } + # undef V4_ENABLE_JIT + #endif + #endif + ++// Gentoo note: disable the JIT due to USE="-jit" ++#ifdef V4_ENABLE_JIT ++#undef V4_ENABLE_JIT ++#endif ++ + // Do certain things depending on whether the JIT is enabled or disabled + + #ifdef V4_ENABLE_JIT + #define ENABLE_YARR_JIT 1 -- cgit v1.2.3