[Buildroot] [git commit branch/2019.11.x] package/wpewebkit: disable JSC JIT for MIPSr6

Peter Korsgaard peter at korsgaard.com
Sat Mar 7 08:58:02 UTC 2020


commit: https://git.buildroot.net/buildroot/commit/?id=e7322176230723b4d32d76b9fc162f4b66c0054c
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2019.11.x

Forcibly disable the JavaScriptCore JIT compilation support
for MIPSr6 processors, which are unsupported.

Signed-off-by: Adrian Perez de Castro <aperez at igalia.com>
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
(cherry picked from commit f779520a63ef5abcb3e28db6159e8762c67dfbf4)
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/wpewebkit/wpewebkit.mk | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/package/wpewebkit/wpewebkit.mk b/package/wpewebkit/wpewebkit.mk
index 00e37c44bc..e823e0d4e4 100644
--- a/package/wpewebkit/wpewebkit.mk
+++ b/package/wpewebkit/wpewebkit.mk
@@ -53,4 +53,13 @@ else
 WPEWEBKIT_CONF_OPTS += -DUSE_WOFF2=OFF
 endif
 
+# JIT is not supported for MIPS r6, but the WebKit build system does not
+# have a check for these processors. Disable JIT forcibly here and use
+# the CLoop interpreter instead.
+#
+# Upstream bug: https://bugs.webkit.org/show_bug.cgi?id=191258
+ifeq ($(BR2_MIPS_CPU_MIPS32R6)$(BR2_MIPS_CPU_MIPS64R6),y)
+WPEWEBKIT_CONF_OPTS += -DENABLE_JIT=OFF -DENABLE_C_LOOP=ON
+endif
+
 $(eval $(cmake-package))


More information about the buildroot mailing list