]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
vte: skip gobject-introspection with clang on arm
authorRoss Burton <ross.burton@arm.com>
Wed, 24 Sep 2025 12:07:36 +0000 (13:07 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 25 Sep 2025 09:56:55 +0000 (10:56 +0100)
For some as yet unknown reason, vte on arm (specifically, the qemuarm
and beaglebone-yocto machines at least) will fail during G-I code
generation (which runs the target binaries inside qemu-user):

    Bail out! VTE:ERROR:../sources/vte-0.80.3/src/vtegtk.cc:158:void
    style_provider_parsing_error_cb(GtkCssProvider *, void *, GError *):
    assertion failed (error == NULL): Expected an identifier (gtk-css-parser-error-quark, 1)

    qemu: uncaught target signal 6 (Aborted) - core dumped

Until this can be root-caused, we can disable G-I for this edge case.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-support/vte/vte_0.80.3.bb

index 1eb95dd82748727381bb171d6546765f5517a1f1..93aa864013338584ce6958f747d97c34cf6f7fbc 100644 (file)
@@ -55,3 +55,9 @@ FILES:${PN}-prompt = " \
 "
 
 FILES:${PN}-dev += "${datadir}/glade/"
+
+# Causes failures at build time on eg qemuarm;
+# Bail out! VTE:ERROR:../sources/vte-0.80.3/src/vtegtk.cc:158:void style_provider_parsing_error_cb(GtkCssProvider *, void *, GError *): assertion failed (error == NULL): Expected an identifier (gtk-css-parser-error-quark, 1)
+# qemu: uncaught target signal 6 (Aborted) - core dumped
+# https://gitlab.gnome.org/GNOME/vte/-/issues/2910
+GI_DATA_ENABLED:toolchain-clang:arm = "False"