mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 15:32:12 +02:00
vte: skip gobject-introspection with clang on arm
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.
(From OE-Core rev: 7874ea42bff4950bd0f0abf0ac729bce5ceb702c)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
917d6652fc
commit
81569a68e9
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user