diff options
Diffstat (limited to 'community/qt5-qtdeclarative/disable-mips-jit.patch')
-rw-r--r-- | community/qt5-qtdeclarative/disable-mips-jit.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/qt5-qtdeclarative/disable-mips-jit.patch b/community/qt5-qtdeclarative/disable-mips-jit.patch new file mode 100644 index 0000000000..445d400a82 --- /dev/null +++ b/community/qt5-qtdeclarative/disable-mips-jit.patch @@ -0,0 +1,22 @@ +--- a/src/qml/jit/qv4targetplatform_p.h ++++ b/src/qml/jit/qv4targetplatform_p.h +@@ -604,7 +604,7 @@ + }; + #endif // ARM64 + +-#if defined(Q_PROCESSOR_MIPS_32) && defined(Q_OS_LINUX) ++#if defined(Q_PROCESSOR_MIPS_32) && defined(Q_OS_LINUX) && 0 + template <> + class TargetPlatform<JSC::MacroAssemblerMIPS, NoOperatingSystemSpecialization> + { +--- a/src/qml/jsruntime/qv4global_p.h ++++ b/src/qml/jsruntime/qv4global_p.h +@@ -107,7 +107,7 @@ + # if defined(Q_OS_LINUX) || defined(Q_OS_QNX) + # define V4_ENABLE_JIT + # endif +-#elif defined(Q_PROCESSOR_MIPS_32) && defined(Q_OS_LINUX) ++#elif defined(Q_PROCESSOR_MIPS_32) && defined(Q_OS_LINUX) && 0 + # define V4_ENABLE_JIT + #endif + |