From 0e0849cd1202ba12c6f138ca156babfe465a9ce7 Mon Sep 17 00:00:00 2001 From: Pablo Saavedra Date: Wed, 8 Feb 2023 15:31:17 +0100 Subject: [PATCH] graphene: disable neon support on arm 32bits This disables neon support on arm devices only because it crashes otherwise. Upstream-status: Reported [https://github.com/ebassi/graphene/issues/215] Signed-off-by: Khem Raj --- meta-oe/recipes-graphics/graphene/graphene_1.10.8.bb | 3 +++ 1 file changed, 3 insertions(+) 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 813ff74adf..1bbe7ecca1 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"