[oe-commits] Cristian Iorga : webkit-gtk: disable JIT for armv5/armv6

git at git.openembedded.org git at git.openembedded.org
Wed Mar 25 12:40:30 UTC 2015


Module: openembedded-core.git
Branch: master
Commit: c68bac145af0d754ba9497a42925253e9049da45
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=c68bac145af0d754ba9497a42925253e9049da45

Author: Cristian Iorga <cristian.iorga at intel.com>
Date:   Mon Mar 23 20:31:38 2015 +0200

webkit-gtk: disable JIT for armv5/armv6

JIT for JS causes webkit to crash for
ARM v5 and ARM v6 arch, so disable it for now.

TODO: re-evaluate after webkit-gtk upgrade.

Fixes [YOCTO #6931].

Signed-off-by: Cristian Iorga <cristian.iorga at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb b/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb
index 920e1a0..15c73cf 100644
--- a/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb
+++ b/meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb
@@ -50,6 +50,8 @@ EXTRA_OECONF = "\
                 ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', '--enable-webgl', '--disable-webgl', d)} \
                 UNICODE_CFLAGS=-D_REENTRANT \
                "
+EXTRA_OECONF_append_armv5 = " --disable-jit"
+EXTRA_OECONF_append_armv6 = " --disable-jit"
 
 #default unicode backend icu breaks in cross-compile when target and host are different endian type
 EXTRA_OECONF_append_powerpc = " --with-unicode-backend=glib"



More information about the Openembedded-commits mailing list