mirror of
https://git.yoctoproject.org/poky
synced 2026-04-30 21:32:13 +02:00
graphene: add a PACKAGECONFIG for arm_neon
Not all arm platforms support neon and runtime detection for this feature is currently not reliable. Disable neon support by default on ARM-32 platforms because of the following upstream bug: https://github.com/ebassi/graphene/issues/215 Enable neon for aarch64 by default (From OE-Core rev: 72778f6a647f47926c6ba1b77f0984999a22e44a) Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
45d3072792
commit
491a323d08
@@ -10,8 +10,12 @@ inherit gnomebase gobject-introspection gtk-doc
|
||||
SRC_URI[archive.sha256sum] = "a37bb0e78a419dcbeaa9c7027bcff52f5ec2367c25ec859da31dfde2928f279a"
|
||||
|
||||
# gtk4 & mutter 41.0 requires graphene build with introspection
|
||||
PACKAGECONFIG ?= "introspection"
|
||||
# Disable neon support by default on ARM-32 platforms because of the
|
||||
# following upstream bug: https://github.com/ebassi/graphene/issues/215
|
||||
PACKAGECONFIG ?= "introspection ${@bb.utils.contains('TUNE_FEATURES', 'aarch64', 'neon', '', d)}"
|
||||
|
||||
PACKAGECONFIG[introspection] = "-Dintrospection=enabled,-Dintrospection=disabled,"
|
||||
PACKAGECONFIG[neon] = "-Darm_neon=true,-Darm_neon=false,"
|
||||
|
||||
GTKDOC_MESON_OPTION = "gtk_doc"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user