diff mbox series

[meta-oe] graphene: disable neon support on arm 32bits

Message ID 20230208143117.1714453-1-psaavedra@igalia.com
State Under Review
Headers show
Series [meta-oe] graphene: disable neon support on arm 32bits | expand

Commit Message

Pablo Saavedra Feb. 8, 2023, 2:31 p.m. UTC
This disables neon support on arm devices only because it crashes otherwise.

Upstream-status: Reported [https://github.com/ebassi/graphene/issues/215]
---
 meta-oe/recipes-graphics/graphene/graphene_1.10.8.bb | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

diff --git a/meta-oe/recipes-graphics/graphene/graphene_1.10.8.bb b/meta-oe/recipes-graphics/graphene/graphene_1.10.8.bb
index 813ff74ad..1bbe7ecca 100644
--- a/meta-oe/recipes-graphics/graphene/graphene_1.10.8.bb
+++ b/meta-oe/recipes-graphics/graphene/graphene_1.10.8.bb
@@ -17,6 +17,9 @@  GTKDOC_MESON_OPTION = "gtk_doc"
 
 EXTRA_OEMESON = "-Dinstalled_tests=false"
 
+# Disable ARM NEON support
+EXTRA_OEMESON:append:arm = " -Darm_neon=false"
+
 FILES:${PN} += "${libdir}/graphene-1.0"
 
 BBCLASSEXTEND = "native nativesdk"