All of lore.kernel.org
 help / color / mirror / Atom feed
* [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
@ 2023-01-04 11:45 Petr Kubizňák
  2023-01-04 11:45 ` [OE-core][PATCH 2/2] harfbuzz: remove bindir only if it exists Petr Kubizňák
                   ` (2 more replies)
  0 siblings, 3 replies; 18+ messages in thread
From: Petr Kubizňák @ 2023-01-04 11:45 UTC (permalink / raw)
  To: openembedded-core; +Cc: Petr Kubizňák - 2N

From: Petr Kubizňák - 2N <kubiznak@2n.com>

When GI_DATA_ENABLED is 'False' (e.g. because
'gobject-introspection-data' is not in DISTRO_FEATURES),
gobject-introspection should not be added to DEPENDS.

Signed-off-by: Petr Kubizňák <kubiznak@2n.com>
---
 meta/classes-recipe/gobject-introspection.bbclass | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/meta/classes-recipe/gobject-introspection.bbclass b/meta/classes-recipe/gobject-introspection.bbclass
index 0c7b7d200a..10cf79508f 100644
--- a/meta/classes-recipe/gobject-introspection.bbclass
+++ b/meta/classes-recipe/gobject-introspection.bbclass
@@ -35,7 +35,8 @@ EXTRA_OEMESON:prepend:class-nativesdk = "${@['', '${GIRMESONBUILD}'][d.getVar('G
 
 # Generating introspection data depends on a combination of native and target
 # introspection tools, and qemu to run the target tools.
-DEPENDS:append:class-target = " gobject-introspection gobject-introspection-native qemu-native"
+DEPENDS:append:class-target = " ${@bb.utils.contains('GI_DATA_ENABLED', 'True', 'gobject-introspection', '', d)}"
+DEPENDS:append:class-target = " gobject-introspection-native qemu-native"
 
 # Even though introspection is disabled on -native, gobject-introspection package is still
 # needed for m4 macros.
@@ -46,10 +47,12 @@ DEPENDS:append:class-nativesdk = " gobject-introspection-native"
 export XDG_DATA_DIRS = "${STAGING_DATADIR}:${STAGING_LIBDIR}"
 
 do_configure:prepend:class-target () {
-    # introspection.m4 pre-packaged with upstream tarballs does not yet
-    # have our fixes
-    mkdir -p ${S}/m4
-    cp ${STAGING_DIR_TARGET}/${datadir}/aclocal/introspection.m4 ${S}/m4
+    if [ "${@bb.utils.contains('GI_DATA_ENABLED', 'True', '1', '0', d)}" = "1" ] ; then
+        # introspection.m4 pre-packaged with upstream tarballs does not yet
+        # have our fixes
+        mkdir -p ${S}/m4
+        cp ${STAGING_DIR_TARGET}/${datadir}/aclocal/introspection.m4 ${S}/m4
+    fi
 }
 
 # .typelib files are needed at runtime and so they go to the main package (so
-- 
2.30.2



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [OE-core][PATCH 2/2] harfbuzz: remove bindir only if it exists
  2023-01-04 11:45 [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED Petr Kubizňák
@ 2023-01-04 11:45 ` Petr Kubizňák
  2023-01-04 11:54 ` [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED Alexander Kanavin
       [not found] ` <17371904FDF90491.29426@lists.openembedded.org>
  2 siblings, 0 replies; 18+ messages in thread
From: Petr Kubizňák @ 2023-01-04 11:45 UTC (permalink / raw)
  To: openembedded-core; +Cc: Petr Kubizňák

In some scenarios (e.g. when "glib" removed from PACKAGECONFIG),
"${D}${bindir}" might not exist which caused `rmdir` to fail.

Signed-off-by: Petr Kubizňák <kubiznak@2n.com>
---
 meta/recipes-graphics/harfbuzz/harfbuzz_5.3.1.bb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-graphics/harfbuzz/harfbuzz_5.3.1.bb b/meta/recipes-graphics/harfbuzz/harfbuzz_5.3.1.bb
index f56403d428..26692d4e13 100644
--- a/meta/recipes-graphics/harfbuzz/harfbuzz_5.3.1.bb
+++ b/meta/recipes-graphics/harfbuzz/harfbuzz_5.3.1.bb
@@ -30,9 +30,9 @@ PACKAGES =+ "${PN}-icu ${PN}-icu-dev ${PN}-subset"
 LEAD_SONAME = "libharfbuzz.so"
 
 do_install:append() {
-    # If no tools are installed due to PACKAGECONFIG then this directory is
-    #still installed, so remove it to stop packaging wanings.
-    rmdir --ignore-fail-on-non-empty ${D}${bindir}
+    # If no tools are installed due to PACKAGECONFIG then this directory might
+    # still be installed, so remove it to stop packaging warnings.
+    [ ! -d ${D}${bindir} ] || rmdir --ignore-fail-on-non-empty ${D}${bindir}
 }
 
 FILES:${PN}-icu = "${libdir}/libharfbuzz-icu.so.*"
-- 
2.30.2



^ permalink raw reply related	[flat|nested] 18+ messages in thread

* Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
  2023-01-04 11:45 [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED Petr Kubizňák
  2023-01-04 11:45 ` [OE-core][PATCH 2/2] harfbuzz: remove bindir only if it exists Petr Kubizňák
@ 2023-01-04 11:54 ` Alexander Kanavin
       [not found] ` <17371904FDF90491.29426@lists.openembedded.org>
  2 siblings, 0 replies; 18+ messages in thread
From: Alexander Kanavin @ 2023-01-04 11:54 UTC (permalink / raw)
  To: Petr Kubizňák; +Cc: openembedded-core

On Wed, 4 Jan 2023 at 12:46, Petr Kubizňák <kubiznak@2n.com> wrote:
> When GI_DATA_ENABLED is 'False' (e.g. because
> 'gobject-introspection-data' is not in DISTRO_FEATURES),
> gobject-introspection should not be added to DEPENDS.

Why?

Alex


^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
       [not found] ` <17371904FDF90491.29426@lists.openembedded.org>
@ 2023-01-04 11:59   ` Alexander Kanavin
  2023-01-04 12:24     ` Petr Kubizňák - 2N
  0 siblings, 1 reply; 18+ messages in thread
From: Alexander Kanavin @ 2023-01-04 11:59 UTC (permalink / raw)
  To: alex.kanavin; +Cc: Petr Kubizňák, openembedded-core

I mean, if you want to do this to reduce dependency chains, then
depending on qemu-native and g-i-native isn't necessary either. But
the patch as it is seems like going halfway.

Alex

On Wed, 4 Jan 2023 at 12:54, Alexander Kanavin via
lists.openembedded.org <alex.kanavin=gmail.com@lists.openembedded.org>
wrote:
>
> On Wed, 4 Jan 2023 at 12:46, Petr Kubizňák <kubiznak@2n.com> wrote:
> > When GI_DATA_ENABLED is 'False' (e.g. because
> > 'gobject-introspection-data' is not in DISTRO_FEATURES),
> > gobject-introspection should not be added to DEPENDS.
>
> Why?
>
> Alex
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#175467): https://lists.openembedded.org/g/openembedded-core/message/175467
> Mute This Topic: https://lists.openembedded.org/mt/96048399/1686489
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kanavin@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
  2023-01-04 11:59   ` Alexander Kanavin
@ 2023-01-04 12:24     ` Petr Kubizňák - 2N
  2023-01-04 12:36       ` Alexander Kanavin
  0 siblings, 1 reply; 18+ messages in thread
From: Petr Kubizňák - 2N @ 2023-01-04 12:24 UTC (permalink / raw)
  To: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 1748 bytes --]

Hi Alex,


Yes, that's exactly the reason. I'm particularly concerned about dependency on glib, but other dependencies are unnecessary, too.


This change was sufficient to remove the dependency from the target. I am not aware of potential consequences of removing the -native dependencies, but if you think it should also be done, I'm happy to update the patch. Please let me know.


Petr

________________________________
From: Alexander Kanavin <alex.kanavin@gmail.com>
Sent: Wednesday, January 4, 2023 12:59:58 PM
To: alex.kanavin@gmail.com
Cc: Petr Kubizňák - 2N; openembedded-core@lists.openembedded.org
Subject: Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED

I mean, if you want to do this to reduce dependency chains, then
depending on qemu-native and g-i-native isn't necessary either. But
the patch as it is seems like going halfway.

Alex

On Wed, 4 Jan 2023 at 12:54, Alexander Kanavin via
lists.openembedded.org <alex.kanavin=gmail.com@lists.openembedded.org>
wrote:
>
> On Wed, 4 Jan 2023 at 12:46, Petr Kubizňák <kubiznak@2n.com> wrote:
> > When GI_DATA_ENABLED is 'False' (e.g. because
> > 'gobject-introspection-data' is not in DISTRO_FEATURES),
> > gobject-introspection should not be added to DEPENDS.
>
> Why?
>
> Alex
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#175467): https://lists.openembedded.org/g/openembedded-core/message/175467
> Mute This Topic: https://lists.openembedded.org/mt/96048399/1686489
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kanavin@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>

[-- Attachment #2: Type: text/html, Size: 3497 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
  2023-01-04 12:24     ` Petr Kubizňák - 2N
@ 2023-01-04 12:36       ` Alexander Kanavin
  2023-01-05 14:12         ` Petr Kubizňák - 2N
  0 siblings, 1 reply; 18+ messages in thread
From: Alexander Kanavin @ 2023-01-04 12:36 UTC (permalink / raw)
  To: Petr Kubizňák; +Cc: openembedded-core

On Wed, 4 Jan 2023 at 13:24, Petr Kubizňák <kubiznak@2n.com> wrote:
> Yes, that's exactly the reason. I'm particularly concerned about dependency on glib, but other dependencies are unnecessary, too.
>
>
> This change was sufficient to remove the dependency from the target. I am not aware of potential consequences of removing the -native dependencies, but if you think it should also be done, I'm happy to update the patch. Please let me know.

I'd suggest that you remove all three, then set up a plain poky master
build with gobject-introspection-data disabled, and issue bitbake
world.

Component upstreams generally only test the gi-enabled configuration,
so this may reveal incorrect upstream logic when g-i is disabled.

Alex


^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
  2023-01-04 12:36       ` Alexander Kanavin
@ 2023-01-05 14:12         ` Petr Kubizňák - 2N
  2023-01-05 14:17           ` Alexander Kanavin
  2023-01-17 12:52           ` Alex Kiernan
  0 siblings, 2 replies; 18+ messages in thread
From: Petr Kubizňák - 2N @ 2023-01-05 14:12 UTC (permalink / raw)
  To: openembedded-core


[-- Attachment #1.1: Type: text/plain, Size: 2813 bytes --]

Is the `bitbake world` command guaranteed to succeed for every commit in the repository? In my case, I end up with failures even with _default_ setup. My point is whether this has to be an issue on my machine (e.g. native tools?), or I should just try a different commit.


Build Configuration:
BB_VERSION           = "2.2.0"
BUILD_SYS            = "x86_64-linux"
NATIVELSBSTRING      = "universal"
TARGET_SYS           = "x86_64-poky-linux"
MACHINE              = "qemux86-64"
DISTRO               = "poky"
DISTRO_VERSION       = "4.1"
TUNE_FEATURES        = "m64 core2"
TARGET_FPU           = ""
meta
meta-poky
meta-yocto-bsp       = "HEAD:2c6f0b9228b47459dd1b67d578792cd017006128"
...
ERROR: rust-1.66.0-r0 do_compile: ExecutionError('/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/temp/run.do_compile.1080378', 1, None, None)
ERROR: Logfile of failure stored in: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/temp/log.do_compile.1080378
NOTE: recipe rust-1.66.0-r0: task do_compile: Failed
ERROR: Task (/home/kubiznak/projects/poky/meta/recipes-devtools/rust/rust_1.66.0.bb:do_compile) failed with exit code '1'

The first error in rust log:

error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so: undefined symbol: _Ungind_Resume
 --> /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs:5:9
  |
5 | pub use unic_langid_macros_impl::langid;
  |         ^^^^^^^^^^^^^^^^^^^^^^^

Full logs attached.


Petr

________________________________
From: Alexander Kanavin <alex.kanavin@gmail.com>
Sent: Wednesday, January 4, 2023 1:36:27 PM
To: Petr Kubizňák - 2N
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED

On Wed, 4 Jan 2023 at 13:24, Petr Kubizňák <kubiznak@2n.com> wrote:
> Yes, that's exactly the reason. I'm particularly concerned about dependency on glib, but other dependencies are unnecessary, too.
>
>
> This change was sufficient to remove the dependency from the target. I am not aware of potential consequences of removing the -native dependencies, but if you think it should also be done, I'm happy to update the patch. Please let me know.

I'd suggest that you remove all three, then set up a plain poky master
build with gobject-introspection-data disabled, and issue bitbake
world.

Component upstreams generally only test the gi-enabled configuration,
so this may reveal incorrect upstream logic when g-i is disabled.

Alex

[-- Attachment #1.2: Type: text/html, Size: 4593 bytes --]

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 20230105134208.log --]
[-- Type: text/x-log; name="20230105134208.log", Size: 44318 bytes --]

NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION           = "2.2.0"
BUILD_SYS            = "x86_64-linux"
NATIVELSBSTRING      = "universal"
TARGET_SYS           = "x86_64-poky-linux"
MACHINE              = "qemux86-64"
DISTRO               = "poky"
DISTRO_VERSION       = "4.1"
TUNE_FEATURES        = "m64 core2"
TARGET_FPU           = ""
meta                 
meta-poky            
meta-yocto-bsp       = "HEAD:2c6f0b9228b47459dd1b67d578792cd017006128"

Sstate summary: Wanted 3413 Local 0 Mirrors 0 Missed 3413 Current 2417 (0% match, 41% complete)
NOTE: Executing Tasks
NOTE: Setscene tasks completed
NOTE: Running task 1830 of 14077 (/home/kubiznak/projects/poky/meta/recipes-graphics/harfbuzz/harfbuzz_5.3.1.bb:do_configure)
NOTE: recipe harfbuzz-5.3.1-r0: task do_configure: Started
NOTE: Running task 1929 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.10.bb:do_configure)
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_configure: Started
NOTE: Running task 2064 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/libical/libical_3.0.16.bb:do_configure)
NOTE: Running task 2099 of 14077 (/home/kubiznak/projects/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.20.5.bb:do_configure)
NOTE: recipe libical-3.0.16-r0: task do_configure: Started
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_configure: Started
NOTE: Running task 2602 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/atk/at-spi2-core_2.46.0.bb:do_configure)
NOTE: recipe at-spi2-core-2.46.0-r0: task do_configure: Started
NOTE: Running task 3019 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/json-glib/json-glib_1.6.6.bb:do_configure)
NOTE: recipe json-glib-1.6.6-r0: task do_configure: Started
NOTE: Running task 3134 of 14077 (/home/kubiznak/projects/poky/meta/recipes-connectivity/avahi/avahi_0.8.bb:do_configure)
NOTE: recipe avahi-0.8-r0: task do_configure: Started
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_configure: Succeeded
NOTE: Running task 3376 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.10.bb:do_configure_ptest_base)
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_configure_ptest_base: Started
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_configure_ptest_base: Succeeded
NOTE: Running task 3413 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.10.bb:do_compile)
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_compile: Started
NOTE: Running task 3513 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/libgudev/libgudev_237.bb:do_configure)
NOTE: recipe libgudev-237-r0: task do_configure: Started
NOTE: recipe harfbuzz-5.3.1-r0: task do_configure: Succeeded
NOTE: Running task 3808 of 14077 (/home/kubiznak/projects/poky/meta/recipes-graphics/harfbuzz/harfbuzz_5.3.1.bb:do_compile)
NOTE: recipe harfbuzz-5.3.1-r0: task do_compile: Started
NOTE: Running task 3976 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gnome/gconf_3.2.6.bb:do_configure)
NOTE: recipe gconf-3.2.6-r0: task do_configure: Started
NOTE: recipe json-glib-1.6.6-r0: task do_configure: Succeeded
NOTE: Running task 4020 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/json-glib/json-glib_1.6.6.bb:do_configure_ptest_base)
NOTE: recipe at-spi2-core-2.46.0-r0: task do_configure: Succeeded
NOTE: Running task 4042 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/atk/at-spi2-core_2.46.0.bb:do_compile)
NOTE: recipe json-glib-1.6.6-r0: task do_configure_ptest_base: Started
NOTE: recipe json-glib-1.6.6-r0: task do_configure_ptest_base: Succeeded
NOTE: Running task 4054 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/json-glib/json-glib_1.6.6.bb:do_compile)
NOTE: recipe at-spi2-core-2.46.0-r0: task do_compile: Started
NOTE: recipe json-glib-1.6.6-r0: task do_compile: Started
NOTE: recipe libical-3.0.16-r0: task do_configure: Succeeded
NOTE: Running task 4219 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/libical/libical_3.0.16.bb:do_compile)
NOTE: recipe libical-3.0.16-r0: task do_compile: Started
NOTE: Running task 4278 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup_3.2.2.bb:do_configure)
NOTE: recipe libsoup-3.2.2-r0: task do_configure: Started
NOTE: recipe libgudev-237-r0: task do_configure: Succeeded
NOTE: Running task 4321 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/libgudev/libgudev_237.bb:do_compile)
NOTE: recipe libgudev-237-r0: task do_compile: Started
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_configure: Succeeded
NOTE: Running task 4411 of 14077 (/home/kubiznak/projects/poky/meta/recipes-graphics/graphene/graphene_1.10.8.bb:do_configure)
NOTE: Running task 4412 of 14077 (/home/kubiznak/projects/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.20.5.bb:do_configure_ptest_base)
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_configure_ptest_base: Started
NOTE: recipe graphene-1.10.8-r0: task do_configure: Started
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_configure_ptest_base: Succeeded
NOTE: Running task 4438 of 14077 (/home/kubiznak/projects/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.20.5.bb:do_compile)
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_compile: Started
NOTE: recipe libsoup-3.2.2-r0: task do_configure: Succeeded
NOTE: Running task 4910 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup_3.2.2.bb:do_compile)
NOTE: recipe libsoup-3.2.2-r0: task do_compile: Started
NOTE: recipe libgudev-237-r0: task do_compile: Succeeded
NOTE: Running task 4988 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/libgudev/libgudev_237.bb:do_install)
NOTE: Running task 5131 of 14077 (/home/kubiznak/projects/poky/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb:do_configure)
NOTE: recipe libmodulemd-2.14.0-r0: task do_configure: Started
NOTE: recipe json-glib-1.6.6-r0: task do_compile: Succeeded
NOTE: Running task 5132 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/json-glib/json-glib_1.6.6.bb:do_compile_ptest_base)
NOTE: recipe libgudev-237-r0: task do_install: Started
NOTE: recipe json-glib-1.6.6-r0: task do_compile_ptest_base: Started
NOTE: recipe json-glib-1.6.6-r0: task do_compile_ptest_base: Succeeded
NOTE: Running task 5133 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/json-glib/json-glib_1.6.6.bb:do_install)
NOTE: recipe json-glib-1.6.6-r0: task do_install: Started
NOTE: recipe json-glib-1.6.6-r0: task do_install: Succeeded
NOTE: Running task 5134 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/json-glib/json-glib_1.6.6.bb:do_install_ptest_base)
NOTE: recipe graphene-1.10.8-r0: task do_configure: Succeeded
NOTE: Running task 5135 of 14077 (/home/kubiznak/projects/poky/meta/recipes-graphics/graphene/graphene_1.10.8.bb:do_compile)
NOTE: recipe libgudev-237-r0: task do_install: Succeeded
NOTE: Running task 5136 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/libgudev/libgudev_237.bb:do_populate_sysroot)
NOTE: recipe json-glib-1.6.6-r0: task do_install_ptest_base: Started
NOTE: recipe graphene-1.10.8-r0: task do_compile: Started
NOTE: recipe json-glib-1.6.6-r0: task do_install_ptest_base: Succeeded
NOTE: Running task 5137 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/libgudev/libgudev_237.bb:do_package)
NOTE: recipe libgudev-237-r0: task do_populate_sysroot: Started
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_compile: Succeeded
NOTE: Running task 5138 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.10.bb:do_compile_ptest_base)
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_compile_ptest_base: Started
NOTE: recipe at-spi2-core-2.46.0-r0: task do_compile: Succeeded
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_compile_ptest_base: Succeeded
NOTE: Running task 5139 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/atk/at-spi2-core_2.46.0.bb:do_install)
NOTE: recipe libgudev-237-r0: task do_package: Started
NOTE: Running task 5140 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.10.bb:do_install)
NOTE: recipe libgudev-237-r0: task do_populate_sysroot: Succeeded
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_install: Started
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-gnome/libgudev/libgudev_237.bb:do_populate_sysroot unihash changed to 2f154b868ac0596f58b78559702f9ac95aacfb30caeb8e3a8e8a9ed1fc3fde60
NOTE: recipe at-spi2-core-2.46.0-r0: task do_install: Started
NOTE: Setscene tasks completed
NOTE: recipe at-spi2-core-2.46.0-r0: task do_install: Succeeded
NOTE: Running task 5159 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/atk/at-spi2-core_2.46.0.bb:do_populate_sysroot)
NOTE: Running task 5160 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/atk/at-spi2-core_2.46.0.bb:do_package)
NOTE: recipe at-spi2-core-2.46.0-r0: task do_populate_sysroot: Started
NOTE: recipe at-spi2-core-2.46.0-r0: task do_package: Started
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_install: Succeeded
NOTE: Running task 5161 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.10.bb:do_install_ptest_base)
NOTE: recipe at-spi2-core-2.46.0-r0: task do_populate_sysroot: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-support/atk/at-spi2-core_2.46.0.bb:do_populate_sysroot unihash changed to f8c35ea939032f37985e9d8eaa5669258be3748cb0b4887205050cb32107a424
NOTE: recipe libgudev-237-r0: task do_package: Succeeded
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_install_ptest_base: Started
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-gnome/libgudev/libgudev_237.bb:do_package unihash changed to c47506508a2101899522da8f027926821aaf3d2d828ce74b7d56372184df1dae
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-gnome/libgudev/libgudev_237.bb:do_packagedata became valid
NOTE: recipe libmodulemd-2.14.0-r0: task do_configure: Succeeded
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_install_ptest_base: Succeeded
NOTE: Running setscene task 5772 of 5830 (/home/kubiznak/projects/poky/meta/recipes-gnome/libgudev/libgudev_237.bb:do_packagedata_setscene)
NOTE: recipe libgudev-237-r0: task do_packagedata_setscene: Started
NOTE: recipe libgudev-237-r0: task do_packagedata_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 5162 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.10.bb:do_populate_sysroot)
NOTE: Running task 5163 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.10.bb:do_package)
NOTE: Running task 5165 of 14077 (/home/kubiznak/projects/poky/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb:do_compile)
NOTE: recipe libical-3.0.16-r0: task do_compile: Succeeded
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_populate_sysroot: Started
NOTE: recipe libmodulemd-2.14.0-r0: task do_compile: Started
NOTE: Running task 5191 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/libical/libical_3.0.16.bb:do_install)
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_package: Started
NOTE: recipe libical-3.0.16-r0: task do_install: Started
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_populate_sysroot: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.10.bb:do_populate_sysroot unihash changed to a6973c1ab4f9f1eab51c192b9e9c18a4292e65fd8f8ecf623bf943c9e959c3e4
NOTE: recipe libical-3.0.16-r0: task do_install: Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 5294 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/libical/libical_3.0.16.bb:do_populate_sysroot)
NOTE: Running task 5295 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/libical/libical_3.0.16.bb:do_package)
NOTE: recipe libical-3.0.16-r0: task do_package: Started
NOTE: recipe libical-3.0.16-r0: task do_populate_sysroot: Started
NOTE: Running task 5327 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/libnotify/libnotify_0.8.1.bb:do_configure)
NOTE: recipe libnotify-0.8.1-r0: task do_configure: Started
NOTE: recipe libical-3.0.16-r0: task do_populate_sysroot: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-support/libical/libical_3.0.16.bb:do_populate_sysroot unihash changed to abb39f36a3dd6b9e9e5dd7bbb04df96e540625128436e9dc29c669046c2712e4
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-connectivity/ofono/ofono_2.0.bb:do_populate_sysroot became valid
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-connectivity/bluez5/bluez5_5.66.bb:do_populate_sysroot became valid
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-connectivity/ppp/ppp_2.4.9.bb:do_populate_sysroot became valid
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-connectivity/libpcap/libpcap_1.10.1.bb:do_populate_sysroot became valid
NOTE: Running setscene task 5747 of 5830 (/home/kubiznak/projects/poky/meta/recipes-connectivity/ppp/ppp_2.4.9.bb:do_populate_sysroot_setscene)
NOTE: recipe ppp-2.4.9-r0: task do_populate_sysroot_setscene: Started
NOTE: recipe at-spi2-core-2.46.0-r0: task do_package: Succeeded
NOTE: recipe ppp-2.4.9-r0: task do_populate_sysroot_setscene: Succeeded
NOTE: Running setscene task 5748 of 5830 (/home/kubiznak/projects/poky/meta/recipes-connectivity/libpcap/libpcap_1.10.1.bb:do_populate_sysroot_setscene)
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-support/atk/at-spi2-core_2.46.0.bb:do_package unihash changed to 916631e8e5afd5e8c98f5e7f010218b012b849fd811f49717a479460089f63d8
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-support/atk/at-spi2-core_2.46.0.bb:do_packagedata became valid
NOTE: recipe libpcap-1.10.1-r0: task do_populate_sysroot_setscene: Started
NOTE: recipe libpcap-1.10.1-r0: task do_populate_sysroot_setscene: Succeeded
NOTE: recipe graphene-1.10.8-r0: task do_compile: Succeeded
NOTE: recipe libical-3.0.16-r0: task do_package: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-support/libical/libical_3.0.16.bb:do_package unihash changed to d31c62d3ff72acfc62cb447889bca92731430cfbce1c0f2427816c2b5f6be97a
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-connectivity/libpcap/libpcap_1.10.1.bb:do_package became valid
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-connectivity/connman/connman_1.41.bb:do_packagedata became valid
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-connectivity/ppp/ppp_2.4.9.bb:do_package became valid
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-connectivity/connman/connman_1.41.bb:do_package became valid
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-connectivity/bluez5/bluez5_5.66.bb:do_package became valid
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-connectivity/libpcap/libpcap_1.10.1.bb:do_packagedata became valid
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-support/libical/libical_3.0.16.bb:do_packagedata became valid
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-devtools/strace/strace_6.0.bb:do_packagedata became valid
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-devtools/strace/strace_6.0.bb:do_package became valid
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-connectivity/ofono/ofono_2.0.bb:do_packagedata became valid
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-connectivity/ofono/ofono_2.0.bb:do_package became valid
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-connectivity/bluez5/bluez5_5.66.bb:do_packagedata became valid
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-connectivity/ppp/ppp_2.4.9.bb:do_packagedata became valid
NOTE: Running setscene task 5695 of 5830 (/home/kubiznak/projects/poky/meta/recipes-connectivity/ofono/ofono_2.0.bb:do_populate_sysroot_setscene)
NOTE: Running setscene task 5704 of 5830 (/home/kubiznak/projects/poky/meta/recipes-connectivity/connman/connman_1.41.bb:do_packagedata_setscene)
NOTE: recipe ofono-2.0-r0: task do_populate_sysroot_setscene: Started
NOTE: Running setscene task 5713 of 5830 (/home/kubiznak/projects/poky/meta/recipes-devtools/strace/strace_6.0.bb:do_packagedata_setscene)
NOTE: recipe ofono-2.0-r0: task do_populate_sysroot_setscene: Succeeded
NOTE: recipe connman-1.41-r0: task do_packagedata_setscene: Started
NOTE: recipe connman-1.41-r0: task do_packagedata_setscene: Succeeded
NOTE: Running setscene task 5774 of 5830 (/home/kubiznak/projects/poky/meta/recipes-connectivity/connman/connman_1.41.bb:do_package_setscene)
NOTE: recipe libnotify-0.8.1-r0: task do_configure: Succeeded
NOTE: recipe strace-6.0-r0: task do_packagedata_setscene: Started
NOTE: recipe strace-6.0-r0: task do_packagedata_setscene: Succeeded
NOTE: Running setscene task 5799 of 5830 (/home/kubiznak/projects/poky/meta/recipes-devtools/strace/strace_6.0.bb:do_package_setscene)
NOTE: recipe connman-1.41-r0: task do_package_setscene: Started
NOTE: Running setscene task 5820 of 5830 (/home/kubiznak/projects/poky/meta/recipes-support/atk/at-spi2-core_2.46.0.bb:do_packagedata_setscene)
NOTE: Running task 5328 of 14077 (/home/kubiznak/projects/poky/meta/recipes-graphics/graphene/graphene_1.10.8.bb:do_install)
NOTE: recipe strace-6.0-r0: task do_package_setscene: Started
NOTE: Running task 5330 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/libsecret/libsecret_0.20.5.bb:do_configure)
NOTE: recipe at-spi2-core-2.46.0-r0: task do_packagedata_setscene: Started
NOTE: recipe graphene-1.10.8-r0: task do_install: Started
NOTE: recipe libsoup-3.2.2-r0: task do_compile: Succeeded
NOTE: recipe at-spi2-core-2.46.0-r0: task do_packagedata_setscene: Succeeded
NOTE: recipe libsecret-0.20.5-r0: task do_configure: Started
NOTE: Running task 5332 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup_3.2.2.bb:do_install)
NOTE: Running task 5334 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/libnotify/libnotify_0.8.1.bb:do_compile)
NOTE: recipe libsoup-3.2.2-r0: task do_install: Started
NOTE: recipe libnotify-0.8.1-r0: task do_compile: Started
NOTE: recipe graphene-1.10.8-r0: task do_install: Succeeded
NOTE: Running task 5335 of 14077 (/home/kubiznak/projects/poky/meta/recipes-graphics/graphene/graphene_1.10.8.bb:do_populate_sysroot)
NOTE: recipe graphene-1.10.8-r0: task do_populate_sysroot: Started
NOTE: recipe connman-1.41-r0: task do_package_setscene: Succeeded
NOTE: Running setscene task 5821 of 5830 (/home/kubiznak/projects/poky/meta/recipes-connectivity/ofono/ofono_2.0.bb:do_packagedata_setscene)
NOTE: recipe ofono-2.0-r0: task do_packagedata_setscene: Started
NOTE: recipe libsoup-3.2.2-r0: task do_install: Succeeded
NOTE: Running setscene task 5822 of 5830 (/home/kubiznak/projects/poky/meta/recipes-connectivity/ppp/ppp_2.4.9.bb:do_packagedata_setscene)
NOTE: recipe ofono-2.0-r0: task do_packagedata_setscene: Succeeded
NOTE: Running setscene task 5823 of 5830 (/home/kubiznak/projects/poky/meta/recipes-connectivity/ofono/ofono_2.0.bb:do_package_setscene)
NOTE: recipe ppp-2.4.9-r0: task do_packagedata_setscene: Started
NOTE: recipe graphene-1.10.8-r0: task do_populate_sysroot: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-graphics/graphene/graphene_1.10.8.bb:do_populate_sysroot unihash changed to 4cda6343956c111cb2d8f1354e0d8eb37bd0806c26bfaecd9eb8c8dc1f146eb0
NOTE: recipe ofono-2.0-r0: task do_package_setscene: Started
NOTE: recipe ppp-2.4.9-r0: task do_packagedata_setscene: Succeeded
NOTE: Running setscene task 5811 of 5830 (/home/kubiznak/projects/poky/meta/recipes-connectivity/ppp/ppp_2.4.9.bb:do_package_setscene)
NOTE: Running task 5336 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup_3.2.2.bb:do_package)
NOTE: recipe ppp-2.4.9-r0: task do_package_setscene: Started
NOTE: recipe libsoup-3.2.2-r0: task do_package: Started
NOTE: recipe libmodulemd-2.14.0-r0: task do_compile: Succeeded
NOTE: Running task 5337 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup_3.2.2.bb:do_populate_sysroot)
NOTE: recipe libsoup-3.2.2-r0: task do_populate_sysroot: Started
NOTE: recipe ofono-2.0-r0: task do_package_setscene: Succeeded
NOTE: Running task 5338 of 14077 (/home/kubiznak/projects/poky/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb:do_install)
NOTE: recipe libsoup-3.2.2-r0: task do_populate_sysroot: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup_3.2.2.bb:do_populate_sysroot unihash changed to 5a33d7436fb94343fd3c2db39593cf422cf364f18e805d4cd6b18a66ab5de303
NOTE: recipe ppp-2.4.9-r0: task do_package_setscene: Succeeded
NOTE: Running setscene task 5805 of 5830 (/home/kubiznak/projects/poky/meta/recipes-connectivity/libpcap/libpcap_1.10.1.bb:do_packagedata_setscene)
NOTE: recipe libmodulemd-2.14.0-r0: task do_install: Started
NOTE: recipe libpcap-1.10.1-r0: task do_packagedata_setscene: Started
NOTE: recipe strace-6.0-r0: task do_package_setscene: Succeeded
NOTE: recipe libpcap-1.10.1-r0: task do_packagedata_setscene: Succeeded
NOTE: Running setscene task 5826 of 5830 (/home/kubiznak/projects/poky/meta/recipes-connectivity/libpcap/libpcap_1.10.1.bb:do_package_setscene)
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_package: Succeeded
NOTE: recipe libpcap-1.10.1-r0: task do_package_setscene: Started
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.10.bb:do_package unihash changed to e5077ed0ded09ad3b36dbd15284406aa8af7c4a88ee075df60f9a65bea80e9d9
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.10.bb:do_packagedata became valid
NOTE: recipe libmodulemd-2.14.0-r0: task do_install: Succeeded
NOTE: recipe libpcap-1.10.1-r0: task do_package_setscene: Succeeded
NOTE: Running setscene task 5826 of 5830 (/home/kubiznak/projects/poky/meta/recipes-connectivity/bluez5/bluez5_5.66.bb:do_packagedata_setscene)
NOTE: Running setscene task 5827 of 5830 (/home/kubiznak/projects/poky/meta/recipes-connectivity/bluez5/bluez5_5.66.bb:do_populate_sysroot_setscene)
NOTE: Running setscene task 5828 of 5830 (/home/kubiznak/projects/poky/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.42.10.bb:do_packagedata_setscene)
NOTE: recipe bluez5-5.66-r0: task do_populate_sysroot_setscene: Started
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_packagedata_setscene: Started
NOTE: recipe bluez5-5.66-r0: task do_packagedata_setscene: Started
NOTE: recipe libsecret-0.20.5-r0: task do_configure: Succeeded
NOTE: Running task 5410 of 14077 (/home/kubiznak/projects/poky/meta/recipes-devtools/python/python3-pygobject_3.42.2.bb:do_configure)
NOTE: Running task 5411 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/libsecret/libsecret_0.20.5.bb:do_compile)
NOTE: recipe bluez5-5.66-r0: task do_populate_sysroot_setscene: Succeeded
NOTE: recipe bluez5-5.66-r0: task do_packagedata_setscene: Succeeded
NOTE: Running setscene task 5829 of 5830 (/home/kubiznak/projects/poky/meta/recipes-connectivity/bluez5/bluez5_5.66.bb:do_package_setscene)
NOTE: recipe python3-pygobject-3.42.2-r0: task do_configure: Started
NOTE: recipe gdk-pixbuf-2.42.10-r0: task do_packagedata_setscene: Succeeded
NOTE: recipe libsecret-0.20.5-r0: task do_compile: Started
NOTE: recipe bluez5-5.66-r0: task do_package_setscene: Started
NOTE: Running task 5501 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup-2.4_2.74.3.bb:do_configure)
NOTE: recipe libsoup-2.4-2.74.3-r0: task do_configure: Started
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_compile: Succeeded
NOTE: Running task 5553 of 14077 (/home/kubiznak/projects/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.20.5.bb:do_compile_ptest_base)
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_compile_ptest_base: Started
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_compile_ptest_base: Succeeded
NOTE: Running task 5584 of 14077 (/home/kubiznak/projects/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.20.5.bb:do_install)
NOTE: Running task 5627 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/json-glib/json-glib_1.6.6.bb:do_package)
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_install: Started
NOTE: recipe json-glib-1.6.6-r0: task do_package: Started
NOTE: recipe bluez5-5.66-r0: task do_package_setscene: Succeeded
NOTE: Running setscene task 5830 of 5830 (/home/kubiznak/projects/poky/meta/recipes-support/libical/libical_3.0.16.bb:do_packagedata_setscene)
NOTE: recipe libsoup-3.2.2-r0: task do_package: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup_3.2.2.bb:do_package unihash changed to ce7a3065b5590f442b577a9210f8869d1bffd57d6c601b53f845b0f05a2e1634
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup_3.2.2.bb:do_packagedata became valid
NOTE: recipe libical-3.0.16-r0: task do_packagedata_setscene: Started
NOTE: Running setscene task 5830 of 5830 (/home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup_3.2.2.bb:do_packagedata_setscene)
NOTE: recipe libical-3.0.16-r0: task do_packagedata_setscene: Succeeded
NOTE: recipe libsoup-3.2.2-r0: task do_packagedata_setscene: Started
NOTE: Running task 5670 of 14077 (/home/kubiznak/projects/poky/meta/recipes-devtools/strace/strace_6.0.bb:do_prepare_recipe_sysroot)
NOTE: recipe libsoup-3.2.2-r0: task do_packagedata_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: recipe strace-6.0-r0: task do_prepare_recipe_sysroot: Started
NOTE: Running task 5727 of 14077 (/home/kubiznak/projects/poky/meta/recipes-graphics/graphene/graphene_1.10.8.bb:do_package)
NOTE: recipe strace-6.0-r0: task do_prepare_recipe_sysroot: Succeeded
NOTE: Running task 5739 of 14077 (/home/kubiznak/projects/poky/meta/recipes-devtools/strace/strace_6.0.bb:do_configure)
NOTE: recipe graphene-1.10.8-r0: task do_package: Started
NOTE: recipe strace-6.0-r0: task do_configure: Started
NOTE: recipe libnotify-0.8.1-r0: task do_compile: Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 5796 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/libnotify/libnotify_0.8.1.bb:do_install)
NOTE: recipe python3-pygobject-3.42.2-r0: task do_configure: Succeeded
NOTE: Running task 5800 of 14077 (/home/kubiznak/projects/poky/meta/recipes-devtools/python/python3-pygobject_3.42.2.bb:do_compile)
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_install: Succeeded
NOTE: recipe python3-pygobject-3.42.2-r0: task do_compile: Started
NOTE: Running task 5822 of 14077 (/home/kubiznak/projects/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.20.5.bb:do_install_ptest_base)
NOTE: recipe libnotify-0.8.1-r0: task do_install: Started
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_install_ptest_base: Started
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_install_ptest_base: Succeeded
NOTE: Running task 5879 of 14077 (/home/kubiznak/projects/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.20.5.bb:do_populate_sysroot)
NOTE: Running task 5880 of 14077 (/home/kubiznak/projects/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.20.5.bb:do_package)
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_package: Started
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_populate_sysroot: Started
NOTE: recipe libnotify-0.8.1-r0: task do_install: Succeeded
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_populate_sysroot: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.20.5.bb:do_populate_sysroot unihash changed to e33ddd9cf6cb13b20a0dcf690f5825724bdb80a6a6437ca09a61c855945b1398
NOTE: recipe graphene-1.10.8-r0: task do_package: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-graphics/graphene/graphene_1.10.8.bb:do_package unihash changed to 7a491c3b3399026fe783da0eef2b105d24a5653ba7baf8b796657c2008673b9a
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-graphics/graphene/graphene_1.10.8.bb:do_packagedata became valid
NOTE: Running setscene task 5779 of 5830 (/home/kubiznak/projects/poky/meta/recipes-graphics/graphene/graphene_1.10.8.bb:do_packagedata_setscene)
NOTE: recipe libsoup-2.4-2.74.3-r0: task do_configure: Succeeded
NOTE: Running task 5888 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup-2.4_2.74.3.bb:do_compile)
NOTE: recipe graphene-1.10.8-r0: task do_packagedata_setscene: Started
NOTE: recipe gconf-3.2.6-r0: task do_configure: Succeeded
NOTE: Running task 5902 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gnome/gconf_3.2.6.bb:do_compile)
NOTE: recipe graphene-1.10.8-r0: task do_packagedata_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: recipe libsoup-2.4-2.74.3-r0: task do_compile: Started
NOTE: recipe gconf-3.2.6-r0: task do_compile: Started
NOTE: Running task 5943 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/json-glib/json-glib_1.6.6.bb:do_populate_sysroot)
NOTE: recipe json-glib-1.6.6-r0: task do_populate_sysroot: Started
NOTE: recipe python3-pygobject-3.42.2-r0: task do_compile: Succeeded
NOTE: Running task 6046 of 14077 (/home/kubiznak/projects/poky/meta/recipes-devtools/python/python3-pygobject_3.42.2.bb:do_install)
NOTE: recipe json-glib-1.6.6-r0: task do_populate_sysroot: Succeeded
NOTE: recipe python3-pygobject-3.42.2-r0: task do_install: Started
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-gnome/json-glib/json-glib_1.6.6.bb:do_populate_sysroot unihash changed to e2d30287e5800345bf4250699a0ae89603bac37ffd1ac2d8779957fd3050c2f9
NOTE: recipe json-glib-1.6.6-r0: task do_package: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-gnome/json-glib/json-glib_1.6.6.bb:do_package unihash changed to 5ad77695e3e5a4814cd2d1bef405c869402b0d9a16e479d6f518c3a46d44cfe5
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-gnome/json-glib/json-glib_1.6.6.bb:do_packagedata became valid
NOTE: Running setscene task 5830 of 5830 (/home/kubiznak/projects/poky/meta/recipes-gnome/json-glib/json-glib_1.6.6.bb:do_packagedata_setscene)
NOTE: recipe json-glib-1.6.6-r0: task do_packagedata_setscene: Started
NOTE: recipe json-glib-1.6.6-r0: task do_packagedata_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: recipe python3-pygobject-3.42.2-r0: task do_install: Succeeded
NOTE: Running task 6131 of 14077 (/home/kubiznak/projects/poky/meta/recipes-devtools/python/python3-pygobject_3.42.2.bb:do_package)
NOTE: recipe python3-pygobject-3.42.2-r0: task do_package: Started
NOTE: Running task 6259 of 14077 (/home/kubiznak/projects/poky/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb:do_populate_sysroot)
NOTE: recipe libmodulemd-2.14.0-r0: task do_populate_sysroot: Started
NOTE: recipe libmodulemd-2.14.0-r0: task do_populate_sysroot: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb:do_populate_sysroot unihash changed to 5983e96948e9e5767d9e604d69dff2f075292bc7e36c2a02ebb8a51cfa0b56fc
NOTE: Setscene tasks completed
NOTE: recipe libsecret-0.20.5-r0: task do_compile: Succeeded
NOTE: Running task 6459 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/libsecret/libsecret_0.20.5.bb:do_install)
NOTE: Running task 6481 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_43.0.bb:do_configure)
NOTE: Running task 6482 of 14077 (/home/kubiznak/projects/poky/meta/recipes-devtools/libdnf/libdnf_0.69.0.bb:do_configure)
NOTE: recipe libsecret-0.20.5-r0: task do_install: Started
NOTE: recipe gsettings-desktop-schemas-43.0-r0: task do_configure: Started
NOTE: recipe libdnf-0.69.0-r0: task do_configure: Started
NOTE: recipe python3-pygobject-3.42.2-r0: task do_package: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-devtools/python/python3-pygobject_3.42.2.bb:do_package unihash changed to 68bfdbd8a9a9085ea2779e9b88a1573bd78b1cd6c118988f27eaa6c48f582b0d
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-devtools/python/python3-pygobject_3.42.2.bb:do_packagedata became valid
NOTE: Running setscene task 5830 of 5830 (/home/kubiznak/projects/poky/meta/recipes-devtools/python/python3-pygobject_3.42.2.bb:do_packagedata_setscene)
NOTE: recipe python3-pygobject-3.42.2-r0: task do_packagedata_setscene: Started
NOTE: recipe python3-pygobject-3.42.2-r0: task do_packagedata_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: recipe libsecret-0.20.5-r0: task do_install: Succeeded
NOTE: Running task 6684 of 14077 (/home/kubiznak/projects/poky/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb:do_package)
NOTE: recipe libmodulemd-2.14.0-r0: task do_package: Started
NOTE: Running task 6751 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/libnotify/libnotify_0.8.1.bb:do_populate_sysroot)
NOTE: Running task 6756 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/libsecret/libsecret_0.20.5.bb:do_populate_sysroot)
NOTE: recipe libnotify-0.8.1-r0: task do_populate_sysroot: Started
NOTE: recipe libsecret-0.20.5-r0: task do_populate_sysroot: Started
NOTE: recipe libnotify-0.8.1-r0: task do_populate_sysroot: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-gnome/libnotify/libnotify_0.8.1.bb:do_populate_sysroot unihash changed to c58f39c07ad98441b6b86dc8c9774130193aee333f0560082a79d0f956742ad5
NOTE: recipe libsecret-0.20.5-r0: task do_populate_sysroot: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-gnome/libsecret/libsecret_0.20.5.bb:do_populate_sysroot unihash changed to 174c6546adf3da9d97264d82a38d0eca0e3516c84d419991a6c8bde2968c520f
NOTE: recipe libdnf-0.69.0-r0: task do_configure: Succeeded
NOTE: recipe gsettings-desktop-schemas-43.0-r0: task do_configure: Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 6881 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_43.0.bb:do_compile)
NOTE: Running task 6882 of 14077 (/home/kubiznak/projects/poky/meta/recipes-devtools/libdnf/libdnf_0.69.0.bb:do_compile)
NOTE: recipe libdnf-0.69.0-r0: task do_compile: Started
NOTE: recipe gsettings-desktop-schemas-43.0-r0: task do_compile: Started
NOTE: Running task 6962 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/libnotify/libnotify_0.8.1.bb:do_package)
NOTE: Running task 6965 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/libsecret/libsecret_0.20.5.bb:do_package)
NOTE: recipe libnotify-0.8.1-r0: task do_package: Started
NOTE: recipe libsecret-0.20.5-r0: task do_package: Started
NOTE: recipe libmodulemd-2.14.0-r0: task do_package: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb:do_package unihash changed to ffa63d446c44a786f527578f4f536a0a23f292569dbeccb1e5adaa2615feb0b8
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb:do_packagedata became valid
NOTE: Running setscene task 5830 of 5830 (/home/kubiznak/projects/poky/meta/recipes-devtools/libmodulemd/libmodulemd_git.bb:do_packagedata_setscene)
NOTE: recipe libmodulemd-2.14.0-r0: task do_packagedata_setscene: Started
NOTE: recipe libmodulemd-2.14.0-r0: task do_packagedata_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: recipe gsettings-desktop-schemas-43.0-r0: task do_compile: Succeeded
NOTE: Running task 7104 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_43.0.bb:do_install)
NOTE: recipe gsettings-desktop-schemas-43.0-r0: task do_install: Started
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_package: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.20.5.bb:do_package unihash changed to 2ff3aaa5e7c9b3e996eb735bb2673ed67b00904fc53286af7a30e6e764f9134a
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.20.5.bb:do_packagedata became valid
NOTE: recipe gsettings-desktop-schemas-43.0-r0: task do_install: Succeeded
NOTE: recipe libnotify-0.8.1-r0: task do_package: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-gnome/libnotify/libnotify_0.8.1.bb:do_package unihash changed to 4244a32e0c335843652bd2dba6f2b0e87bf1d7441df989bbfa35695c446f5d0f
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-gnome/libnotify/libnotify_0.8.1.bb:do_packagedata became valid
NOTE: recipe gconf-3.2.6-r0: task do_compile: Succeeded
NOTE: Running setscene task 5827 of 5830 (/home/kubiznak/projects/poky/meta/recipes-gnome/libnotify/libnotify_0.8.1.bb:do_packagedata_setscene)
NOTE: Running setscene task 5830 of 5830 (/home/kubiznak/projects/poky/meta/recipes-multimedia/gstreamer/gstreamer1.0_1.20.5.bb:do_packagedata_setscene)
NOTE: Running task 7237 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gnome/gconf_3.2.6.bb:do_install)
NOTE: recipe libnotify-0.8.1-r0: task do_packagedata_setscene: Started
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_packagedata_setscene: Started
NOTE: recipe gconf-3.2.6-r0: task do_install: Started
NOTE: recipe libnotify-0.8.1-r0: task do_packagedata_setscene: Succeeded
NOTE: recipe gstreamer1.0-1.20.5-r0: task do_packagedata_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 7444 of 14077 (/home/kubiznak/projects/poky/meta/recipes-connectivity/connman/connman_1.41.bb:do_prepare_recipe_sysroot)
NOTE: Running task 7450 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_43.0.bb:do_package)
NOTE: recipe libsoup-2.4-2.74.3-r0: task do_compile: Succeeded
NOTE: Running task 7456 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup-2.4_2.74.3.bb:do_install)
NOTE: recipe connman-1.41-r0: task do_prepare_recipe_sysroot: Started
NOTE: recipe gsettings-desktop-schemas-43.0-r0: task do_package: Started
NOTE: recipe libsoup-2.4-2.74.3-r0: task do_install: Started
NOTE: recipe connman-1.41-r0: task do_prepare_recipe_sysroot: Succeeded
NOTE: Running task 7544 of 14077 (/home/kubiznak/projects/poky/meta/recipes-connectivity/connman/connman_1.41.bb:do_configure)
NOTE: recipe libsecret-0.20.5-r0: task do_package: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-gnome/libsecret/libsecret_0.20.5.bb:do_package unihash changed to 9874e9b48e783ec47ebea64f86951a52162f82cc04e1e3f1dd52f0df3fc0be25
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-gnome/libsecret/libsecret_0.20.5.bb:do_packagedata became valid
NOTE: recipe connman-1.41-r0: task do_configure: Started
NOTE: Running setscene task 5830 of 5830 (/home/kubiznak/projects/poky/meta/recipes-gnome/libsecret/libsecret_0.20.5.bb:do_packagedata_setscene)
NOTE: recipe libsecret-0.20.5-r0: task do_packagedata_setscene: Started
NOTE: recipe libsecret-0.20.5-r0: task do_packagedata_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: recipe libsoup-2.4-2.74.3-r0: task do_install: Succeeded
NOTE: Running task 7670 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup-2.4_2.74.3.bb:do_package)
NOTE: Running task 7671 of 14077 (/home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup-2.4_2.74.3.bb:do_populate_sysroot)
NOTE: recipe libsoup-2.4-2.74.3-r0: task do_populate_sysroot: Started
NOTE: recipe libsoup-2.4-2.74.3-r0: task do_package: Started
NOTE: recipe libsoup-2.4-2.74.3-r0: task do_populate_sysroot: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup-2.4_2.74.3.bb:do_populate_sysroot unihash changed to 261d6dd35b9d41c3f8b83047ec3dafd694fac5cdeabd11e17a044a12cc90ff67
NOTE: Setscene tasks completed
NOTE: recipe gsettings-desktop-schemas-43.0-r0: task do_package: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_43.0.bb:do_package unihash changed to 43d927fb88b0f7efacef366f948046a30956214bb8de551661be353603a6f2b4
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_43.0.bb:do_packagedata became valid
NOTE: Running setscene task 5830 of 5830 (/home/kubiznak/projects/poky/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_43.0.bb:do_packagedata_setscene)
NOTE: recipe gsettings-desktop-schemas-43.0-r0: task do_packagedata_setscene: Started
NOTE: recipe gsettings-desktop-schemas-43.0-r0: task do_packagedata_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 8387 of 14077 (/home/kubiznak/projects/poky/meta/recipes-devtools/rust/rust_1.66.0.bb:do_compile)
NOTE: recipe rust-1.66.0-r0: task do_compile: Started
NOTE: recipe libsoup-2.4-2.74.3-r0: task do_package: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup-2.4_2.74.3.bb:do_package unihash changed to b7db39e715b3b12e5ca902345562723f8d0b7e9212dc1379c5d99cbbd02c287d
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup-2.4_2.74.3.bb:do_packagedata became valid
NOTE: Running setscene task 5830 of 5830 (/home/kubiznak/projects/poky/meta/recipes-support/libsoup/libsoup-2.4_2.74.3.bb:do_packagedata_setscene)
NOTE: recipe libsoup-2.4-2.74.3-r0: task do_packagedata_setscene: Started
NOTE: recipe libsoup-2.4-2.74.3-r0: task do_packagedata_setscene: Succeeded
NOTE: Setscene tasks completed
NOTE: Running task 8839 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_43.0.bb:do_populate_sysroot)
NOTE: recipe gsettings-desktop-schemas-43.0-r0: task do_populate_sysroot: Started
NOTE: Running task 8891 of 14077 (/home/kubiznak/projects/poky/meta/recipes-devtools/python/python3-pygobject_3.42.2.bb:do_populate_sysroot)
NOTE: recipe python3-pygobject-3.42.2-r0: task do_populate_sysroot: Started
NOTE: recipe gsettings-desktop-schemas-43.0-r0: task do_populate_sysroot: Succeeded
NOTE: recipe gconf-3.2.6-r0: task do_install: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-gnome/gsettings-desktop-schemas/gsettings-desktop-schemas_43.0.bb:do_populate_sysroot unihash changed to 34d01499a9b01e7b86c378ea15990611233ac9540464f6eef66a3da8ee034ff7
NOTE: Setscene tasks completed
NOTE: Running task 8952 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gnome/gconf_3.2.6.bb:do_package)
NOTE: Running task 8953 of 14077 (/home/kubiznak/projects/poky/meta/recipes-gnome/gnome/gconf_3.2.6.bb:do_populate_sysroot)
NOTE: recipe gconf-3.2.6-r0: task do_package: Started
NOTE: recipe python3-pygobject-3.42.2-r0: task do_populate_sysroot: Succeeded
NOTE: recipe gconf-3.2.6-r0: task do_populate_sysroot: Started
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-devtools/python/python3-pygobject_3.42.2.bb:do_populate_sysroot unihash changed to 7d8435f249f05d8afee369c923b7fb653318ef3254adb79a52c6f8d84a5a47a1
NOTE: Setscene tasks completed
NOTE: recipe gconf-3.2.6-r0: task do_populate_sysroot: Succeeded
NOTE: Task /home/kubiznak/projects/poky/meta/recipes-gnome/gnome/gconf_3.2.6.bb:do_populate_sysroot unihash changed to 2b05f89c899005ab15fe4cf11ab8e6d8be18d28a996d2a50e63a71cc910da1c2
NOTE: Setscene task /home/kubiznak/projects/poky/meta/recipes-graphics/matchbox-wm/matchbox-wm_1.2.2.bb:do_populate_sysroot became valid
NOTE: Running setscene task 5816 of 5830 (/home/kubiznak/projects/poky/meta/recipes-graphics/matchbox-wm/matchbox-wm_1.2.2.bb:do_populate_sysroot_setscene)
NOTE: recipe matchbox-wm-1.2.2-r0: task do_populate_sysroot_setscene: Started
NOTE: recipe matchbox-wm-1.2.2-r0: task do_populate_sysroot_setscene: Succeeded
NOTE: Setscene tasks completed
ERROR: rust-1.66.0-r0 do_compile: ExecutionError('/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/temp/run.do_compile.1080378', 1, None, None)
ERROR: Logfile of failure stored in: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/temp/log.do_compile.1080378
NOTE: recipe rust-1.66.0-r0: task do_compile: Failed
ERROR: Task (/home/kubiznak/projects/poky/meta/recipes-devtools/rust/rust_1.66.0.bb:do_compile) failed with exit code '1'
NOTE: recipe avahi-0.8-r0: task do_configure: Succeeded
NOTE: recipe gconf-3.2.6-r0: task do_package: Succeeded
NOTE: recipe connman-1.41-r0: task do_configure: Succeeded
NOTE: recipe harfbuzz-5.3.1-r0: task do_compile: Succeeded
NOTE: recipe strace-6.0-r0: task do_configure: Succeeded
NOTE: recipe libdnf-0.69.0-r0: task do_compile: Succeeded
NOTE: Tasks Summary: Attempted 9303 tasks of which 9209 didn't need to be rerun and 1 failed.

[-- Attachment #3: log.do_compile.1080378 --]
[-- Type: application/octet-stream, Size: 151048 bytes --]

DEBUG: Executing shell function do_compile
COMPILE rust build --stage 2
/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/src/bootstrap/bootstrap.py:5: DeprecationWarning: The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives
  import distutils.version
Building rustbuild
running: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rust-snapshot/bin/cargo build --manifest-path /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/src/bootstrap/Cargo.toml --verbose --frozen
       Fresh cfg-if v1.0.0
       Fresh version_check v0.9.4
       Fresh unicode-ident v1.0.0
       Fresh proc-macro2 v1.0.46
       Fresh memchr v2.5.0
       Fresh typenum v1.15.0
       Fresh libc v0.2.126
       Fresh quote v1.0.18
       Fresh cc v1.0.73
       Fresh lazy_static v1.4.0
       Fresh syn v1.0.102
       Fresh generic-array v0.14.5
       Fresh regex-automata v0.1.10
       Fresh pkg-config v0.3.25
       Fresh bstr v0.2.17
       Fresh serde_derive v1.0.137
       Fresh aho-corasick v0.7.18
       Fresh regex-syntax v0.6.26
       Fresh regex v1.5.6
       Fresh serde v1.0.137
       Fresh io-lifetimes v0.7.2
       Fresh log v0.4.17
       Fresh block-buffer v0.10.2
       Fresh crypto-common v0.1.3
       Fresh bitflags v1.3.2
       Fresh fnv v1.0.7
       Fresh once_cell v1.12.0
       Fresh linux-raw-sys v0.0.46
       Fresh same-file v1.0.6
       Fresh walkdir v2.3.2
       Fresh rustix v0.35.6
       Fresh thread_local v1.1.4
       Fresh globset v0.4.8
       Fresh digest v0.10.3
       Fresh lzma-sys v0.1.17
       Fresh crossbeam-utils v0.8.8
       Fresh xattr v0.2.3
       Fresh filetime v0.2.16
       Fresh unicode-width v0.1.9
       Fresh itoa v1.0.2
       Fresh cpufeatures v0.2.2
       Fresh ryu v1.0.10
       Fresh serde_json v1.0.81
       Fresh sha2 v0.10.2
       Fresh getopts v0.2.21
       Fresh tar v0.4.38
       Fresh ignore v0.4.18
       Fresh xz2 v0.1.6
       Fresh fd-lock v3.0.6
       Fresh toml v0.5.9
       Fresh opener v0.5.0
       Fresh cmake v0.1.48
       Fresh hex v0.4.3
       Fresh bootstrap v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/src/bootstrap)
    Finished dev [unoptimized] target(s) in 0.97s
running: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/bootstrap/debug/bootstrap -j 12 build --stage 2 --verbose
finding compilers
CC_x86_64-unknown-linux-gnu = "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-cc"
CFLAGS_x86_64-unknown-linux-gnu = ["-ffunction-sections", "-fdata-sections", "-fPIC", "-m64", "-isystem/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/recipe-sysroot-native/usr/include", "-pipe"]
CXX_x86_64-unknown-linux-gnu = "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-cxx"
CXXFLAGS_x86_64-unknown-linux-gnu = ["-ffunction-sections", "-fdata-sections", "-fPIC", "-m64", "-isystem/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/recipe-sysroot-native/usr/include", "-pipe"]
AR_x86_64-unknown-linux-gnu = "x86_64-poky-linux-gcc-ar"
CC_x86_64-poky-linux-gnu = "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/target-rust-cc"
CFLAGS_x86_64-poky-linux-gnu = ["-ffunction-sections", "-fdata-sections", "-fPIC", "-m64", "-pipe", "-g", "-feliminate-unused-debug-types", "-fmacro-prefix-map=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src=/usr/src/debug/rust/1.66.0-r0", "-fdebug-prefix-map=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src=/usr/src/debug/rust/1.66.0-r0", "-fmacro-prefix-map=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src=/usr/src/debug/rust/1.66.0-r0", "-fdebug-prefix-map=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src=/usr/src/debug/rust/1.66.0-r0", "-fdebug-prefix-map=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/recipe-sysroot=", "-fmacro-prefix-map=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/recipe-sysroot=", "-fdebug-prefix-map=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/recipe-sysroot-native="]
CXX_x86_64-poky-linux-gnu = "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/target-rust-cxx"
CXXFLAGS_x86_64-poky-linux-gnu = ["-ffunction-sections", "-fdata-sections", "-fPIC", "-m64", "-pipe", "-g", "-feliminate-unused-debug-types", "-fmacro-prefix-map=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src=/usr/src/debug/rust/1.66.0-r0", "-fdebug-prefix-map=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src=/usr/src/debug/rust/1.66.0-r0", "-fmacro-prefix-map=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src=/usr/src/debug/rust/1.66.0-r0", "-fdebug-prefix-map=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src=/usr/src/debug/rust/1.66.0-r0", "-fdebug-prefix-map=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/recipe-sysroot=", "-fmacro-prefix-map=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/recipe-sysroot=", "-fdebug-prefix-map=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/recipe-sysroot-native=", "-fvisibility-inlines-hidden"]
AR_x86_64-poky-linux-gnu = "x86_64-poky-linux-gcc-ar"
running sanity check
learning about cargo
Building stage0 std artifacts (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu)
running: "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rust-snapshot/bin/cargo" "build" "--target" "x86_64-unknown-linux-gnu" "-Zcheck-cfg=names,values,output" "-Zbinary-dep-depinfo" "-j" "12" "-v" "--release" "--frozen" "--features" "panic-unwind backtrace profiler" "--manifest-path" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/test/Cargo.toml" "--message-format" "json-render-diagnostics"
       Fresh core v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/core)
       Fresh rustc-std-workspace-core v1.99.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/rustc-std-workspace-core)
       Fresh compiler_builtins v0.1.82
       Fresh alloc v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/alloc)
       Fresh cc v1.0.73
       Fresh rustc-std-workspace-alloc v1.99.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/rustc-std-workspace-alloc)
       Fresh libc v0.2.135
       Fresh cfg-if v0.1.10
       Fresh unwind v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/unwind)
       Fresh memchr v2.5.0
       Fresh gimli v0.25.0
       Fresh cfg-if v1.0.0
       Fresh adler v0.2.3
       Fresh miniz_oxide v0.4.0
       Fresh std_detect v0.1.5 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/stdarch/crates/std_detect)
       Fresh addr2line v0.16.0
       Fresh object v0.26.2
       Fresh panic_unwind v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/panic_unwind)
       Fresh profiler_builtins v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/profiler_builtins)
       Fresh panic_abort v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/panic_abort)
       Fresh hashbrown v0.12.3
       Fresh rustc-demangle v0.1.21
       Fresh std v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/std)
       Fresh rustc-std-workspace-std v1.99.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/rustc-std-workspace-std)
       Fresh unicode-width v0.1.10
       Fresh getopts v0.2.21
       Fresh proc_macro v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/proc_macro)
       Fresh test v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/test)
    Finished release [optimized] target(s) in 0.98s
Copying stage0 std from stage0 (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu / x86_64-unknown-linux-gnu)
Building stage0 compiler artifacts (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu)
running: "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rust-snapshot/bin/cargo" "build" "--target" "x86_64-unknown-linux-gnu" "-Zcheck-cfg=names,values,output,features" "-Zbinary-dep-depinfo" "-j" "12" "-v" "--release" "--frozen" "--features" "llvm max_level_info" "--manifest-path" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc/Cargo.toml" "--message-format" "json-render-diagnostics"
       Fresh unicode-ident v1.0.5
       Fresh proc-macro2 v1.0.46
       Fresh quote v1.0.18
       Fresh syn v1.0.102
       Fresh libc v0.2.135
       Fresh cfg-if v1.0.0
       Fresh version_check v0.9.3
       Fresh autocfg v1.1.0
       Fresh cfg-if v0.1.10
       Fresh once_cell v1.12.0
       Fresh getrandom v0.2.0
       Fresh proc-macro-hack v0.5.19
       Fresh unic-langid-macros-impl v0.9.0
       Fresh ahash v0.7.4
       Fresh hashbrown v0.12.3
       Fresh log v0.4.14
       Fresh tracing-core v0.1.28
       Fresh instant v0.1.12
       Fresh thiserror-impl v1.0.33
       Fresh scopeguard v1.1.0
       Fresh tracing-attributes v0.1.22
       Fresh indexmap v1.9.1
       Fresh pin-project-lite v0.2.8
       Fresh synstructure v0.12.6
       Fresh rustc-hash v1.1.0
       Fresh rand_core v0.6.2
       Fresh parking_lot_core v0.8.5
       Fresh lock_api v0.4.7
       Fresh tracing v0.1.35
       Fresh bitflags v1.3.2
       Fresh parking_lot v0.11.2
       Fresh typenum v1.12.0
       Fresh smallvec v1.8.1
       Fresh ppv-lite86 v0.2.8
       Fresh ena v0.14.0
       Fresh thin-vec v0.2.8
       Fresh stable_deref_trait v1.2.0
       Fresh generic-array v0.14.4
       Fresh rand_chacha v0.3.0
       Fresh psm v0.1.16
       Fresh rustc_serialize v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_serialize)
       Fresh memmap2 v0.2.1
       Fresh perf-event-open-sys v1.0.1
       Fresh remove_dir_all v0.5.3
       Fresh arrayvec v0.7.0
       Fresh jobserver v0.1.24
       Fresh rustc_graphviz v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_graphviz)
       Fresh block-buffer v0.10.2
       Fresh crypto-common v0.1.2
       Fresh rand v0.8.5
       Fresh rustc_macros v0.1.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_macros)
       Fresh measureme v10.1.0
       Fresh stacker v0.1.14
       Fresh cpufeatures v0.2.1
       Fresh tinystr v0.3.4
       Fresh unicode-width v0.1.10
       Fresh rustc_arena v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_arena)
       Fresh digest v0.10.2
       Fresh tempfile v3.2.0
       Fresh rustc_index v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_index)
       Fresh unic-langid-impl v0.9.0
       Fresh unic-common v0.9.0
       Fresh scoped-tls v1.0.0
       Fresh unic-char-range v0.9.0
       Fresh unicode-xid v0.2.4
       Fresh type-map v0.4.0
       Fresh rustc_data_structures v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_data_structures)
       Fresh sha2 v0.10.1
       Fresh md-5 v0.10.0
       Fresh unic-langid-macros v0.9.0
       Fresh sha-1 v0.10.0
       Fresh serde_derive v1.0.147
       Fresh unic-ucd-version v0.9.0
       Fresh unic-char-property v0.9.0
       Fresh thiserror v1.0.33
       Fresh self_cell v0.10.2
       Fresh unic-langid v0.9.0
       Fresh rustc_span v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_span)
       Fresh serde v1.0.147
       Fresh unic-emoji-char v0.9.0
       Fresh ryu v1.0.5
       Fresh fluent-syntax v0.11.0
       Fresh itoa v1.0.2
       Fresh atty v0.2.14
       Fresh lazy_static v1.4.0
       Fresh odht v0.3.1
       Fresh annotate-snippets v0.9.1
       Fresh rustc_lexer v0.1.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_lexer)
       Fresh fluent-langneg v0.13.0
       Fresh intl_pluralrules v7.0.1
       Fresh intl-memoizer v0.5.1
       Fresh rustc_feature v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_feature)
       Fresh serde_json v1.0.85
       Fresh termize v0.1.1
       Fresh termcolor v1.1.2
       Fresh getopts v0.2.21
       Fresh rustc_fs_util v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_fs_util)
       Fresh either v1.6.0
       Fresh chalk-derive v0.80.0
       Fresh rustc_ast v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_ast)
       Fresh fluent-bundle v0.15.2
       Fresh rustc_target v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_target)
       Fresh chalk-ir v0.80.0
       Fresh rustc_type_ir v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_type_ir)
       Fresh datafrog v2.0.1
       Fresh gsgdt v0.1.2
       Fresh rustc_apfloat v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_apfloat)
       Fresh tinyvec_macros v0.1.0
       Fresh rustc_parse_format v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_parse_format)
       Fresh regex-syntax v0.6.26
       Fresh rustc_error_messages v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_error_messages)
       Fresh rustc_ast_pretty v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_ast_pretty)
       Fresh polonius-engine v0.13.0
       Fresh tinyvec v1.6.0
       Fresh itertools v0.10.5
       Fresh regex-automata v0.1.10
       Fresh sharded-slab v0.1.1
       Fresh tracing-log v0.1.2
       Fresh thread_local v1.1.4
       Fresh ansi_term v0.12.1
       Fresh rustc_hir v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_hir)
       Fresh memchr v2.5.0
       Fresh unicode-normalization v0.1.22
       Fresh matchers v0.1.0
       Fresh unicode-script v0.5.5
       Fresh adler v0.2.3
       Fresh libloading v0.7.1
       Fresh fixedbitset v0.2.0
       Fresh fallible-iterator v0.2.0
       Fresh rustc_lint_defs v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_lint_defs)
       Fresh aho-corasick v0.7.18
       Fresh crossbeam-utils v0.8.8
       Fresh rustc_hir_pretty v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_hir_pretty)
       Fresh miniz_oxide v0.4.0
       Fresh unicode-security v0.1.0
       Fresh petgraph v0.5.1
       Fresh gimli v0.26.1
       Fresh rustc-demangle v0.1.21
       Fresh rustc_errors v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_errors)
       Fresh regex v1.5.6
       Fresh crossbeam-channel v0.5.4
       Fresh crc32fast v1.3.2
       Fresh snap v1.0.1
       Fresh punycode v0.4.1
       Fresh pathdiff v0.2.1
       Fresh cc v1.0.73
       Fresh rls-span v0.5.3
       Fresh rand_xoshiro v0.6.0
       Fresh cstr v0.2.8
       Fresh rustc_session v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_session)
       Fresh tracing-subscriber v0.3.3
       Fresh flate2 v1.0.16
       Fresh rustc_llvm v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_llvm)
       Fresh rls-data v0.19.1
       Fresh rustc_error_codes v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_error_codes)
       Fresh rustc_attr v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_attr)
       Fresh rustc_query_system v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_query_system)
       Fresh rustc_parse v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_parse)
       Fresh tracing-tree v0.2.0
       Fresh object v0.29.0
       Fresh rustc_middle v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_middle)
       Fresh rustc_ast_passes v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_ast_passes)
       Fresh chalk-solve v0.80.0
       Fresh thorin-dwp v0.3.0
       Fresh rustc_log v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_log)
       Fresh rustc_infer v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_infer)
       Fresh rustc_expand v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_expand)
       Fresh rustc_mir_dataflow v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_mir_dataflow)
       Fresh rustc_symbol_mangling v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_symbol_mangling)
       Fresh chalk-engine v0.80.0
       Fresh rustc_incremental v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_incremental)
       Fresh rustc_monomorphize v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_monomorphize)
       Fresh rustc_query_impl v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_query_impl)
       Fresh rustc_ast_lowering v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_ast_lowering)
       Fresh rustc_save_analysis v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_save_analysis)
       Fresh rustc_transmute v0.1.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_transmute)
       Fresh rustc_metadata v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_metadata)
       Fresh rustc_passes v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_passes)
       Fresh rustc_builtin_macros v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_builtin_macros)
       Fresh rustc_trait_selection v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_trait_selection)
       Fresh rustc_resolve v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_resolve)
       Fresh rustc_const_eval v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_const_eval)
       Fresh rustc_lint v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_lint)
       Fresh rustc_traits v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_traits)
       Fresh rustc_mir_build v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_mir_build)
       Fresh rustc_ty_utils v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_ty_utils)
       Fresh rustc_hir_analysis v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_hir_analysis)
       Fresh rustc_codegen_ssa v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_codegen_ssa)
       Fresh rustc_mir_transform v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_mir_transform)
       Fresh rustc_borrowck v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_borrowck)
       Fresh rustc_plugin_impl v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_plugin_impl)
       Fresh rustc_hir_typeck v0.1.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_hir_typeck)
       Fresh rustc_privacy v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_privacy)
       Fresh rustc_codegen_llvm v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_codegen_llvm)
       Fresh rustc_interface v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_interface)
       Fresh rustc_driver v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_driver)
       Fresh rustc_smir v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_smir)
       Fresh rustc-main v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc)
    Finished release [optimized] target(s) in 1.05s
Copying stage0 rustc from stage0 (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu / x86_64-unknown-linux-gnu)
Assembling stage1 compiler (x86_64-unknown-linux-gnu)
Building stage1 std artifacts (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu)
running: "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rust-snapshot/bin/cargo" "build" "--target" "x86_64-unknown-linux-gnu" "-Zcheck-cfg=names,values,output" "-Zbinary-dep-depinfo" "-j" "12" "-v" "--release" "--frozen" "--features" "panic-unwind backtrace profiler" "--manifest-path" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/test/Cargo.toml" "--message-format" "json-render-diagnostics"
       Fresh core v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/core)
       Fresh rustc-std-workspace-core v1.99.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/rustc-std-workspace-core)
       Fresh compiler_builtins v0.1.82
       Fresh alloc v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/alloc)
       Fresh cc v1.0.73
       Fresh rustc-std-workspace-alloc v1.99.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/rustc-std-workspace-alloc)
       Fresh libc v0.2.135
       Fresh cfg-if v0.1.10
       Fresh unwind v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/unwind)
       Fresh memchr v2.5.0
       Fresh gimli v0.25.0
       Fresh adler v0.2.3
       Fresh cfg-if v1.0.0
       Fresh std_detect v0.1.5 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/stdarch/crates/std_detect)
       Fresh miniz_oxide v0.4.0
       Fresh addr2line v0.16.0
       Fresh object v0.26.2
       Fresh panic_unwind v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/panic_unwind)
       Fresh profiler_builtins v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/profiler_builtins)
       Fresh panic_abort v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/panic_abort)
       Fresh hashbrown v0.12.3
       Fresh rustc-demangle v0.1.21
       Fresh std v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/std)
       Fresh rustc-std-workspace-std v1.99.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/rustc-std-workspace-std)
       Fresh unicode-width v0.1.10
       Fresh getopts v0.2.21
       Fresh proc_macro v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/proc_macro)
       Fresh test v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/library/test)
    Finished release [optimized] target(s) in 0.58s
Copying stage1 std from stage1 (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu / x86_64-unknown-linux-gnu)
Building stage1 compiler artifacts (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu)
running: "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rust-snapshot/bin/cargo" "build" "--target" "x86_64-unknown-linux-gnu" "-Zcheck-cfg=names,values,output,features" "-Zbinary-dep-depinfo" "-j" "12" "-v" "--release" "--frozen" "--features" "llvm max_level_info" "--manifest-path" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc/Cargo.toml" "--message-format" "json-render-diagnostics"
       Fresh unicode-ident v1.0.5
       Fresh proc-macro2 v1.0.46
       Fresh quote v1.0.18
       Fresh syn v1.0.102
       Fresh libc v0.2.135
       Fresh cfg-if v1.0.0
       Fresh version_check v0.9.3
       Fresh autocfg v1.1.0
       Fresh cfg-if v0.1.10
       Fresh once_cell v1.12.0
       Fresh getrandom v0.2.0
       Fresh proc-macro-hack v0.5.19
       Fresh unic-langid-macros-impl v0.9.0
       Fresh ahash v0.7.4
       Fresh hashbrown v0.12.3
       Fresh log v0.4.14
       Fresh indexmap v1.9.1
       Fresh tracing-core v0.1.28
       Fresh instant v0.1.12
       Fresh thiserror-impl v1.0.33
       Fresh scopeguard v1.1.0
       Fresh lock_api v0.4.7
       Fresh parking_lot_core v0.8.5
   Compiling unic-langid-macros v0.9.0
    Building [===>                      ] 47/264: unic-langid-macros          \r     Running `/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/bootstrap/debug/rustc --crate-name unic_langid_macros --edition=2018 /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=0 -C debug-assertions=off -Zunstable-options --check-cfg 'values(feature)' --check-cfg 'names()' --check-cfg 'values()' -C metadata=a9a95eb7d9445aec -C extra-filename=-a9a95eb7d9445aec --out-dir /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps -C linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps --extern proc_macro_hack=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libproc_macro_hack-b3aff3a912ecd777.so --extern tinystr=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libtinystr-3eda47f8273e5e2d.rmeta --extern unic_langid_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_impl-e251b1a50fe3e3db.rmeta --extern unic_langid_macros_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so --cap-lints allow -Z binary-dep-depinfo`
       Fresh tracing-attributes v0.1.22
       Fresh pin-project-lite v0.2.8
   Compiling tracing v0.1.35
    Building [====>                     ] 52/264: tracing, unic-langid-macros \r       Fresh synstructure v0.12.6
       Fresh parking_lot v0.11.2
       Fresh typenum v1.12.0
       Fresh rustc-hash v1.1.0
       Fresh generic-array v0.14.4
   Compiling thiserror v1.0.33
    Building [=====>                    ] 61/264: thiserror, tracing, unic-...\r       Fresh rand_core v0.6.2
       Fresh bitflags v1.3.2
       Fresh smallvec v1.8.1
       Fresh ppv-lite86 v0.2.8
       Fresh rand_chacha v0.3.0
       Fresh block-buffer v0.10.2
       Fresh crypto-common v0.1.2
       Fresh ena v0.14.0
       Fresh thin-vec v0.2.8
       Fresh stable_deref_trait v1.2.0
       Fresh rustc_serialize v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_serialize)
       Fresh digest v0.10.2
       Fresh psm v0.1.16
       Fresh rand v0.8.5
       Fresh memmap2 v0.2.1
       Fresh perf-event-open-sys v1.0.1
       Fresh arrayvec v0.7.0
       Fresh remove_dir_all v0.5.3
       Fresh tempfile v3.2.0
       Fresh measureme v10.1.0
       Fresh stacker v0.1.14
       Fresh jobserver v0.1.24
       Fresh cpufeatures v0.2.1
       Fresh unicode-width v0.1.10
       Fresh tinystr v0.3.4
       Fresh rustc_graphviz v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_graphviz)
       Fresh unic-langid-impl v0.9.0
       Fresh serde_derive v1.0.147
    Building [========>                ] 100/264: tracing, unic-langid-macr...\r       Fresh sha-1 v0.10.0
       Fresh sha2 v0.10.1
       Fresh md-5 v0.10.0
       Fresh rustc_arena v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_arena)
       Fresh unic-common v0.9.0
       Fresh scoped-tls v1.0.0
       Fresh unic-char-range v0.9.0
       Fresh unic-char-property v0.9.0
       Fresh unic-ucd-version v0.9.0
   Compiling serde v1.0.147
    Building [=========>               ] 109/264: tracing, unic-langid-macr...\r       Fresh unic-emoji-char v0.9.0
       Fresh unicode-xid v0.2.4
       Fresh rustc_lexer v0.1.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_lexer)
       Fresh type-map v0.4.0
    Building [=========>               ] 115/264: tracing, unic-langid-macr...\r       Fresh ryu v1.0.5
       Fresh self_cell v0.10.2
       Fresh itoa v1.0.2
       Fresh atty v0.2.14
       Fresh lazy_static v1.4.0
       Fresh odht v0.3.1
       Fresh annotate-snippets v0.9.1
       Fresh termize v0.1.1
       Fresh termcolor v1.1.2
       Fresh getopts v0.2.21
       Fresh rustc_fs_util v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_fs_util)
       Fresh either v1.6.0
       Fresh chalk-derive v0.80.0
   Compiling chalk-ir v0.80.0
    Building [===========>             ] 130/264: chalk-ir, tracing, unic-l...\r       Fresh datafrog v2.0.1
       Fresh polonius-engine v0.13.0
       Fresh rustc_apfloat v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_apfloat)
     Running `/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/bootstrap/debug/rustc --crate-name chalk_ir --edition=2018 /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C debuginfo=0 -Zunstable-options --check-cfg 'values(feature)' --check-cfg 'names()' --check-cfg 'values()' -C metadata=04f8d3413a059043 -C extra-filename=-04f8d3413a059043 --out-dir /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps --target x86_64-unknown-linux-gnu -C linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps --extern bitflags=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libbitflags-49976065b2a9a15f.rmeta --extern chalk_derive=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libchalk_derive-cf395423a8c37a03.so --extern lazy_static=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/liblazy_static-ab5f12a928675aed.rmeta --cap-lints allow --remap-path-prefix=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0=/usr/src/debug/rust/1.66.0-r0 -Csymbol-mangling-version=v0 -Zunstable-options '--check-cfg=values(bootstrap)' '--check-cfg=values(parallel_compiler)' '--check-cfg=values(no_btreemap_remove_entry)' '--check-cfg=values(crossbeam_loom)' '--check-cfg=values(span_locations)' '--check-cfg=values(rustix_use_libc)' -Zmacro-backtrace -Clink-args=-Wl,-z,origin '-Clink-args=-Wl,-rpath,$ORIGIN/../lib' -Csplit-debuginfo=off -Zunstable-options '-Wrustc::internal' -Cprefer-dynamic -Z binary-dep-depinfo`
       Fresh tinyvec_macros v0.1.0
       Fresh tinyvec v1.6.0
       Fresh memchr v2.5.0
       Fresh unicode-normalization v0.1.22
       Fresh rustc_parse_format v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_parse_format)
       Fresh regex-syntax v0.6.26
       Fresh itertools v0.10.5
       Fresh aho-corasick v0.7.18
       Fresh regex v1.5.6
       Fresh crossbeam-utils v0.8.8
       Fresh crossbeam-channel v0.5.4
       Fresh regex-automata v0.1.10
       Fresh matchers v0.1.0
       Fresh tracing-log v0.1.2
       Fresh sharded-slab v0.1.1
       Fresh thread_local v1.1.4
       Fresh ansi_term v0.12.1
       Fresh unicode-script v0.5.5
       Fresh adler v0.2.3
       Fresh miniz_oxide v0.4.0
       Fresh unicode-security v0.1.0
       Fresh snap v1.0.1
       Fresh crc32fast v1.3.2
       Fresh libloading v0.7.1
       Fresh fixedbitset v0.2.0
       Fresh petgraph v0.5.1
       Fresh flate2 v1.0.16
       Fresh fallible-iterator v0.2.0
       Fresh gimli v0.26.1
       Fresh object v0.29.0
       Fresh rustc-demangle v0.1.21
       Fresh punycode v0.4.1
       Fresh pathdiff v0.2.1
       Fresh cc v1.0.73
       Fresh rustc_llvm v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_llvm)
       Fresh rand_xoshiro v0.6.0
       Fresh cstr v0.2.8
       Fresh rustc_error_codes v0.0.0 (/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc_error_codes)
    Building [================>        ] 183/264: unic-langid-macros, serde...\r     Running `/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/bootstrap/debug/rustc --crate-name thiserror --edition=2018 /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/thiserror-1.0.33/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C debuginfo=0 -Zunstable-options --check-cfg 'values(feature)' --check-cfg 'names()' --check-cfg 'values()' -C metadata=cbc5d1f2285b4e00 -C extra-filename=-cbc5d1f2285b4e00 --out-dir /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps --target x86_64-unknown-linux-gnu -C linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps --extern thiserror_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libthiserror_impl-5356a7b8d953f185.so --cap-lints allow --remap-path-prefix=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0=/usr/src/debug/rust/1.66.0-r0 -Csymbol-mangling-version=v0 -Zunstable-options '--check-cfg=values(bootstrap)' '--check-cfg=values(parallel_compiler)' '--check-cfg=values(no_btreemap_remove_entry)' '--check-cfg=values(crossbeam_loom)' '--check-cfg=values(span_locations)' '--check-cfg=values(rustix_use_libc)' -Zmacro-backtrace -Clink-args=-Wl,-z,origin '-Clink-args=-Wl,-rpath,$ORIGIN/../lib' -Csplit-debuginfo=off -Zunstable-options '-Wrustc::internal' -Cprefer-dynamic -Z binary-dep-depinfo`
     Running `/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/bootstrap/debug/rustc --crate-name tracing --edition=2018 /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/tracing-0.1.35/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C debuginfo=0 --cfg 'feature="attributes"' --cfg 'feature="default"' --cfg 'feature="max_level_info"' --cfg 'feature="std"' --cfg 'feature="tracing-attributes"' -Zunstable-options --check-cfg 'values(feature, "async-await", "attributes", "default", "log", "log-always", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "std", "tracing-attributes", "valuable")' --check-cfg 'names()' --check-cfg 'values()' -C metadata=756dbad13ba33c4b -C extra-filename=-756dbad13ba33c4b --out-dir /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps --target x86_64-unknown-linux-gnu -C linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps --extern cfg_if=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libcfg_if-43552cbc730f1163.rmeta --extern pin_project_lite=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libpin_project_lite-933170d3cb116850.rmeta --extern tracing_attributes=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libtracing_attributes-6cc4b6cd3070c7c7.so --extern tracing_core=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libtracing_core-f1f44fbccc42fca2.rmeta --cap-lints allow --remap-path-prefix=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0=/usr/src/debug/rust/1.66.0-r0 -Csymbol-mangling-version=v0 -Zunstable-options '--check-cfg=values(bootstrap)' '--check-cfg=values(parallel_compiler)' '--check-cfg=values(no_btreemap_remove_entry)' '--check-cfg=values(crossbeam_loom)' '--check-cfg=values(span_locations)' '--check-cfg=values(rustix_use_libc)' -Zmacro-backtrace -Clink-args=-Wl,-z,origin '-Clink-args=-Wl,-rpath,$ORIGIN/../lib' -Csplit-debuginfo=off -Zunstable-options '-Wrustc::internal' -Cprefer-dynamic -Z binary-dep-depinfo`
     Running `/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/bootstrap/debug/rustc --crate-name serde /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/serde/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C debuginfo=0 --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="serde_derive"' --cfg 'feature="std"' -Zunstable-options --check-cfg 'values(feature, "alloc", "default", "derive", "rc", "serde_derive", "std", "unstable")' --check-cfg 'names()' --check-cfg 'values()' -C metadata=ef162299ce0aae0d -C extra-filename=-ef162299ce0aae0d --out-dir /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps --target x86_64-unknown-linux-gnu -C linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps --extern serde_derive=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libserde_derive-4c8d83fec2692712.so --cap-lints allow --remap-path-prefix=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0=/usr/src/debug/rust/1.66.0-r0 -Csymbol-mangling-version=v0 -Zunstable-options '--check-cfg=values(bootstrap)' '--check-cfg=values(parallel_compiler)' '--check-cfg=values(no_btreemap_remove_entry)' '--check-cfg=values(crossbeam_loom)' '--check-cfg=values(span_locations)' '--check-cfg=values(rustix_use_libc)' -Zmacro-backtrace -Clink-args=-Wl,-z,origin '-Clink-args=-Wl,-rpath,$ORIGIN/../lib' -Csplit-debuginfo=off -Zunstable-options '-Wrustc::internal' -Cprefer-dynamic -Z binary-dep-depinfo`
     Running `/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/bootstrap/debug/rustc --crate-name thiserror --edition=2018 /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/thiserror-1.0.33/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=0 -C debug-assertions=off -Zunstable-options --check-cfg 'values(feature)' --check-cfg 'names()' --check-cfg 'values()' -C metadata=f04cef924fab07a0 -C extra-filename=-f04cef924fab07a0 --out-dir /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps -C linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps --extern thiserror_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libthiserror_impl-5356a7b8d953f185.so --cap-lints allow -Z binary-dep-depinfo`
     Running `/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/bootstrap/debug/rustc --crate-name unic_langid_macros --edition=2018 /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C debuginfo=0 -Zunstable-options --check-cfg 'values(feature)' --check-cfg 'names()' --check-cfg 'values()' -C metadata=12d5a61819b96f55 -C extra-filename=-12d5a61819b96f55 --out-dir /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps --target x86_64-unknown-linux-gnu -C linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps --extern proc_macro_hack=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libproc_macro_hack-b3aff3a912ecd777.so --extern tinystr=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libtinystr-7febed52bb30e400.rmeta --extern unic_langid_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libunic_langid_impl-009f4c380584b186.rmeta --extern unic_langid_macros_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so --cap-lints allow --remap-path-prefix=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0=/usr/src/debug/rust/1.66.0-r0 -Csymbol-mangling-version=v0 -Zunstable-options '--check-cfg=values(bootstrap)' '--check-cfg=values(parallel_compiler)' '--check-cfg=values(no_btreemap_remove_entry)' '--check-cfg=values(crossbeam_loom)' '--check-cfg=values(span_locations)' '--check-cfg=values(rustix_use_libc)' -Zmacro-backtrace -Clink-args=-Wl,-z,origin '-Clink-args=-Wl,-rpath,$ORIGIN/../lib' -Csplit-debuginfo=off -Zunstable-options '-Wrustc::internal' -Cprefer-dynamic -Z binary-dep-depinfo`
error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so: undefined symbol: _Ungind_Resume
 --> /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs:5:9
  |
5 | pub use unic_langid_macros_impl::langid;
  |         ^^^^^^^^^^^^^^^^^^^^^^^

error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libthiserror_impl-5356a7b8d953f185.so: undefined symbol: _Ungind_Resume
   --> /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/thiserror-1.0.33/src/lib.rs:214:9
    |
214 | pub use thiserror_impl::*;
    |         ^^^^^^^^^^^^^^

error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so: undefined symbol: _Ungind_Resume
 --> /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs:8:9
  |
8 | pub use unic_langid_macros_impl::lang;
  |         ^^^^^^^^^^^^^^^^^^^^^^^

error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so: undefined symbol: _Ungind_Resume
  --> /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs:11:9
   |
11 | pub use unic_langid_macros_impl::script;
   |         ^^^^^^^^^^^^^^^^^^^^^^^

error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so: undefined symbol: _Ungind_Resume
  --> /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs:14:9
   |
14 | pub use unic_langid_macros_impl::region;
   |         ^^^^^^^^^^^^^^^^^^^^^^^

error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so: undefined symbol: _Ungind_Resume
  --> /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs:17:9
   |
17 | pub use unic_langid_macros_impl::variant_fn as variant;
   |         ^^^^^^^^^^^^^^^^^^^^^^^

error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libthiserror_impl-5356a7b8d953f185.so: undefined symbol: _Ungind_Resume
   --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/thiserror-1.0.33/src/lib.rs:214:9
    |
214 | pub use thiserror_impl::*;
    |         ^^^^^^^^^^^^^^

error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so: undefined symbol: _Ungind_Resume
 --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs:5:9
  |
5 | pub use unic_langid_macros_impl::langid;
  |         ^^^^^^^^^^^^^^^^^^^^^^^

error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so: undefined symbol: _Ungind_Resume
 --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs:8:9
  |
8 | pub use unic_langid_macros_impl::lang;
  |         ^^^^^^^^^^^^^^^^^^^^^^^

error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so: undefined symbol: _Ungind_Resume
  --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs:11:9
   |
11 | pub use unic_langid_macros_impl::script;
   |         ^^^^^^^^^^^^^^^^^^^^^^^

error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so: undefined symbol: _Ungind_Resume
  --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs:14:9
   |
14 | pub use unic_langid_macros_impl::region;
   |         ^^^^^^^^^^^^^^^^^^^^^^^

error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so: undefined symbol: _Ungind_Resume
  --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs:17:9
   |
17 | pub use unic_langid_macros_impl::variant_fn as variant;
   |         ^^^^^^^^^^^^^^^^^^^^^^^

error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libtracing_attributes-6cc4b6cd3070c7c7.so: undefined symbol: _Ungind_Resume
   --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/tracing-0.1.35/src/lib.rs:951:9
    |
951 | pub use tracing_attributes::instrument;
    |         ^^^^^^^^^^^^^^^^^^


Did not run successfully: exit status: 1
"/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1/bin/rustc" "--crate-name" "thiserror" "--edition=2018" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/thiserror-1.0.33/src/lib.rs" "--error-format=json" "--json=diagnostic-rendered-ansi,artifacts,future-incompat" "--crate-type" "lib" "--emit=dep-info,metadata,link" "-C" "embed-bitcode=no" "-C" "debuginfo=0" "-C" "debug-assertions=off" "-Zunstable-options" "--check-cfg" "values(feature)" "--check-cfg" "names()" "--check-cfg" "values()" "-C" "metadata=f04cef924fab07a0" "-C" "extra-filename=-f04cef924fab07a0" "--out-dir" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps" "-C" "linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld" "-L" "dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps" "--extern" "thiserror_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libthiserror_impl-5356a7b8d953f185.so" "--cap-lints" "allow" "-Z" "binary-dep-depinfo" "-Wrust_2018_idioms" "-Wunused_lifetimes" "-Wsemicolon_in_expressions_from_macros" "-Dwarnings" "-Clinker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld" "-Zunstable-options" "--check-cfg=values(bootstrap)" "-Z" "force-unstable-if-unmarked"
-------------
error: could not compile `thiserror` due to previous error

Caused by:
  process didn't exit successfully: `/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/bootstrap/debug/rustc --crate-name thiserror --edition=2018 /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/thiserror-1.0.33/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=0 -C debug-assertions=off -Zunstable-options --check-cfg 'values(feature)' --check-cfg 'names()' --check-cfg 'values()' -C metadata=f04cef924fab07a0 -C extra-filename=-f04cef924fab07a0 --out-dir /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps -C linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps --extern thiserror_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libthiserror_impl-5356a7b8d953f185.so --cap-lints allow -Z binary-dep-depinfo` (exit status: 1)
warning: build failed, waiting for other jobs to finish...
    Building [================>        ] 184/264: unic-langid-macros, serde...\rerror: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libserde_derive-4c8d83fec2692712.so: undefined symbol: _Ungind_Resume
   --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/serde/src/lib.rs:305:1
    |
305 | extern crate serde_derive;
    | ^^^^^^^^^^^^^^^^^^^^^^^^^^


Did not run successfully: exit status: 1
"/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1/bin/rustc" "--crate-name" "thiserror" "--edition=2018" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/thiserror-1.0.33/src/lib.rs" "--error-format=json" "--json=diagnostic-rendered-ansi,artifacts,future-incompat" "--crate-type" "lib" "--emit=dep-info,metadata,link" "-C" "opt-level=3" "-C" "embed-bitcode=no" "-C" "debuginfo=0" "-Zunstable-options" "--check-cfg" "values(feature)" "--check-cfg" "names()" "--check-cfg" "values()" "-C" "metadata=cbc5d1f2285b4e00" "-C" "extra-filename=-cbc5d1f2285b4e00" "--out-dir" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps" "--target" "x86_64-unknown-linux-gnu" "-C" "linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld" "-L" "dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps" "-L" "dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps" "--extern" "thiserror_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libthiserror_impl-5356a7b8d953f185.so" "--cap-lints" "allow" "--remap-path-prefix=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0=/usr/src/debug/rust/1.66.0-r0" "-Csymbol-mangling-version=v0" "-Zunstable-options" "--check-cfg=values(bootstrap)" "--check-cfg=values(parallel_compiler)" "--check-cfg=values(no_btreemap_remove_entry)" "--check-cfg=values(crossbeam_loom)" "--check-cfg=values(span_locations)" "--check-cfg=values(rustix_use_libc)" "-Zmacro-backtrace" "-Clink-args=-Wl,-z,origin" "-Clink-args=-Wl,-rpath,$ORIGIN/../lib" "-Csplit-debuginfo=off" "-Zunstable-options" "-Wrustc::internal" "-Cprefer-dynamic" "-Z" "binary-dep-depinfo" "-Wrust_2018_idioms" "-Wunused_lifetimes" "-Wsemicolon_in_expressions_from_macros" "-Dwarnings" "--sysroot" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1" "-Ztls-model=initial-exec" "-Z" "force-unstable-if-unmarked"
-------------
error: could not compile `thiserror` due to previous error

Caused by:
  process didn't exit successfully: `/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/bootstrap/debug/rustc --crate-name thiserror --edition=2018 /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/thiserror-1.0.33/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C debuginfo=0 -Zunstable-options --check-cfg 'values(feature)' --check-cfg 'names()' --check-cfg 'values()' -C metadata=cbc5d1f2285b4e00 -C extra-filename=-cbc5d1f2285b4e00 --out-dir /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps --target x86_64-unknown-linux-gnu -C linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps --extern thiserror_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libthiserror_impl-5356a7b8d953f185.so --cap-lints allow --remap-path-prefix=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0=/usr/src/debug/rust/1.66.0-r0 -Csymbol-mangling-version=v0 -Zunstable-options '--check-cfg=values(bootstrap)' '--check-cfg=values(parallel_compiler)' '--check-cfg=values(no_btreemap_remove_entry)' '--check-cfg=values(crossbeam_loom)' '--check-cfg=values(span_locations)' '--check-cfg=values(rustix_use_libc)' -Zmacro-backtrace -Clink-args=-Wl,-z,origin '-Clink-args=-Wl,-rpath,$ORIGIN/../lib' -Csplit-debuginfo=off -Zunstable-options '-Wrustc::internal' -Cprefer-dynamic -Z binary-dep-depinfo` (exit status: 1)
    Building [================>        ] 185/264: unic-langid-macros, serde...
Did not run successfully: exit status: 1
"/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1/bin/rustc" "--crate-name" "unic_langid_macros" "--edition=2018" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs" "--error-format=json" "--json=diagnostic-rendered-ansi,artifacts,future-incompat" "--crate-type" "lib" "--emit=dep-info,metadata,link" "-C" "embed-bitcode=no" "-C" "debuginfo=0" "-C" "debug-assertions=off" "-Zunstable-options" "--check-cfg" "values(feature)" "--check-cfg" "names()" "--check-cfg" "values()" "-C" "metadata=a9a95eb7d9445aec" "-C" "extra-filename=-a9a95eb7d9445aec" "--out-dir" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps" "-C" "linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld" "-L" "dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps" "--extern" "proc_macro_hack=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libproc_macro_hack-b3aff3a912ecd777.so" "--extern" "tinystr=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libtinystr-3eda47f8273e5e2d.rmeta" "--extern" "unic_langid_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_impl-e251b1a50fe3e3db.rmeta" "--extern" "unic_langid_macros_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so" "--cap-lints" "allow" "-Z" "binary-dep-depinfo" "-Wrust_2018_idioms" "-Wunused_lifetimes" "-Wsemicolon_in_expressions_from_macros" "-Dwarnings" "-Clinker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld" "-Zunstable-options" "--check-cfg=values(bootstrap)" "-Z" "force-unstable-if-unmarked"
-------------
error: could not compile `unic-langid-macros` due to 5 previous errors

Caused by:
  process didn't exit successfully: `/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/bootstrap/debug/rustc --crate-name unic_langid_macros --edition=2018 /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=0 -C debug-assertions=off -Zunstable-options --check-cfg 'values(feature)' --check-cfg 'names()' --check-cfg 'values()' -C metadata=a9a95eb7d9445aec -C extra-filename=-a9a95eb7d9445aec --out-dir /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps -C linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps --extern proc_macro_hack=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libproc_macro_hack-b3aff3a912ecd777.so --extern tinystr=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libtinystr-3eda47f8273e5e2d.rmeta --extern unic_langid_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_impl-e251b1a50fe3e3db.rmeta --extern unic_langid_macros_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so --cap-lints allow -Z binary-dep-depinfo` (exit status: 1)
    Building [================>        ] 186/264: serde, chalk-ir, tracing,...
Did not run successfully: exit status: 1
error: could not compile `unic-langid-macros` due to 5 previous errors

Caused by:
  process didn't exit successfully: `/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/bootstrap/debug/rustc --crate-name unic_langid_macros --edition=2018 /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C debuginfo=0 -Zunstable-options --check-cfg 'values(feature)' --check-cfg 'names()' --check-cfg 'values()' -C metadata=12d5a61819b96f55 -C extra-filename=-12d5a61819b96f55 --out-dir /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps --target x86_64-unknown-linux-gnu -C linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps --extern proc_macro_hack=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libproc_macro_hack-b3aff3a912ecd777.so --extern tinystr=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libtinystr-7febed52bb30e400.rmeta --extern unic_langid_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libunic_langid_impl-009f4c380584b186.rmeta --extern unic_langid_macros_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so --cap-lints allow --remap-path-prefix=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0=/usr/src/debug/rust/1.66.0-r0 -Csymbol-mangling-version=v0 -Zunstable-options '--check-cfg=values(bootstrap)' '--check-cfg=values(parallel_compiler)' '--check-cfg=values(no_btreemap_remove_entry)' '--check-cfg=values(crossbeam_loom)' '--check-cfg=values(span_locations)' '--check-cfg=values(rustix_use_libc)' -Zmacro-backtrace -Clink-args=-Wl,-z,origin '-Clink-args=-Wl,-rpath,$ORIGIN/../lib' -Csplit-debuginfo=off -Zunstable-options '-Wrustc::internal' -Cprefer-dynamic -Z binary-dep-depinfo` (exit status: 1)
    Building [================>        ] 187/264: serde, chalk-ir, tracing    \r"/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1/bin/rustc" "--crate-name" "unic_langid_macros" "--edition=2018" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs" "--error-format=json" "--json=diagnostic-rendered-ansi,artifacts,future-incompat" "--crate-type" "lib" "--emit=dep-info,metadata,link" "-C" "opt-level=3" "-C" "embed-bitcode=no" "-C" "debuginfo=0" "-Zunstable-options" "--check-cfg" "values(feature)" "--check-cfg" "names()" "--check-cfg" "values()" "-C" "metadata=12d5a61819b96f55" "-C" "extra-filename=-12d5a61819b96f55" "--out-dir" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps" "--target" "x86_64-unknown-linux-gnu" "-C" "linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld" "-L" "dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps" "-L" "dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps" "--extern" "proc_macro_hack=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libproc_macro_hack-b3aff3a912ecd777.so" "--extern" "tinystr=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libtinystr-7febed52bb30e400.rmeta" "--extern" "unic_langid_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libunic_langid_impl-009f4c380584b186.rmeta" "--extern" "unic_langid_macros_impl=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so" "--cap-lints" "allow" "--remap-path-prefix=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0=/usr/src/debug/rust/1.66.0-r0" "-Csymbol-mangling-version=v0" "-Zunstable-options" "--check-cfg=values(bootstrap)" "--check-cfg=values(parallel_compiler)" "--check-cfg=values(no_btreemap_remove_entry)" "--check-cfg=values(crossbeam_loom)" "--check-cfg=values(span_locations)" "--check-cfg=values(rustix_use_libc)" "-Zmacro-backtrace" "-Clink-args=-Wl,-z,origin" "-Clink-args=-Wl,-rpath,$ORIGIN/../lib" "-Csplit-debuginfo=off" "-Zunstable-options" "-Wrustc::internal" "-Cprefer-dynamic" "-Z" "binary-dep-depinfo" "-Wrust_2018_idioms" "-Wunused_lifetimes" "-Wsemicolon_in_expressions_from_macros" "-Dwarnings" "--sysroot" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1" "-Ztls-model=initial-exec" "-Z" "force-unstable-if-unmarked"
-------------
error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libchalk_derive-cf395423a8c37a03.so: undefined symbol: _Ungind_Resume
  --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:13:5
   |
13 | use chalk_derive::{Fold, HasInterner, SuperVisit, Visit, Zip};
   |     ^^^^^^^^^^^^

error[E0432]: unresolved imports `super::Fold`, `crate::Visit`, `crate::SuperVisit`, `crate::Visit`, `crate::Visit`
  --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/fold/shift.rs:3:5
   |
3  | use super::Fold;
   |     ^^^^^^^^^^^
   |
  ::: /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/visit/binder_impls.rs:7:82
   |
7  | use crate::{Binders, Canonical, ControlFlow, DebruijnIndex, FnPointer, Interner, Visit, Visitor};
   |                                                                                  ^^^^^
   |
  ::: /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/visit/boring_impls.rs:11:75
   |
11 |     QuantifiedWhereClauses, QuantifierKind, Safety, Scalar, Substitution, SuperVisit, TraitId,
   |                                                                           ^^^^^^^^^^
12 |     UintTy, UniverseIndex, Visit, Visitor,
   |                            ^^^^^
   |
  ::: /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/visit/visitors.rs:3:61
   |
3  | use crate::{BoundVar, ControlFlow, DebruijnIndex, Interner, Visit, Visitor};
   |                                                             ^^^^^

error: cannot determine resolution for the derive macro `Fold`
   --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:150:38
    |
150 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
    |                                      ^^^^
    |
    = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
   --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:150:44
    |
150 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
    |                                            ^^^^^
    |
    = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
   --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:150:51
    |
150 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
    |                                                   ^^^^^^^^^^^
    |
    = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
   --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:200:45
    |
200 | #[derive(Clone, Debug, PartialEq, Eq, Hash, Fold, Visit)]
    |                                             ^^^^
    |
    = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
   --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:200:51
    |
200 | #[derive(Clone, Debug, PartialEq, Eq, Hash, Fold, Visit)]
    |                                                   ^^^^^
    |
    = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
   --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:410:61
    |
410 | #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, HasInterner)]
    |                                                             ^^^^^^^^^^^
    |
    = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
   --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:522:38
    |
522 | #[derive(Clone, PartialEq, Eq, Hash, HasInterner)]
    |                                      ^^^^^^^^^^^
    |
    = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
   --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:578:38
    |
578 | #[derive(Clone, PartialEq, Eq, Hash, HasInterner)]
    |                                      ^^^^^^^^^^^
    |
    = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1024:38
     |
1024 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1024:44
     |
1024 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                            ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1024:51
     |
1024 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                                   ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1079:44
     |
1079 | #[derive(Clone, Copy, PartialEq, Eq, Hash, HasInterner, Debug)]
     |                                            ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1087:38
     |
1087 | #[derive(Clone, PartialEq, Eq, Hash, HasInterner, Fold, Visit)]
     |                                      ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1087:51
     |
1087 | #[derive(Clone, PartialEq, Eq, Hash, HasInterner, Fold, Visit)]
     |                                                   ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1087:57
     |
1087 | #[derive(Clone, PartialEq, Eq, Hash, HasInterner, Fold, Visit)]
     |                                                         ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1094:38
     |
1094 | #[derive(Clone, PartialEq, Eq, Hash, HasInterner)]
     |                                      ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1129:61
     |
1129 | #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, HasInterner)]
     |                                                             ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1183:38
     |
1183 | #[derive(Clone, PartialEq, Eq, Hash, HasInterner)]
     |                                      ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1192:38
     |
1192 | #[derive(Clone, PartialEq, Eq, Hash, HasInterner)]
     |                                      ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1215:61
     |
1215 | #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, HasInterner)]
     |                                                             ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1229:61
     |
1229 | #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, HasInterner)]
     |                                                             ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1307:61
     |
1307 | #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, HasInterner)]
     |                                                             ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1423:61
     |
1423 | #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, HasInterner)]
     |                                                             ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1519:38
     |
1519 | #[derive(Clone, PartialEq, Eq, Hash, Visit, Fold, Zip)]
     |                                      ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1519:45
     |
1519 | #[derive(Clone, PartialEq, Eq, Hash, Visit, Fold, Zip)]
     |                                             ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Zip`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1519:51
     |
1519 | #[derive(Clone, PartialEq, Eq, Hash, Visit, Fold, Zip)]
     |                                                   ^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1604:38
     |
1604 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1604:44
     |
1604 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                            ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1604:51
     |
1604 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                                   ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Zip`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1604:64
     |
1604 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                                                ^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1634:38
     |
1634 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1634:44
     |
1634 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                            ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1634:51
     |
1634 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                                   ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1656:38
     |
1656 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1656:44
     |
1656 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                            ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1656:51
     |
1656 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                                   ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1672:38
     |
1672 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1672:44
     |
1672 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                            ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1672:51
     |
1672 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                                   ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1709:38
     |
1709 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1709:44
     |
1709 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                            ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1709:51
     |
1709 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                                   ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Zip`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1709:64
     |
1709 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                                                ^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1720:38
     |
1720 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1720:44
     |
1720 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                            ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1720:51
     |
1720 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                                   ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Zip`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1720:64
     |
1720 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                                                ^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1736:38
     |
1736 | #[derive(Clone, PartialEq, Eq, Hash, Fold, SuperVisit, HasInterner, Zip)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `SuperVisit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1736:44
     |
1736 | #[derive(Clone, PartialEq, Eq, Hash, Fold, SuperVisit, HasInterner, Zip)]
     |                                            ^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1736:56
     |
1736 | #[derive(Clone, PartialEq, Eq, Hash, Fold, SuperVisit, HasInterner, Zip)]
     |                                                        ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Zip`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1736:69
     |
1736 | #[derive(Clone, PartialEq, Eq, Hash, Fold, SuperVisit, HasInterner, Zip)]
     |                                                                     ^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1757:38
     |
1757 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1757:44
     |
1757 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                            ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1757:51
     |
1757 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                                   ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Zip`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1757:64
     |
1757 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                                                ^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1795:38
     |
1795 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1795:44
     |
1795 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                            ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1795:51
     |
1795 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                                   ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Zip`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1795:64
     |
1795 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                                                ^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1834:38
     |
1834 | #[derive(Clone, PartialEq, Eq, Hash, Fold, SuperVisit, HasInterner, Zip)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `SuperVisit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1834:44
     |
1834 | #[derive(Clone, PartialEq, Eq, Hash, Fold, SuperVisit, HasInterner, Zip)]
     |                                            ^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1834:56
     |
1834 | #[derive(Clone, PartialEq, Eq, Hash, Fold, SuperVisit, HasInterner, Zip)]
     |                                                        ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Zip`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1834:69
     |
1834 | #[derive(Clone, PartialEq, Eq, Hash, Fold, SuperVisit, HasInterner, Zip)]
     |                                                                     ^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1993:38
     |
1993 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, Zip)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1993:44
     |
1993 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, Zip)]
     |                                            ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Zip`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1993:51
     |
1993 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, Zip)]
     |                                                   ^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2003:38
     |
2003 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, Zip)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2003:44
     |
2003 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, Zip)]
     |                                            ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Zip`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2003:51
     |
2003 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, Zip)]
     |                                                   ^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2016:38
     |
2016 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, Zip)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2016:44
     |
2016 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, Zip)]
     |                                            ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Zip`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2016:51
     |
2016 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, Zip)]
     |                                                   ^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2031:38
     |
2031 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, Zip)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2031:44
     |
2031 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, Zip)]
     |                                            ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Zip`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2031:51
     |
2031 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, Zip)]
     |                                                   ^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2294:38
     |
2294 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2294:44
     |
2294 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                            ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2294:51
     |
2294 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                                   ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Zip`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2294:64
     |
2294 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                                                ^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2330:38
     |
2330 | #[derive(Clone, PartialEq, Eq, Hash, Fold, HasInterner, Zip)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2330:44
     |
2330 | #[derive(Clone, PartialEq, Eq, Hash, Fold, HasInterner, Zip)]
     |                                            ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Zip`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2330:57
     |
2330 | #[derive(Clone, PartialEq, Eq, Hash, Fold, HasInterner, Zip)]
     |                                                         ^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2364:61
     |
2364 | #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, HasInterner)]
     |                                                             ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2477:61
     |
2477 | #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, HasInterner)]
     |                                                             ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2574:38
     |
2574 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2574:44
     |
2574 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                            ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2574:51
     |
2574 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                                   ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Zip`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2574:64
     |
2574 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                                                ^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2657:38
     |
2657 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                      ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2657:44
     |
2657 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                            ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2657:51
     |
2657 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                                   ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Zip`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2657:64
     |
2657 | #[derive(Clone, PartialEq, Eq, Hash, Fold, Visit, HasInterner, Zip)]
     |                                                                ^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2882:69
     |
2879 | / macro_rules! interned_slice_common {
2880 | |     ($seq:ident, $data:ident => $elem:ty, $intern:ident => $interned:ident) => {
2881 | |         /// List of interned elements.
2882 | |         #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, HasInterner)]
     | |                                                                     ^^^^^^^^^^^
...    |
2923 | |     };
2924 | | }
     | |_- in this expansion of `interned_slice_common!` (#2)
2925 |
2926 | / macro_rules! interned_slice {
2927 | |     ($seq:ident, $data:ident => $elem:ty, $intern:ident => $interned:ident) => {
2928 | |         interned_slice_common!($seq, $data => $elem, $intern => $interned);
     | |         ------------------------------------------------------------------ in this macro invocation (#2)
2929 | |
...    |
2960 | |     };
2961 | | }
     | |_- in this expansion of `interned_slice!` (#1)
2962 |
2963 | / interned_slice!(
2964 | |     QuantifiedWhereClauses,
2965 | |     quantified_where_clauses_data => QuantifiedWhereClause<I>,
2966 | |     intern_quantified_where_clauses => InternedQuantifiedWhereClauses
2967 | | );
     | |_- in this macro invocation (#1)
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2882:69
     |
2879 | / macro_rules! interned_slice_common {
2880 | |     ($seq:ident, $data:ident => $elem:ty, $intern:ident => $interned:ident) => {
2881 | |         /// List of interned elements.
2882 | |         #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, HasInterner)]
     | |                                                                     ^^^^^^^^^^^
...    |
2923 | |     };
2924 | | }
     | |_- in this expansion of `interned_slice_common!` (#2)
2925 |
2926 | / macro_rules! interned_slice {
2927 | |     ($seq:ident, $data:ident => $elem:ty, $intern:ident => $interned:ident) => {
2928 | |         interned_slice_common!($seq, $data => $elem, $intern => $interned);
     | |         ------------------------------------------------------------------ in this macro invocation (#2)
2929 | |
...    |
2960 | |     };
2961 | | }
     | |_- in this expansion of `interned_slice!` (#1)
...
2969 | / interned_slice!(
2970 | |     ProgramClauses,
2971 | |     program_clauses_data => ProgramClause<I>,
2972 | |     intern_program_clauses => InternedProgramClauses
2973 | | );
     | |_- in this macro invocation (#1)
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2882:69
     |
2879 | / macro_rules! interned_slice_common {
2880 | |     ($seq:ident, $data:ident => $elem:ty, $intern:ident => $interned:ident) => {
2881 | |         /// List of interned elements.
2882 | |         #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, HasInterner)]
     | |                                                                     ^^^^^^^^^^^
...    |
2923 | |     };
2924 | | }
     | |_- in this expansion of `interned_slice_common!` (#2)
2925 |
2926 | / macro_rules! interned_slice {
2927 | |     ($seq:ident, $data:ident => $elem:ty, $intern:ident => $interned:ident) => {
2928 | |         interned_slice_common!($seq, $data => $elem, $intern => $interned);
     | |         ------------------------------------------------------------------ in this macro invocation (#2)
2929 | |
...    |
2960 | |     };
2961 | | }
     | |_- in this expansion of `interned_slice!` (#1)
...
2975 | / interned_slice!(
2976 | |     VariableKinds,
2977 | |     variable_kinds_data => VariableKind<I>,
2978 | |     intern_generic_arg_kinds => InternedVariableKinds
2979 | | );
     | |_- in this macro invocation (#1)
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2882:69
     |
2879 | / macro_rules! interned_slice_common {
2880 | |     ($seq:ident, $data:ident => $elem:ty, $intern:ident => $interned:ident) => {
2881 | |         /// List of interned elements.
2882 | |         #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, HasInterner)]
     | |                                                                     ^^^^^^^^^^^
...    |
2923 | |     };
2924 | | }
     | |_- in this expansion of `interned_slice_common!` (#2)
2925 |
2926 | / macro_rules! interned_slice {
2927 | |     ($seq:ident, $data:ident => $elem:ty, $intern:ident => $interned:ident) => {
2928 | |         interned_slice_common!($seq, $data => $elem, $intern => $interned);
     | |         ------------------------------------------------------------------ in this macro invocation (#2)
2929 | |
...    |
2960 | |     };
2961 | | }
     | |_- in this expansion of `interned_slice!` (#1)
...
2981 | / interned_slice!(
2982 | |     CanonicalVarKinds,
2983 | |     canonical_var_kinds_data => CanonicalVarKind<I>,
2984 | |     intern_canonical_var_kinds => InternedCanonicalVarKinds
2985 | | );
     | |_- in this macro invocation (#1)
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2882:69
     |
2879 | / macro_rules! interned_slice_common {
2880 | |     ($seq:ident, $data:ident => $elem:ty, $intern:ident => $interned:ident) => {
2881 | |         /// List of interned elements.
2882 | |         #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, HasInterner)]
     | |                                                                     ^^^^^^^^^^^
...    |
2923 | |     };
2924 | | }
     | |_- in this expansion of `interned_slice_common!` (#2)
2925 |
2926 | / macro_rules! interned_slice {
2927 | |     ($seq:ident, $data:ident => $elem:ty, $intern:ident => $interned:ident) => {
2928 | |         interned_slice_common!($seq, $data => $elem, $intern => $interned);
     | |         ------------------------------------------------------------------ in this macro invocation (#2)
2929 | |
...    |
2960 | |     };
2961 | | }
     | |_- in this expansion of `interned_slice!` (#1)
...
2987 |   interned_slice!(Goals, goals_data => Goal<I>, intern_goals => InternedGoals);
     |   ---------------------------------------------------------------------------- in this macro invocation (#1)
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2882:69
     |
2879 | / macro_rules! interned_slice_common {
2880 | |     ($seq:ident, $data:ident => $elem:ty, $intern:ident => $interned:ident) => {
2881 | |         /// List of interned elements.
2882 | |         #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, HasInterner)]
     | |                                                                     ^^^^^^^^^^^
...    |
2923 | |     };
2924 | | }
     | |_- in this expansion of `interned_slice_common!` (#2)
2925 |
2926 | / macro_rules! interned_slice {
2927 | |     ($seq:ident, $data:ident => $elem:ty, $intern:ident => $interned:ident) => {
2928 | |         interned_slice_common!($seq, $data => $elem, $intern => $interned);
     | |         ------------------------------------------------------------------ in this macro invocation (#2)
2929 | |
...    |
2960 | |     };
2961 | | }
     | |_- in this expansion of `interned_slice!` (#1)
...
2989 | / interned_slice!(
2990 | |     Constraints,
2991 | |     constraints_data => InEnvironment<Constraint<I>>,
2992 | |     intern_constraints => InternedConstraints
2993 | | );
     | |_- in this macro invocation (#1)
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2882:69
     |
2879 | / macro_rules! interned_slice_common {
2880 | |     ($seq:ident, $data:ident => $elem:ty, $intern:ident => $interned:ident) => {
2881 | |         /// List of interned elements.
2882 | |         #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, HasInterner)]
     | |                                                                     ^^^^^^^^^^^
...    |
2923 | |     };
2924 | | }
     | |_- in this expansion of `interned_slice_common!` (#2)
2925 |
2926 | / macro_rules! interned_slice {
2927 | |     ($seq:ident, $data:ident => $elem:ty, $intern:ident => $interned:ident) => {
2928 | |         interned_slice_common!($seq, $data => $elem, $intern => $interned);
     | |         ------------------------------------------------------------------ in this macro invocation (#2)
2929 | |
...    |
2960 | |     };
2961 | | }
     | |_- in this expansion of `interned_slice!` (#1)
...
2995 | / interned_slice!(
2996 | |     Substitution,
2997 | |     substitution_data => GenericArg<I>,
2998 | |     intern_substitution => InternedSubstitution
2999 | | );
     | |_- in this macro invocation (#1)
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2882:69
     |
2879 | / macro_rules! interned_slice_common {
2880 | |     ($seq:ident, $data:ident => $elem:ty, $intern:ident => $interned:ident) => {
2881 | |         /// List of interned elements.
2882 | |         #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, HasInterner)]
     | |                                                                     ^^^^^^^^^^^
...    |
2923 | |     };
2924 | | }
     | |_- in this expansion of `interned_slice_common!`
...
3001 | / interned_slice_common!(
3002 | |     Variances,
3003 | |     variances_data => Variance,
3004 | |     intern_variance => InternedVariances
3005 | | );
     | |_- in this macro invocation
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:3040:45
     |
3040 | #[derive(Clone, Debug, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                             ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:3040:51
     |
3040 | #[derive(Clone, Debug, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                                   ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:3040:58
     |
3040 | #[derive(Clone, Debug, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                                          ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Fold`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:3052:45
     |
3052 | #[derive(Clone, Debug, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                             ^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `Visit`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:3052:51
     |
3052 | #[derive(Clone, Debug, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                                   ^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports

error: cannot determine resolution for the derive macro `HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:3052:58
     |
3052 | #[derive(Clone, Debug, PartialEq, Eq, Hash, Fold, Visit, HasInterner)]
     |                                                          ^^^^^^^^^^^
     |
     = note: import resolution is stuck, try simplifying macro imports


Did not run successfully: exit status: 1
"/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1/bin/rustc" "--crate-name" "tracing" "--edition=2018" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/tracing-0.1.35/src/lib.rs" "--error-format=json" "--json=diagnostic-rendered-ansi,artifacts,future-incompat" "--crate-type" "lib" "--emit=dep-info,metadata,link" "-C" "opt-level=3" "-C" "embed-bitcode=no" "-C" "debuginfo=0" "--cfg" "feature=\"attributes\"" "--cfg" "feature=\"default\"" "--cfg" "feature=\"max_level_info\"" "--cfg" "feature=\"std\"" "--cfg" "feature=\"tracing-attributes\"" "-Zunstable-options" "--check-cfg" "values(feature, \"async-await\", \"attributes\", \"default\", \"log\", \"log-always\", \"max_level_debug\", \"max_level_error\", \"max_level_info\", \"max_level_off\", \"max_level_trace\", \"max_level_warn\", \"release_max_level_debug\", \"release_max_level_error\", \"release_max_level_info\", \"release_max_level_off\", \"release_max_level_trace\", \"release_max_level_warn\", \"std\", \"tracing-attributes\", \"valuable\")" "--check-cfg" "names()" "--check-cfg" "values()" "-C" "metadata=756dbad13ba33c4b" "-C" "extra-filename=-756dbad13ba33c4b" "--out-dir" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps" "--target" "x86_64-unknown-linux-gnu" "-C" "linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld" "-L" "dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps" "-L" "dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps" "--extern" "cfg_if=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libcfg_if-43552cbc730f1163.rmeta" "--extern" "pin_project_lite=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libpin_project_lite-933170d3cb116850.rmeta" "--extern" "tracing_attributes=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libtracing_attributes-6cc4b6cd3070c7c7.so" "--extern" "tracing_core=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libtracing_core-f1f44fbccc42fca2.rmeta" "--cap-lints" "allow" "--remap-path-prefix=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0=/usr/src/debug/rust/1.66.0-r0" "-Csymbol-mangling-version=v0" "-Zunstable-options" "--check-cfg=values(bootstrap)" "--check-cfg=values(parallel_compiler)" "--check-cfg=values(no_btreemap_remove_entry)" "--check-cfg=values(crossbeam_loom)" "--check-cfg=values(span_locations)" "--check-cfg=values(rustix_use_libc)" "-Zmacro-backtrace" "-Clink-args=-Wl,-z,origin" "-Clink-args=-Wl,-rpath,$ORIGIN/../lib" "-Csplit-debuginfo=off" "-Zunstable-options" "-Wrustc::internal" "-Cprefer-dynamic" "-Z" "binary-dep-depinfo" "-Wrust_2018_idioms" "-Wunused_lifetimes" "-Wsemicolon_in_expressions_from_macros" "-Dwarnings" "--sysroot" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1" "-Ztls-model=initial-exec" "-Z" "force-unstable-if-unmarked"
-------------
error: could not compile `tracing` due to previous error

Caused by:
  process didn't exit successfully: `/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/bootstrap/debug/rustc --crate-name tracing --edition=2018 /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/tracing-0.1.35/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C debuginfo=0 --cfg 'feature="attributes"' --cfg 'feature="default"' --cfg 'feature="max_level_info"' --cfg 'feature="std"' --cfg 'feature="tracing-attributes"' -Zunstable-options --check-cfg 'values(feature, "async-await", "attributes", "default", "log", "log-always", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "std", "tracing-attributes", "valuable")' --check-cfg 'names()' --check-cfg 'values()' -C metadata=756dbad13ba33c4b -C extra-filename=-756dbad13ba33c4b --out-dir /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps --target x86_64-unknown-linux-gnu -C linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps --extern cfg_if=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libcfg_if-43552cbc730f1163.rmeta --extern pin_project_lite=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libpin_project_lite-933170d3cb116850.rmeta --extern tracing_attributes=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libtracing_attributes-6cc4b6cd3070c7c7.so --extern tracing_core=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libtracing_core-f1f44fbccc42fca2.rmeta --cap-lints allow --remap-path-prefix=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0=/usr/src/debug/rust/1.66.0-r0 -Csymbol-mangling-version=v0 -Zunstable-options '--check-cfg=values(bootstrap)' '--check-cfg=values(parallel_compiler)' '--check-cfg=values(no_btreemap_remove_entry)' '--check-cfg=values(crossbeam_loom)' '--check-cfg=values(span_locations)' '--check-cfg=values(rustix_use_libc)' -Zmacro-backtrace -Clink-args=-Wl,-z,origin '-Clink-args=-Wl,-rpath,$ORIGIN/../lib' -Csplit-debuginfo=off -Zunstable-options '-Wrustc::internal' -Cprefer-dynamic -Z binary-dep-depinfo` (exit status: 1)
    Building [================>        ] 188/264: serde, chalk-ir             \rerror[E0432]: unresolved imports `self::__private`, `self::__private`
   --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/serde/src/lib.rs:287:5
    |
287 | use self::__private as export;
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^
288 | #[allow(unused_imports)]
289 | use self::__private as private;
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^

error[E0204]: the trait `Copy` may not be implemented for this type
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1032:28
     |
1027 |     pub bounds: Binders<QuantifiedWhereClauses<I>>,
     |     ---------------------------------------------- this field does not implement `Copy`
...
1032 | impl<I: Interner> Copy for DynTy<I>
     |                            ^^^^^^^^
     |
note: the `Copy` impl for `Binders<QuantifiedWhereClauses<I>>` requires that `QuantifiedWhereClauses<I>: interner::HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:1027:17
     |
1027 |     pub bounds: Binders<QuantifiedWhereClauses<I>>,
     |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error[E0204]: the trait `Copy` may not be implemented for this type
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2610:28
     |
2579 |     Quantified(QuantifierKind, Binders<Goal<I>>),
     |                                ---------------- this field does not implement `Copy`
...
2610 | impl<I: Interner> Copy for GoalData<I>
     |                            ^^^^^^^^^^^
     |
note: the `Copy` impl for `Binders<Goal<I>>` requires that `Goal<I>: interner::HasInterner`
    --> /usr/src/debug/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs:2579:32
     |
2579 |     Quantified(QuantifierKind, Binders<Goal<I>>),
     |                                ^^^^^^^^^^^^^^^^

Some errors have detailed explanations: E0204, E0432.
For more information about an error, try `rustc --explain E0204`.

Did not run successfully: exit status: 1
"/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1/bin/rustc" "--crate-name" "chalk_ir" "--edition=2018" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs" "--error-format=json" "--json=diagnostic-rendered-ansi,artifacts,future-incompat" "--crate-type" "lib" "--emit=dep-info,metadata,link" "-C" "opt-level=3" "-C" "embed-bitcode=no" "-C" "debuginfo=0" "-Zunstable-options" "--check-cfg" "values(feature)" "--check-cfg" "names()" "--check-cfg" "values()" "-C" "metadata=04f8d3413a059043" "-C" "extra-filename=-04f8d3413a059043" "--out-dir" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps" "--target" "x86_64-unknown-linux-gnu" "-C" "linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld" "-L" "dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps" "-L" "dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps" "--extern" "bitflags=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libbitflags-49976065b2a9a15f.rmeta" "--extern" "chalk_derive=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libchalk_derive-cf395423a8c37a03.so" "--extern" "lazy_static=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/liblazy_static-ab5f12a928675aed.rmeta" "--cap-lints" "allow" "--remap-path-prefix=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0=/usr/src/debug/rust/1.66.0-r0" "-Csymbol-mangling-version=v0" "-Zunstable-options" "--check-cfg=values(bootstrap)" "--check-cfg=values(parallel_compiler)" "--check-cfg=values(no_btreemap_remove_entry)" "--check-cfg=values(crossbeam_loom)" "--check-cfg=values(span_locations)" "--check-cfg=values(rustix_use_libc)" "-Zmacro-backtrace" "-Clink-args=-Wl,-z,origin" "-Clink-args=-Wl,-rpath,$ORIGIN/../lib" "-Csplit-debuginfo=off" "-Zunstable-options" "-Wrustc::internal" "-Cprefer-dynamic" "-Z" "binary-dep-depinfo" "-Wrust_2018_idioms" "-Wunused_lifetimes" "-Wsemicolon_in_expressions_from_macros" "-Dwarnings" "--sysroot" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1" "-Ztls-model=initial-exec" "-Z" "force-unstable-if-unmarked"
-------------
error: could not compile `chalk-ir` due to 110 previous errors

Caused by:
  process didn't exit successfully: `/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/bootstrap/debug/rustc --crate-name chalk_ir --edition=2018 /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/chalk-ir-0.80.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C debuginfo=0 -Zunstable-options --check-cfg 'values(feature)' --check-cfg 'names()' --check-cfg 'values()' -C metadata=04f8d3413a059043 -C extra-filename=-04f8d3413a059043 --out-dir /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps --target x86_64-unknown-linux-gnu -C linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps --extern bitflags=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/libbitflags-49976065b2a9a15f.rmeta --extern chalk_derive=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libchalk_derive-cf395423a8c37a03.so --extern lazy_static=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps/liblazy_static-ab5f12a928675aed.rmeta --cap-lints allow --remap-path-prefix=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0=/usr/src/debug/rust/1.66.0-r0 -Csymbol-mangling-version=v0 -Zunstable-options '--check-cfg=values(bootstrap)' '--check-cfg=values(parallel_compiler)' '--check-cfg=values(no_btreemap_remove_entry)' '--check-cfg=values(crossbeam_loom)' '--check-cfg=values(span_locations)' '--check-cfg=values(rustix_use_libc)' -Zmacro-backtrace -Clink-args=-Wl,-z,origin '-Clink-args=-Wl,-rpath,$ORIGIN/../lib' -Csplit-debuginfo=off -Zunstable-options '-Wrustc::internal' -Cprefer-dynamic -Z binary-dep-depinfo` (exit status: 1)
    Building [================>        ] 189/264: serde                       \rFor more information about this error, try `rustc --explain E0432`.

Did not run successfully: exit status: 1
"/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1/bin/rustc" "--crate-name" "serde" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/serde/src/lib.rs" "--error-format=json" "--json=diagnostic-rendered-ansi,artifacts,future-incompat" "--crate-type" "lib" "--emit=dep-info,metadata,link" "-C" "opt-level=3" "-C" "embed-bitcode=no" "-C" "debuginfo=0" "--cfg" "feature=\"default\"" "--cfg" "feature=\"derive\"" "--cfg" "feature=\"serde_derive\"" "--cfg" "feature=\"std\"" "-Zunstable-options" "--check-cfg" "values(feature, \"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\")" "--check-cfg" "names()" "--check-cfg" "values()" "-C" "metadata=ef162299ce0aae0d" "-C" "extra-filename=-ef162299ce0aae0d" "--out-dir" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps" "--target" "x86_64-unknown-linux-gnu" "-C" "linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld" "-L" "dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps" "-L" "dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps" "--extern" "serde_derive=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libserde_derive-4c8d83fec2692712.so" "--cap-lints" "allow" "--remap-path-prefix=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0=/usr/src/debug/rust/1.66.0-r0" "-Csymbol-mangling-version=v0" "-Zunstable-options" "--check-cfg=values(bootstrap)" "--check-cfg=values(parallel_compiler)" "--check-cfg=values(no_btreemap_remove_entry)" "--check-cfg=values(crossbeam_loom)" "--check-cfg=values(span_locations)" "--check-cfg=values(rustix_use_libc)" "-Zmacro-backtrace" "-Clink-args=-Wl,-z,origin" "-Clink-args=-Wl,-rpath,$ORIGIN/../lib" "-Csplit-debuginfo=off" "-Zunstable-options" "-Wrustc::internal" "-Cprefer-dynamic" "-Z" "binary-dep-depinfo" "-Wrust_2018_idioms" "-Wunused_lifetimes" "-Wsemicolon_in_expressions_from_macros" "-Dwarnings" "--sysroot" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1" "-Ztls-model=initial-exec" "-Z" "force-unstable-if-unmarked"
-------------
error: could not compile `serde` due to 2 previous errors

Caused by:
  process didn't exit successfully: `/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/bootstrap/debug/rustc --crate-name serde /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/serde/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C debuginfo=0 --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="serde_derive"' --cfg 'feature="std"' -Zunstable-options --check-cfg 'values(feature, "alloc", "default", "derive", "rc", "serde_derive", "std", "unstable")' --check-cfg 'names()' --check-cfg 'values()' -C metadata=ef162299ce0aae0d -C extra-filename=-ef162299ce0aae0d --out-dir /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps --target x86_64-unknown-linux-gnu -C linker=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/wrapper/build-rust-ccld -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release/deps -L dependency=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps --extern serde_derive=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libserde_derive-4c8d83fec2692712.so --cap-lints allow --remap-path-prefix=/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0=/usr/src/debug/rust/1.66.0-r0 -Csymbol-mangling-version=v0 -Zunstable-options '--check-cfg=values(bootstrap)' '--check-cfg=values(parallel_compiler)' '--check-cfg=values(no_btreemap_remove_entry)' '--check-cfg=values(crossbeam_loom)' '--check-cfg=values(span_locations)' '--check-cfg=values(rustix_use_libc)' -Zmacro-backtrace -Clink-args=-Wl,-z,origin '-Clink-args=-Wl,-rpath,$ORIGIN/../lib' -Csplit-debuginfo=off -Zunstable-options '-Wrustc::internal' -Cprefer-dynamic -Z binary-dep-depinfo` (exit status: 1)
command did not execute successfully: "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rust-snapshot/bin/cargo" "build" "--target" "x86_64-unknown-linux-gnu" "-Zcheck-cfg=names,values,output,features" "-Zbinary-dep-depinfo" "-j" "12" "-v" "--release" "--frozen" "--features" "llvm max_level_info" "--manifest-path" "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/compiler/rustc/Cargo.toml" "--message-format" "json-render-diagnostics"
expected success, got: exit status: 101
Traceback (most recent call last):
  File "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/src/bootstrap/bootstrap.py", line 953, in <module>
    main()
  File "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/src/bootstrap/bootstrap.py", line 936, in main
    bootstrap(help_triggered)
  File "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/src/bootstrap/bootstrap.py", line 922, in bootstrap
    run(args, env=env, verbose=build.verbose, is_bootstrap=True)
  File "/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/src/bootstrap/bootstrap.py", line 166, in run
    raise RuntimeError(err)
RuntimeError: failed to run: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/bootstrap/debug/bootstrap -j 12 build --stage 2 --verbose
WARNING: exit code 1 from a shell command.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
  2023-01-05 14:12         ` Petr Kubizňák - 2N
@ 2023-01-05 14:17           ` Alexander Kanavin
  2023-01-06 18:52             ` Petr Kubizňák - 2N
  2023-01-17 12:52           ` Alex Kiernan
  1 sibling, 1 reply; 18+ messages in thread
From: Alexander Kanavin @ 2023-01-05 14:17 UTC (permalink / raw)
  To: Petr Kubizňák; +Cc: openembedded-core

We do run world on every master tip, so yes it should succeed. It
doesn't seem to be related to disabling introspection, but you might
want to retry with it enabled to be sure.

If target rust continues to fail no matter what you try, then 'bitbake
-k world' will continue building what it can when fails occur.

Alex

On Thu, 5 Jan 2023 at 15:13, Petr Kubizňák <kubiznak@2n.com> wrote:
>
> Is the `bitbake world` command guaranteed to succeed for every commit in the repository? In my case, I end up with failures even with _default_ setup. My point is whether this has to be an issue on my machine (e.g. native tools?), or I should just try a different commit.
>
>
> Build Configuration:
> BB_VERSION           = "2.2.0"
> BUILD_SYS            = "x86_64-linux"
> NATIVELSBSTRING      = "universal"
> TARGET_SYS           = "x86_64-poky-linux"
> MACHINE              = "qemux86-64"
> DISTRO               = "poky"
> DISTRO_VERSION       = "4.1"
> TUNE_FEATURES        = "m64 core2"
> TARGET_FPU           = ""
> meta
> meta-poky
> meta-yocto-bsp       = "HEAD:2c6f0b9228b47459dd1b67d578792cd017006128"
> ...
> ERROR: rust-1.66.0-r0 do_compile: ExecutionError('/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/temp/run.do_compile.1080378', 1, None, None)
> ERROR: Logfile of failure stored in: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/temp/log.do_compile.1080378
> NOTE: recipe rust-1.66.0-r0: task do_compile: Failed
> ERROR: Task (/home/kubiznak/projects/poky/meta/recipes-devtools/rust/rust_1.66.0.bb:do_compile) failed with exit code '1'
>
> The first error in rust log:
>
> error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so: undefined symbol: _Ungind_Resume
>  --> /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs:5:9
>   |
> 5 | pub use unic_langid_macros_impl::langid;
>   |         ^^^^^^^^^^^^^^^^^^^^^^^
>
> Full logs attached.
>
>
> Petr
>
> ________________________________
> From: Alexander Kanavin <alex.kanavin@gmail.com>
> Sent: Wednesday, January 4, 2023 1:36:27 PM
> To: Petr Kubizňák - 2N
> Cc: openembedded-core@lists.openembedded.org
> Subject: Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
>
> On Wed, 4 Jan 2023 at 13:24, Petr Kubizňák <kubiznak@2n.com> wrote:
> > Yes, that's exactly the reason. I'm particularly concerned about dependency on glib, but other dependencies are unnecessary, too.
> >
> >
> > This change was sufficient to remove the dependency from the target. I am not aware of potential consequences of removing the -native dependencies, but if you think it should also be done, I'm happy to update the patch. Please let me know.
>
> I'd suggest that you remove all three, then set up a plain poky master
> build with gobject-introspection-data disabled, and issue bitbake
> world.
>
> Component upstreams generally only test the gi-enabled configuration,
> so this may reveal incorrect upstream logic when g-i is disabled.
>
> Alex
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#175529): https://lists.openembedded.org/g/openembedded-core/message/175529
> Mute This Topic: https://lists.openembedded.org/mt/96048399/1686489
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kanavin@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
  2023-01-05 14:17           ` Alexander Kanavin
@ 2023-01-06 18:52             ` Petr Kubizňák - 2N
  2023-01-09  9:20               ` Alexander Kanavin
  0 siblings, 1 reply; 18+ messages in thread
From: Petr Kubizňák - 2N @ 2023-01-06 18:52 UTC (permalink / raw)
  To: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 5661 bytes --]

rust_1.66.0 and webkitgtk_2.38.2 keep failing to build in any setup (including g-i enabled and no patch applied) on my side.


What's more interesting, with no patch applied and g-i disabled, graphene_1.10.8 fails to build ("Failed to parse included gir GObject-2.0").


When the patch is _applied_ and g-i is _disabled_, graphene does build, but some other packages don't:


gconf_3.2.6.bb:do_configure:
/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/gconf/3.2.6-r0/temp/run.do_configure.2180034: 225: glib-gettextize: not found


python3-pygobject_3.42.2.bb:do_configure:

Run-time dependency gobject-introspection-1.0 found: NO (tried pkgconfig and cmake)

Looking for a fallback subproject for the dependency gobject-introspection-1.0
../pygobject-3.42.2/meson.build:29:0: ERROR: Automatic wrap-based subproject downloading is disabled

avahi_0.8.bb:do_compile:
/bin/bash: line 2: glib-mkenums: command not found

gtk4_4.8.2.bb:do_configure:
Run-time dependency graphene-gobject-1.0 found: NO (tried pkgconfig and cmake)
Looking for a fallback subproject for the dependency graphene-gobject-1.0
../gtk-4.8.2/meson.build:440:0: ERROR: Automatic wrap-based subproject downloading is disabled


This shows that these packages depend on gobject-introspection and/or its dependencies no matter whether introspection is enabled or disabled. I don't know these packages so I don't think I'm able to patch them properly. On the other hand, I still believe it is incorrect to pull in the unnecessary dependencies when g-i is disabled. What do you think?


Petr


________________________________
From: Alexander Kanavin <alex.kanavin@gmail.com>
Sent: Thursday, January 5, 2023 3:17:16 PM
To: Petr Kubizňák - 2N
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED

We do run world on every master tip, so yes it should succeed. It
doesn't seem to be related to disabling introspection, but you might
want to retry with it enabled to be sure.

If target rust continues to fail no matter what you try, then 'bitbake
-k world' will continue building what it can when fails occur.

Alex

On Thu, 5 Jan 2023 at 15:13, Petr Kubizňák <kubiznak@2n.com> wrote:
>
> Is the `bitbake world` command guaranteed to succeed for every commit in the repository? In my case, I end up with failures even with _default_ setup. My point is whether this has to be an issue on my machine (e.g. native tools?), or I should just try a different commit.
>
>
> Build Configuration:
> BB_VERSION           = "2.2.0"
> BUILD_SYS            = "x86_64-linux"
> NATIVELSBSTRING      = "universal"
> TARGET_SYS           = "x86_64-poky-linux"
> MACHINE              = "qemux86-64"
> DISTRO               = "poky"
> DISTRO_VERSION       = "4.1"
> TUNE_FEATURES        = "m64 core2"
> TARGET_FPU           = ""
> meta
> meta-poky
> meta-yocto-bsp       = "HEAD:2c6f0b9228b47459dd1b67d578792cd017006128"
> ...
> ERROR: rust-1.66.0-r0 do_compile: ExecutionError('/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/temp/run.do_compile.1080378', 1, None, None)
> ERROR: Logfile of failure stored in: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/temp/log.do_compile.1080378
> NOTE: recipe rust-1.66.0-r0: task do_compile: Failed
> ERROR: Task (/home/kubiznak/projects/poky/meta/recipes-devtools/rust/rust_1.66.0.bb:do_compile) failed with exit code '1'
>
> The first error in rust log:
>
> error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so: undefined symbol: _Ungind_Resume
>  --> /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs:5:9
>   |
> 5 | pub use unic_langid_macros_impl::langid;
>   |         ^^^^^^^^^^^^^^^^^^^^^^^
>
> Full logs attached.
>
>
> Petr
>
> ________________________________
> From: Alexander Kanavin <alex.kanavin@gmail.com>
> Sent: Wednesday, January 4, 2023 1:36:27 PM
> To: Petr Kubizňák - 2N
> Cc: openembedded-core@lists.openembedded.org
> Subject: Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
>
> On Wed, 4 Jan 2023 at 13:24, Petr Kubizňák <kubiznak@2n.com> wrote:
> > Yes, that's exactly the reason. I'm particularly concerned about dependency on glib, but other dependencies are unnecessary, too.
> >
> >
> > This change was sufficient to remove the dependency from the target. I am not aware of potential consequences of removing the -native dependencies, but if you think it should also be done, I'm happy to update the patch. Please let me know.
>
> I'd suggest that you remove all three, then set up a plain poky master
> build with gobject-introspection-data disabled, and issue bitbake
> world.
>
> Component upstreams generally only test the gi-enabled configuration,
> so this may reveal incorrect upstream logic when g-i is disabled.
>
> Alex
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#175529): https://lists.openembedded.org/g/openembedded-core/message/175529
> Mute This Topic: https://lists.openembedded.org/mt/96048399/1686489
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kanavin@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>

[-- Attachment #2: Type: text/html, Size: 9028 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
  2023-01-06 18:52             ` Petr Kubizňák - 2N
@ 2023-01-09  9:20               ` Alexander Kanavin
  2023-01-17 10:57                 ` Petr Kubizňák - 2N
  0 siblings, 1 reply; 18+ messages in thread
From: Alexander Kanavin @ 2023-01-09  9:20 UTC (permalink / raw)
  To: Petr Kubizňák; +Cc: openembedded-core

On Fri, 6 Jan 2023 at 19:52, Petr Kubizňák <kubiznak@2n.com> wrote:
> When the patch is _applied_ and g-i is _disabled_, graphene does build, but some other packages don't:

...

> This shows that these packages depend on gobject-introspection and/or its dependencies no matter whether introspection is enabled or disabled. I don't know these packages so I don't think I'm able to patch them properly. On the other hand, I still believe it is incorrect to pull in the unnecessary dependencies when g-i is disabled. What do you think?
>

This is what I was worried about. It uncovers a whole list of
failures, and creates a new maintenance burden going forward, as
fixing them will be an ongoing activity in the absence of an
unconditional g-i dependecy..

If you have a bit of time, I'd suggest that you check the failures one
by one. Some of it, like missing glib-* executables seems like a
trivial missing dependency which was previously pulled in indirectly.
Others, like python3-pygobject probably have a hard dependency on g-i.

It does require navigating your way around unfamiliar source code,
which is a useful skill in yocto regardless.

Alex


^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
  2023-01-09  9:20               ` Alexander Kanavin
@ 2023-01-17 10:57                 ` Petr Kubizňák - 2N
  2023-01-17 16:50                   ` Alexander Kanavin
  0 siblings, 1 reply; 18+ messages in thread
From: Petr Kubizňák - 2N @ 2023-01-17 10:57 UTC (permalink / raw)
  To: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 2735 bytes --]

If you have a bit of time, I'd suggest that you check the failures one
by one. Some of it, like missing glib-* executables seems like a
trivial missing dependency which was previously pulled in indirectly.
Others, like python3-pygobject probably have a hard dependency on g-i.
I'm slowly progressing with the patch but always end up at the principal issue of hard dependency on g-i being enabled.

For example, graphene recipe does not reflect on "gobject-introspection-data" being/not being in distro features, claiming gtk4 requires build with introspection. Graphene can be patched to be buildable under both circumstances but gtk4 then (unsurprisingly) fails in do_configure step due to missing graphene-gobject-1.0 if g-i is disabled.

I don't think gtk4 can be patched to build with g-i disabled, do you?

If you agree with me, how can we proceed with the fact that some packages (namely gtk4) basically cannot be built without the feature, while still allowing to disable that feature? Is it really necessary to have everything buildable with g-i disabled? Apparently, it's not buildable now.

Petr


________________________________
From: openembedded-core@lists.openembedded.org <openembedded-core@lists.openembedded.org> on behalf of Alexander Kanavin <alex.kanavin@gmail.com>
Sent: Monday, January 9, 2023 10:20 AM
To: Petr Kubizňák - 2N <Kubiznak@2n.com>
Cc: openembedded-core@lists.openembedded.org <openembedded-core@lists.openembedded.org>
Subject: Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED

On Fri, 6 Jan 2023 at 19:52, Petr Kubizňák <kubiznak@2n.com> wrote:
> When the patch is _applied_ and g-i is _disabled_, graphene does build, but some other packages don't:

...

> This shows that these packages depend on gobject-introspection and/or its dependencies no matter whether introspection is enabled or disabled. I don't know these packages so I don't think I'm able to patch them properly. On the other hand, I still believe it is incorrect to pull in the unnecessary dependencies when g-i is disabled. What do you think?
>

This is what I was worried about. It uncovers a whole list of
failures, and creates a new maintenance burden going forward, as
fixing them will be an ongoing activity in the absence of an
unconditional g-i dependecy..

If you have a bit of time, I'd suggest that you check the failures one
by one. Some of it, like missing glib-* executables seems like a
trivial missing dependency which was previously pulled in indirectly.
Others, like python3-pygobject probably have a hard dependency on g-i.

It does require navigating your way around unfamiliar source code,
which is a useful skill in yocto regardless.

Alex

[-- Attachment #2: Type: text/html, Size: 6363 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
  2023-01-05 14:12         ` Petr Kubizňák - 2N
  2023-01-05 14:17           ` Alexander Kanavin
@ 2023-01-17 12:52           ` Alex Kiernan
  2023-01-17 12:58             ` Petr Kubizňák - 2N
  1 sibling, 1 reply; 18+ messages in thread
From: Alex Kiernan @ 2023-01-17 12:52 UTC (permalink / raw)
  To: Petr Kubizňák; +Cc: openembedded-core

On Thu, Jan 5, 2023 at 2:13 PM Petr Kubizňák <kubiznak@2n.com> wrote:
>
> Is the `bitbake world` command guaranteed to succeed for every commit in the repository? In my case, I end up with failures even with _default_ setup. My point is whether this has to be an issue on my machine (e.g. native tools?), or I should just try a different commit.
>
>
> Build Configuration:
> BB_VERSION           = "2.2.0"
> BUILD_SYS            = "x86_64-linux"
> NATIVELSBSTRING      = "universal"
> TARGET_SYS           = "x86_64-poky-linux"
> MACHINE              = "qemux86-64"
> DISTRO               = "poky"
> DISTRO_VERSION       = "4.1"
> TUNE_FEATURES        = "m64 core2"
> TARGET_FPU           = ""
> meta
> meta-poky
> meta-yocto-bsp       = "HEAD:2c6f0b9228b47459dd1b67d578792cd017006128"
> ...
> ERROR: rust-1.66.0-r0 do_compile: ExecutionError('/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/temp/run.do_compile.1080378', 1, None, None)
> ERROR: Logfile of failure stored in: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/temp/log.do_compile.1080378
> NOTE: recipe rust-1.66.0-r0: task do_compile: Failed
> ERROR: Task (/home/kubiznak/projects/poky/meta/recipes-devtools/rust/rust_1.66.0.bb:do_compile) failed with exit code '1'
>
> The first error in rust log:
>
> error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so: undefined symbol: _Ungind_Resume
>  --> /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs:5:9
>   |
> 5 | pub use unic_langid_macros_impl::langid;
>   |         ^^^^^^^^^^^^^^^^^^^^^^^
>

Are you building with `DEBUG_BUILD = "1"`? There seem to be a number
of tickets out there for this failure if the optimiser isn't running.

> Full logs attached.
>
>
> Petr
>
> ________________________________
> From: Alexander Kanavin <alex.kanavin@gmail.com>
> Sent: Wednesday, January 4, 2023 1:36:27 PM
> To: Petr Kubizňák - 2N
> Cc: openembedded-core@lists.openembedded.org
> Subject: Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
>
> On Wed, 4 Jan 2023 at 13:24, Petr Kubizňák <kubiznak@2n.com> wrote:
> > Yes, that's exactly the reason. I'm particularly concerned about dependency on glib, but other dependencies are unnecessary, too.
> >
> >
> > This change was sufficient to remove the dependency from the target. I am not aware of potential consequences of removing the -native dependencies, but if you think it should also be done, I'm happy to update the patch. Please let me know.
>
> I'd suggest that you remove all three, then set up a plain poky master
> build with gobject-introspection-data disabled, and issue bitbake
> world.
>
> Component upstreams generally only test the gi-enabled configuration,
> so this may reveal incorrect upstream logic when g-i is disabled.
>
> Alex
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#175529): https://lists.openembedded.org/g/openembedded-core/message/175529
> Mute This Topic: https://lists.openembedded.org/mt/96048399/3618097
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kiernan@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


-- 
Alex Kiernan


^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
  2023-01-17 12:52           ` Alex Kiernan
@ 2023-01-17 12:58             ` Petr Kubizňák - 2N
  2023-01-19  0:57               ` Randy MacLeod
  0 siblings, 1 reply; 18+ messages in thread
From: Petr Kubizňák - 2N @ 2023-01-17 12:58 UTC (permalink / raw)
  To: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 4013 bytes --]

This issue was actually caused by missing host dependencies. Shame on me...
________________________________
From: Alex Kiernan <alex.kiernan@gmail.com>
Sent: Tuesday, January 17, 2023 1:52 PM
To: Petr Kubizňák - 2N <Kubiznak@2n.com>
Cc: openembedded-core@lists.openembedded.org <openembedded-core@lists.openembedded.org>
Subject: Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED

On Thu, Jan 5, 2023 at 2:13 PM Petr Kubizňák <kubiznak@2n.com> wrote:
>
> Is the `bitbake world` command guaranteed to succeed for every commit in the repository? In my case, I end up with failures even with _default_ setup. My point is whether this has to be an issue on my machine (e.g. native tools?), or I should just try a different commit.
>
>
> Build Configuration:
> BB_VERSION           = "2.2.0"
> BUILD_SYS            = "x86_64-linux"
> NATIVELSBSTRING      = "universal"
> TARGET_SYS           = "x86_64-poky-linux"
> MACHINE              = "qemux86-64"
> DISTRO               = "poky"
> DISTRO_VERSION       = "4.1"
> TUNE_FEATURES        = "m64 core2"
> TARGET_FPU           = ""
> meta
> meta-poky
> meta-yocto-bsp       = "HEAD:2c6f0b9228b47459dd1b67d578792cd017006128"
> ...
> ERROR: rust-1.66.0-r0 do_compile: ExecutionError('/home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/temp/run.do_compile.1080378', 1, None, None)
> ERROR: Logfile of failure stored in: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/temp/log.do_compile.1080378
> NOTE: recipe rust-1.66.0-r0: task do_compile: Failed
> ERROR: Task (/home/kubiznak/projects/poky/meta/recipes-devtools/rust/rust_1.66.0.bb:do_compile) failed with exit code '1'
>
> The first error in rust log:
>
> error: /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/build/x86_64-unknown-linux-gnu/stage1-rustc/release/deps/libunic_langid_macros_impl-09018f99e8b09dcb.so: undefined symbol: _Ungind_Resume
>  --> /home/kubiznak/projects/poky/builds/test-gi/tmp/work/core2-64-poky-linux/rust/1.66.0-r0/rustc-1.66.0-src/vendor/unic-langid-macros/src/lib.rs:5:9
>   |
> 5 | pub use unic_langid_macros_impl::langid;
>   |         ^^^^^^^^^^^^^^^^^^^^^^^
>

Are you building with `DEBUG_BUILD = "1"`? There seem to be a number
of tickets out there for this failure if the optimiser isn't running.

> Full logs attached.
>
>
> Petr
>
> ________________________________
> From: Alexander Kanavin <alex.kanavin@gmail.com>
> Sent: Wednesday, January 4, 2023 1:36:27 PM
> To: Petr Kubizňák - 2N
> Cc: openembedded-core@lists.openembedded.org
> Subject: Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
>
> On Wed, 4 Jan 2023 at 13:24, Petr Kubizňák <kubiznak@2n.com> wrote:
> > Yes, that's exactly the reason. I'm particularly concerned about dependency on glib, but other dependencies are unnecessary, too.
> >
> >
> > This change was sufficient to remove the dependency from the target. I am not aware of potential consequences of removing the -native dependencies, but if you think it should also be done, I'm happy to update the patch. Please let me know.
>
> I'd suggest that you remove all three, then set up a plain poky master
> build with gobject-introspection-data disabled, and issue bitbake
> world.
>
> Component upstreams generally only test the gi-enabled configuration,
> so this may reveal incorrect upstream logic when g-i is disabled.
>
> Alex
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#175529): https://lists.openembedded.org/g/openembedded-core/message/175529
> Mute This Topic: https://lists.openembedded.org/mt/96048399/3618097
> Group Owner: openembedded-core+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [alex.kiernan@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


--
Alex Kiernan

[-- Attachment #2: Type: text/html, Size: 6199 bytes --]

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
  2023-01-17 10:57                 ` Petr Kubizňák - 2N
@ 2023-01-17 16:50                   ` Alexander Kanavin
  2023-02-01 16:04                     ` Petr Kubizňák - 2N
       [not found]                     ` <173FBEEB24ED84F2.30239@lists.openembedded.org>
  0 siblings, 2 replies; 18+ messages in thread
From: Alexander Kanavin @ 2023-01-17 16:50 UTC (permalink / raw)
  To: Petr Kubizňák; +Cc: openembedded-core

On Tue, 17 Jan 2023 at 11:57, Petr Kubizňák <kubiznak@2n.com> wrote:
> I'm slowly progressing with the patch but always end up at the principal issue of hard dependency on g-i being enabled.
>
> For example, graphene recipe does not reflect on "gobject-introspection-data" being/not being in distro features, claiming gtk4 requires build with introspection. Graphene can be patched to be buildable under both circumstances but gtk4 then (unsurprisingly) fails in do_configure step due to missing graphene-gobject-1.0 if g-i is disabled.
>
> I don't think gtk4 can be patched to build with g-i disabled, do you?
>
> If you agree with me, how can we proceed with the fact that some packages (namely gtk4) basically cannot be built without the feature, while still allowing to disable that feature? Is it really necessary to have everything buildable with g-i disabled? Apparently, it's not buildable now.

It helps if you show the errors you are getting, and source code lines
they are coming from, so I do not have to guess what is happening or
dig around source code.

The way I read gtk4 and graphene source code, what the recipe claims
is not true: you can disable introspection in graphene, and it would
still build and install graphene-gobject.pc which is what gtk4 is
looking for. If the needed piece is not installed, then you need to
get to the bottom of why, e.g. specific source code lines where that
decision is made.

Alex


^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
  2023-01-17 12:58             ` Petr Kubizňák - 2N
@ 2023-01-19  0:57               ` Randy MacLeod
  0 siblings, 0 replies; 18+ messages in thread
From: Randy MacLeod @ 2023-01-19  0:57 UTC (permalink / raw)
  To: kubiznak, openembedded-core

On 2023-01-17 07:58, Petr Kubizňák via lists.openembedded.org wrote:
> This issue was actually caused by missing host dependencies. Shame on me...

Do you mean standard host dependencies from our documented list:
 
https://docs.yoctoproject.org/brief-yoctoprojectqs/index.html#build-host-packages
?
-- 
# Randy MacLeod
# Wind River Linux



^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
  2023-01-17 16:50                   ` Alexander Kanavin
@ 2023-02-01 16:04                     ` Petr Kubizňák - 2N
       [not found]                     ` <173FBEEB24ED84F2.30239@lists.openembedded.org>
  1 sibling, 0 replies; 18+ messages in thread
From: Petr Kubizňák - 2N @ 2023-02-01 16:04 UTC (permalink / raw)
  To: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 1763 bytes --]

________________________________________
From: Alexander Kanavin <alex.kanavin@gmail.com>
Sent: Tuesday, January 17, 2023 5:50 PM
To: Petr Kubizňák - 2N
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED

> The way I read gtk4 and graphene source code, what the recipe claims
> is not true: you can disable introspection in graphene, and it would
> still build and install graphene-gobject.pc which is what gtk4 is
> looking for. If the needed piece is not installed, then you need to
> get to the bottom of why, e.g. specific source code lines where that
> decision is made.

That's not really true. If no patches are applied and g-i is disabled, graphene fails in do_compile:

[75/75] /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/graphene/1.10.8-r0/recipe-sysroot/usr/bin/g-ir-compiler-wrapper src/Graphene-1.0.gir --output src/Graphene-1.0.typelib --includedir=/usr/share/gir-1.0
FAILED: src/Graphene-1.0.typelib
/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/graphene/1.10.8-r0/recipe-sysroot/usr/bin/g-ir-compiler-wrapper src/Graphene-1.0.gir --output src/Graphene-1.0.typelib --includedir=/usr/share/gir-1.0
Could not find GIR file 'GObject-2.0.gir'; check XDG_DATA_DIRS or use --includedir
error parsing file src/Graphene-1.0.gir: Failed to parse included gir GObject-2.0

If the attached patch is applied, graphene builds and yes, graphene-gobject-1.0.pc is then created, too. (Maybe this is the first patch to send individually?) In that case, gtk4 builds fine. Anyway, webkitgtk fails in do_compile, with a failure which I worry I'm not able to resolve (see the attached tail of the log, full log is ~50MiB).

Petr

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: graphene.patch --]
[-- Type: text/x-patch; name="graphene.patch", Size: 720 bytes --]

diff --git a/meta/recipes-graphics/graphene/graphene_1.10.8.bb b/meta/recipes-graphics/graphene/graphene_1.10.8.bb
index 813ff74adf..7fc9765309 100644
--- a/meta/recipes-graphics/graphene/graphene_1.10.8.bb
+++ b/meta/recipes-graphics/graphene/graphene_1.10.8.bb
@@ -9,9 +9,8 @@ inherit gnomebase gobject-introspection gtk-doc
 
 SRC_URI[archive.sha256sum] = "a37bb0e78a419dcbeaa9c7027bcff52f5ec2367c25ec859da31dfde2928f279a"
 
-# gtk4 & mutter 41.0 requires graphene build with introspection
-PACKAGECONFIG ?= "introspection"
-PACKAGECONFIG[introspection] = "-Dintrospection=enabled,-Dintrospection=disabled,"
+GIR_MESON_ENABLE_FLAG = 'enabled'
+GIR_MESON_DISABLE_FLAG = 'disabled'
 
 GTKDOC_MESON_OPTION = "gtk_doc"
 

[-- Attachment #3: webkitgtk_log.do_compile --]
[-- Type: application/octet-stream, Size: 98269 bytes --]

[6240/6257] /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot-native/usr/bin/x86_64-poky-linux/x86_64-poky-linux-g++ -DBUILDING_GTK__=1 -DBUILDING_WEBKIT -DBUILDING_WITH_CMAKE=1 -DBUILDING_WebKit -DDATADIR=\"/usr/share\" -DGETTEXT_PACKAGE=\"WebKit2GTK-4.1\" -DHAVE_CONFIG_H=1 -DJSC_GLIB_API_ENABLED -DLIBDIR=\"/usr/lib\" -DLOCALEDIR=\"/usr/share/locale\" -DPAS_BMALLOC=1 -DPKGLIBEXECDIR=\"/usr/libexec/webkit2gtk-4.1\" -DSTATICALLY_LINKED_WITH_PAL -DSTATICALLY_LINKED_WITH_WebCore -DWEBKIT2_COMPILATION -DWEBKITGTK_API_VERSION_STRING=\"4.1\" -DWEBKIT_DOM_USE_UNSTABLE_API -DWebKit_EXPORTS -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebKit2Gtk/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebKit2Gtk/Headers/webkit2gtk-4.1 -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebKit2Gtk/Headers/webkit2gtk-webextension -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebKit2Gtk/DerivedSources/webkit -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebKit2Gtk/DerivedSources -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/PAL/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebCore/PrivateHeaders -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/DerivedSources/ForwardingHeaders -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/DerivedSources/WebKit -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/DerivedSources/WebKit/include -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/GPUProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/GPUProcess/graphics -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/GPUProcess/graphics/WebGPU -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/GPUProcess/media -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/GPUProcess/webrtc -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/Classifier -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/Cookies -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/CustomProtocols -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/Downloads -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/FileAPI -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/IndexedDB -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/Notifications -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/PrivateClickMeasurement -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/ServiceWorker -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/SharedWorker -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/cache -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/storage -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/watchos -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/webrtc -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform/IPC -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/PluginProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/API -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/API/c -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/ApplePay -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Authentication -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/CoreIPCSupport -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Databases -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Databases/IndexedDB -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/FileAPI -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Gamepad -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Notifications -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Plugins -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Plugins/Netscape -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Plugins/Netscape/x11 -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/RemoteLayerTree -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/WebGPU -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/WebsiteData -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/XR -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/C -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/cpp -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Authentication -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Automation -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Downloads -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Gamepad -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/GPU -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Inspector -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Inspector/Agents -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Launcher -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Media -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Network -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Network/CustomProtocols -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Notifications -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Plugins -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/RemoteLayerTree -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/UserContent -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/WebAuthentication -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/WebAuthentication/Mock -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/WebsiteData -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/XR -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebAuthnProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/ApplePay -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/ApplicationCache -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Automation -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Cache -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Databases -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Databases/IndexedDB -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/EncryptedMedia -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/FileAPI -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/FullScreen -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Gamepad -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Geolocation -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/GPU -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/GPU/graphics -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/GPU/graphics/WebGPU -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/GPU/media -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/GPU/webrtc -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/IconDatabase -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API/c -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/DOM -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Inspector -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Launching -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/MediaCache -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/MediaStream -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Model -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Network -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Network/webrtc -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Notifications -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/OriginData -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Plugins -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Plugins/Netscape -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/ResourceCache -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Speech -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Storage -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/UserContent -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebCoreSupport -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebPage -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebPage/RemoteLayerTree -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebStorage -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/XR -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/WebKitLibraries -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/soup -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform/IPC/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform/IPC/unix -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform/classifier -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform/generic -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/API/c/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/API/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/CoordinatedGraphics -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/CoordinatedGraphics/threadedcompositor -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/linux -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/soup -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/C/cairo -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/C/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/C/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/gtk3 -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/CoordinatedGraphics -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Inspector/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Inspector/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Notifications/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/geoclue -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/gstreamer -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/linux -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/soup -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API/glib/DOM -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API/gtk/DOM -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Inspector/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/soup -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebCoreSupport/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebCoreSupport/soup -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebPage/CoordinatedGraphics -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebPage/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebPage/libwpe -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/wpe-1.0 -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/gtk-3.0/unix-print -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/JavaScriptCore/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/JavaScriptCore/PrivateHeaders -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/JavaScriptCoreGLib/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/JavaScriptCoreGLib/DerivedSources -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WTF/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/bmalloc/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebCore/platform/graphics/libwpe -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/libxml2 -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/ANGLE/Headers -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/enchant-2 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/gio-unix-2.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/libmount -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/blkid -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/glib-2.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/lib/glib-2.0/include -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/gstreamer-1.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/orc-0.4 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/gtk-3.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/at-spi2-atk/2.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/at-spi-2.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/dbus-1.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/lib/dbus-1.0/include -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/cairo -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/pango-1.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/fribidi -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/harfbuzz -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/atk-1.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/pixman-1 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/freetype2 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/libdrm -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/gdk-pixbuf-2.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/libpng16 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/libsoup-3.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/wpe-fdo-1.0 -fdiagnostics-color=always -Wextra -Wall -pipe -Wno-odr -Wno-stringop-overread -Wno-stringop-overflow -Wno-nonnull -Wno-array-bounds -Wno-expansion-to-defined -Wno-noexcept-type -Wno-psabi -Wno-misleading-indentation -Wno-maybe-uninitialized -Wwrite-strings -Wundef -Wpointer-arith -Wmissing-format-attribute -Wformat-security -Wcast-align -Wno-tautological-compare  -m64 -march=core2 -mtune=core2 -msse3 -mfpmath=sse -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  --sysroot=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3=/usr/src/debug/webkitgtk/2.38.3-r0  -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot=  -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot=  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot-native=  -fvisibility-inlines-hidden  -fno-strict-aliasing -fno-exceptions -fno-rtti -DNDEBUG -fPIC -fvisibility=hidden  -include /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebKit2Prefix.h -Wno-unused-parameter -DWPE_ENABLE_XKB=1 -pthread -std=c++20 -MD -MT Source/WebKit/CMakeFiles/WebKit.dir/__/__/DerivedSources/WebKit/unified-sources/UnifiedSource-54928a2b-40.cpp.o -MF Source/WebKit/CMakeFiles/WebKit.dir/__/__/DerivedSources/WebKit/unified-sources/UnifiedSource-54928a2b-40.cpp.o.d -o Source/WebKit/CMakeFiles/WebKit.dir/__/__/DerivedSources/WebKit/unified-sources/UnifiedSource-54928a2b-40.cpp.o -c /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/DerivedSources/WebKit/unified-sources/UnifiedSource-54928a2b-40.cpp
[6241/6257] /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot-native/usr/bin/x86_64-poky-linux/x86_64-poky-linux-g++ -DBUILDING_GTK__=1 -DBUILDING_WEBKIT -DBUILDING_WITH_CMAKE=1 -DBUILDING_WebKit -DDATADIR=\"/usr/share\" -DGETTEXT_PACKAGE=\"WebKit2GTK-4.1\" -DHAVE_CONFIG_H=1 -DJSC_GLIB_API_ENABLED -DLIBDIR=\"/usr/lib\" -DLOCALEDIR=\"/usr/share/locale\" -DPAS_BMALLOC=1 -DPKGLIBEXECDIR=\"/usr/libexec/webkit2gtk-4.1\" -DSTATICALLY_LINKED_WITH_PAL -DSTATICALLY_LINKED_WITH_WebCore -DWEBKIT2_COMPILATION -DWEBKITGTK_API_VERSION_STRING=\"4.1\" -DWEBKIT_DOM_USE_UNSTABLE_API -DWebKit_EXPORTS -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebKit2Gtk/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebKit2Gtk/Headers/webkit2gtk-4.1 -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebKit2Gtk/Headers/webkit2gtk-webextension -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebKit2Gtk/DerivedSources/webkit -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebKit2Gtk/DerivedSources -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/PAL/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebCore/PrivateHeaders -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/DerivedSources/ForwardingHeaders -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/DerivedSources/WebKit -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/DerivedSources/WebKit/include -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/GPUProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/GPUProcess/graphics -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/GPUProcess/graphics/WebGPU -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/GPUProcess/media -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/GPUProcess/webrtc -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/Classifier -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/Cookies -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/CustomProtocols -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/Downloads -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/FileAPI -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/IndexedDB -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/Notifications -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/PrivateClickMeasurement -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/ServiceWorker -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/SharedWorker -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/cache -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/storage -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/watchos -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/webrtc -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform/IPC -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/PluginProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/API -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/API/c -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/ApplePay -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Authentication -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/CoreIPCSupport -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Databases -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Databases/IndexedDB -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/FileAPI -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Gamepad -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Notifications -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Plugins -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Plugins/Netscape -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Plugins/Netscape/x11 -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/RemoteLayerTree -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/WebGPU -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/WebsiteData -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/XR -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/C -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/cpp -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Authentication -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Automation -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Downloads -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Gamepad -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/GPU -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Inspector -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Inspector/Agents -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Launcher -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Media -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Network -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Network/CustomProtocols -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Notifications -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Plugins -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/RemoteLayerTree -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/UserContent -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/WebAuthentication -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/WebAuthentication/Mock -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/WebsiteData -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/XR -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebAuthnProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/ApplePay -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/ApplicationCache -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Automation -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Cache -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Databases -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Databases/IndexedDB -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/EncryptedMedia -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/FileAPI -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/FullScreen -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Gamepad -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Geolocation -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/GPU -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/GPU/graphics -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/GPU/graphics/WebGPU -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/GPU/media -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/GPU/webrtc -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/IconDatabase -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API/c -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/DOM -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Inspector -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Launching -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/MediaCache -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/MediaStream -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Model -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Network -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Network/webrtc -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Notifications -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/OriginData -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Plugins -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Plugins/Netscape -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/ResourceCache -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Speech -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Storage -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/UserContent -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebCoreSupport -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebPage -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebPage/RemoteLayerTree -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebStorage -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/XR -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/WebKitLibraries -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/soup -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform/IPC/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform/IPC/unix -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform/classifier -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform/generic -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/API/c/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/API/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/CoordinatedGraphics -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/CoordinatedGraphics/threadedcompositor -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/linux -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/soup -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/C/cairo -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/C/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/C/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/gtk3 -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/CoordinatedGraphics -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Inspector/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Inspector/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Notifications/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/geoclue -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/gstreamer -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/linux -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/soup -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API/glib/DOM -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API/gtk/DOM -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Inspector/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/soup -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebCoreSupport/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebCoreSupport/soup -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebPage/CoordinatedGraphics -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebPage/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebPage/libwpe -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/wpe-1.0 -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/gtk-3.0/unix-print -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/JavaScriptCore/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/JavaScriptCore/PrivateHeaders -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/JavaScriptCoreGLib/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/JavaScriptCoreGLib/DerivedSources -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WTF/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/bmalloc/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebCore/platform/graphics/libwpe -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/libxml2 -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/ANGLE/Headers -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/enchant-2 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/gio-unix-2.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/libmount -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/blkid -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/glib-2.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/lib/glib-2.0/include -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/gstreamer-1.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/orc-0.4 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/gtk-3.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/at-spi2-atk/2.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/at-spi-2.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/dbus-1.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/lib/dbus-1.0/include -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/cairo -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/pango-1.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/fribidi -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/harfbuzz -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/atk-1.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/pixman-1 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/freetype2 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/libdrm -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/gdk-pixbuf-2.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/libpng16 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/libsoup-3.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/wpe-fdo-1.0 -fdiagnostics-color=always -Wextra -Wall -pipe -Wno-odr -Wno-stringop-overread -Wno-stringop-overflow -Wno-nonnull -Wno-array-bounds -Wno-expansion-to-defined -Wno-noexcept-type -Wno-psabi -Wno-misleading-indentation -Wno-maybe-uninitialized -Wwrite-strings -Wundef -Wpointer-arith -Wmissing-format-attribute -Wformat-security -Wcast-align -Wno-tautological-compare  -m64 -march=core2 -mtune=core2 -msse3 -mfpmath=sse -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  --sysroot=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3=/usr/src/debug/webkitgtk/2.38.3-r0  -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot=  -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot=  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot-native=  -fvisibility-inlines-hidden  -fno-strict-aliasing -fno-exceptions -fno-rtti -DNDEBUG -fPIC -fvisibility=hidden  -include /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebKit2Prefix.h -Wno-unused-parameter -DWPE_ENABLE_XKB=1 -pthread -std=c++20 -MD -MT Source/WebKit/CMakeFiles/WebKit.dir/__/__/DerivedSources/WebKit/unified-sources/UnifiedSource-54928a2b-42.cpp.o -MF Source/WebKit/CMakeFiles/WebKit.dir/__/__/DerivedSources/WebKit/unified-sources/UnifiedSource-54928a2b-42.cpp.o.d -o Source/WebKit/CMakeFiles/WebKit.dir/__/__/DerivedSources/WebKit/unified-sources/UnifiedSource-54928a2b-42.cpp.o -c /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/DerivedSources/WebKit/unified-sources/UnifiedSource-54928a2b-42.cpp
[6242/6257] /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot-native/usr/bin/x86_64-poky-linux/x86_64-poky-linux-g++ -DBUILDING_GTK__=1 -DBUILDING_WEBKIT -DBUILDING_WITH_CMAKE=1 -DBUILDING_WebKit -DDATADIR=\"/usr/share\" -DGETTEXT_PACKAGE=\"WebKit2GTK-4.1\" -DHAVE_CONFIG_H=1 -DJSC_GLIB_API_ENABLED -DLIBDIR=\"/usr/lib\" -DLOCALEDIR=\"/usr/share/locale\" -DPAS_BMALLOC=1 -DPKGLIBEXECDIR=\"/usr/libexec/webkit2gtk-4.1\" -DSTATICALLY_LINKED_WITH_PAL -DSTATICALLY_LINKED_WITH_WebCore -DWEBKIT2_COMPILATION -DWEBKITGTK_API_VERSION_STRING=\"4.1\" -DWEBKIT_DOM_USE_UNSTABLE_API -DWebKit_EXPORTS -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebKit2Gtk/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebKit2Gtk/Headers/webkit2gtk-4.1 -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebKit2Gtk/Headers/webkit2gtk-webextension -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebKit2Gtk/DerivedSources/webkit -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebKit2Gtk/DerivedSources -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/PAL/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WebCore/PrivateHeaders -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/DerivedSources/ForwardingHeaders -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/DerivedSources/WebKit -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/DerivedSources/WebKit/include -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/GPUProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/GPUProcess/graphics -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/GPUProcess/graphics/WebGPU -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/GPUProcess/media -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/GPUProcess/webrtc -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/Classifier -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/Cookies -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/CustomProtocols -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/Downloads -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/FileAPI -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/IndexedDB -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/Notifications -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/PrivateClickMeasurement -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/ServiceWorker -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/SharedWorker -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/cache -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/storage -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/watchos -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/webrtc -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform/IPC -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/PluginProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/API -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/API/c -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/ApplePay -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Authentication -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/CoreIPCSupport -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Databases -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Databases/IndexedDB -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/FileAPI -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Gamepad -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Notifications -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Plugins -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Plugins/Netscape -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/Plugins/Netscape/x11 -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/RemoteLayerTree -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/WebGPU -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/WebsiteData -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/XR -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/C -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/cpp -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Authentication -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Automation -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Downloads -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Gamepad -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/GPU -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Inspector -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Inspector/Agents -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Launcher -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Media -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Network -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Network/CustomProtocols -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Notifications -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Plugins -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/RemoteLayerTree -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/UserContent -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/WebAuthentication -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/WebAuthentication/Mock -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/WebsiteData -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/XR -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebAuthnProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/ApplePay -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/ApplicationCache -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Automation -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Cache -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Databases -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Databases/IndexedDB -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/EncryptedMedia -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/FileAPI -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/FullScreen -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Gamepad -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Geolocation -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/GPU -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/GPU/graphics -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/GPU/graphics/WebGPU -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/GPU/media -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/GPU/webrtc -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/IconDatabase -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API/c -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/DOM -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Inspector -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Launching -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/MediaCache -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/MediaStream -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Model -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Network -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Network/webrtc -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Notifications -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/OriginData -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Plugins -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Plugins/Netscape -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/ResourceCache -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Speech -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Storage -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/UserContent -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebCoreSupport -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebPage -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebPage/RemoteLayerTree -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebStorage -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/XR -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/WebKitLibraries -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/NetworkProcess/soup -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform/IPC/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform/IPC/unix -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform/classifier -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Platform/generic -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/API/c/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/API/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/CoordinatedGraphics -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/CoordinatedGraphics/threadedcompositor -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/linux -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/Shared/soup -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/C/cairo -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/C/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/C/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/gtk3 -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/API/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/CoordinatedGraphics -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Inspector/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Inspector/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/Notifications/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/geoclue -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/gstreamer -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/linux -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/UIProcess/soup -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API/glib/DOM -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/InjectedBundle/API/gtk/DOM -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/Inspector/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/glib -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/soup -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebCoreSupport/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebCoreSupport/soup -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebPage/CoordinatedGraphics -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebPage/gtk -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebPage/libwpe -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/wpe-1.0 -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/gtk-3.0/unix-print -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/JavaScriptCore/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/JavaScriptCore/PrivateHeaders -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/JavaScriptCoreGLib/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/JavaScriptCoreGLib/DerivedSources -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/WTF/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/bmalloc/Headers -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebCore/platform/graphics/libwpe -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/libxml2 -I/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build/ANGLE/Headers -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/enchant-2 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/gio-unix-2.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/libmount -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/blkid -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/glib-2.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/lib/glib-2.0/include -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/gstreamer-1.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/orc-0.4 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/gtk-3.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/at-spi2-atk/2.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/at-spi-2.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/dbus-1.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/lib/dbus-1.0/include -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/cairo -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/pango-1.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/fribidi -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/harfbuzz -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/atk-1.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/pixman-1 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/freetype2 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/libdrm -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/gdk-pixbuf-2.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/libpng16 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/libsoup-3.0 -isystem /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot/usr/include/wpe-fdo-1.0 -fdiagnostics-color=always -Wextra -Wall -pipe -Wno-odr -Wno-stringop-overread -Wno-stringop-overflow -Wno-nonnull -Wno-array-bounds -Wno-expansion-to-defined -Wno-noexcept-type -Wno-psabi -Wno-misleading-indentation -Wno-maybe-uninitialized -Wwrite-strings -Wundef -Wpointer-arith -Wmissing-format-attribute -Wformat-security -Wcast-align -Wno-tautological-compare  -m64 -march=core2 -mtune=core2 -msse3 -mfpmath=sse -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  --sysroot=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3=/usr/src/debug/webkitgtk/2.38.3-r0  -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot=  -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot=  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot-native=  -fvisibility-inlines-hidden  -fno-strict-aliasing -fno-exceptions -fno-rtti -DNDEBUG -fPIC -fvisibility=hidden  -include /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebKit2Prefix.h -Wno-unused-parameter -DWPE_ENABLE_XKB=1 -pthread -std=c++20 -MD -MT Source/WebKit/CMakeFiles/WebKit.dir/WebProcess/WebPage/WebPage.cpp.o -MF Source/WebKit/CMakeFiles/WebKit.dir/WebProcess/WebPage/WebPage.cpp.o.d -o Source/WebKit/CMakeFiles/WebKit.dir/WebProcess/WebPage/WebPage.cpp.o -c /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/WebProcess/WebPage/WebPage.cpp
[6243/6257] : && /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot-native/usr/bin/x86_64-poky-linux/x86_64-poky-linux-g++ -fPIC -fdiagnostics-color=always -Wextra -Wall -pipe -Wno-odr -Wno-stringop-overread -Wno-stringop-overflow -Wno-nonnull -Wno-array-bounds -Wno-expansion-to-defined -Wno-noexcept-type -Wno-psabi -Wno-misleading-indentation -Wno-maybe-uninitialized -Wwrite-strings -Wundef -Wpointer-arith -Wmissing-format-attribute -Wformat-security -Wcast-align -Wno-tautological-compare  -m64 -march=core2 -mtune=core2 -msse3 -mfpmath=sse -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  --sysroot=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3=/usr/src/debug/webkitgtk/2.38.3-r0  -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot=  -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot=  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot-native=  -fvisibility-inlines-hidden  -fno-strict-aliasing -fno-exceptions -fno-rtti -DNDEBUG  -Wl,--no-undefined -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3=/usr/src/debug/webkitgtk/2.38.3-r0  -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot=  -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot=  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot-native=  -Wl,-z,relro,-z,now -Wl,--disable-new-dtags   -Wl,--version-script,/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/webkitglib-symbols.map -shared -Wl,-soname,libwebkit2gtk-4.1.so.0 -o lib/libwebkit2gtk-4.1.so.0.2.6 @CMakeFiles/WebKit.rsp  && :
FAILED: lib/libwebkit2gtk-4.1.so.0.2.6 
: && /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot-native/usr/bin/x86_64-poky-linux/x86_64-poky-linux-g++ -fPIC -fdiagnostics-color=always -Wextra -Wall -pipe -Wno-odr -Wno-stringop-overread -Wno-stringop-overflow -Wno-nonnull -Wno-array-bounds -Wno-expansion-to-defined -Wno-noexcept-type -Wno-psabi -Wno-misleading-indentation -Wno-maybe-uninitialized -Wwrite-strings -Wundef -Wpointer-arith -Wmissing-format-attribute -Wformat-security -Wcast-align -Wno-tautological-compare  -m64 -march=core2 -mtune=core2 -msse3 -mfpmath=sse -fstack-protector-strong  -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security  --sysroot=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot  -O2 -pipe -g -feliminate-unused-debug-types -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3=/usr/src/debug/webkitgtk/2.38.3-r0  -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot=  -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot=  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot-native=  -fvisibility-inlines-hidden  -fno-strict-aliasing -fno-exceptions -fno-rtti -DNDEBUG  -Wl,--no-undefined -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3=/usr/src/debug/webkitgtk/2.38.3-r0  -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/build=/usr/src/debug/webkitgtk/2.38.3-r0  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot=  -fmacro-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot=  -fdebug-prefix-map=/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot-native=  -Wl,-z,relro,-z,now -Wl,--disable-new-dtags   -Wl,--version-script,/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/webkitgtk-2.38.3/Source/WebKit/webkitglib-symbols.map -shared -Wl,-soname,libwebkit2gtk-4.1.so.0 -o lib/libwebkit2gtk-4.1.so.0.2.6 @CMakeFiles/WebKit.rsp  && :
/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/webkitgtk/2.38.3-r0/recipe-sysroot-native/usr/bin/x86_64-poky-linux/../../libexec/x86_64-poky-linux/gcc/x86_64-poky-linux/12.2.0/ld: Source/WebCore/CMakeFiles/WebCore.dir/./__/__/WebCore/DerivedSources/unified-sources/UnifiedSource-767013ce-4.cpp.o:(.debug_info+0x77083b): undefined reference to `.LLRL46886'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
WARNING: exit code 1 from a shell command.

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
       [not found]                     ` <173FBEEB24ED84F2.30239@lists.openembedded.org>
@ 2023-02-15  9:39                       ` Petr Kubizňák - 2N
  2023-02-15 11:26                         ` Alexander Kanavin
  0 siblings, 1 reply; 18+ messages in thread
From: Petr Kubizňák - 2N @ 2023-02-15  9:39 UTC (permalink / raw)
  To: openembedded-core; +Cc: alex.kanavin

Hi Alex,

May I kindly ask you for your opinion?

Thank you,
Petr

________________________________________
From: openembedded-core@lists.openembedded.org <openembedded-core@lists.openembedded.org> on behalf of Petr Kubizňák - 2N <Kubiznak@2n.com>
Sent: Wednesday, February 1, 2023 5:04 PM
To: openembedded-core@lists.openembedded.org
Subject: Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED

________________________________________
From: Alexander Kanavin <alex.kanavin@gmail.com>
Sent: Tuesday, January 17, 2023 5:50 PM
To: Petr Kubizňák - 2N
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED

> The way I read gtk4 and graphene source code, what the recipe claims
> is not true: you can disable introspection in graphene, and it would
> still build and install graphene-gobject.pc which is what gtk4 is
> looking for. If the needed piece is not installed, then you need to
> get to the bottom of why, e.g. specific source code lines where that
> decision is made.

That's not really true. If no patches are applied and g-i is disabled, graphene fails in do_compile:

[75/75] /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/graphene/1.10.8-r0/recipe-sysroot/usr/bin/g-ir-compiler-wrapper src/Graphene-1.0.gir --output src/Graphene-1.0.typelib --includedir=/usr/share/gir-1.0
FAILED: src/Graphene-1.0.typelib
/home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/graphene/1.10.8-r0/recipe-sysroot/usr/bin/g-ir-compiler-wrapper src/Graphene-1.0.gir --output src/Graphene-1.0.typelib --includedir=/usr/share/gir-1.0
Could not find GIR file 'GObject-2.0.gir'; check XDG_DATA_DIRS or use --includedir
error parsing file src/Graphene-1.0.gir: Failed to parse included gir GObject-2.0

If the attached patch is applied, graphene builds and yes, graphene-gobject-1.0.pc is then created, too. (Maybe this is the first patch to send individually?) In that case, gtk4 builds fine. Anyway, webkitgtk fails in do_compile, with a failure which I worry I'm not able to resolve (see the attached tail of the log, full log is ~50MiB).

Petr


^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED
  2023-02-15  9:39                       ` Petr Kubizňák - 2N
@ 2023-02-15 11:26                         ` Alexander Kanavin
  0 siblings, 0 replies; 18+ messages in thread
From: Alexander Kanavin @ 2023-02-15 11:26 UTC (permalink / raw)
  To: Petr Kubizňák - 2N; +Cc: openembedded-core

On Wed, 15 Feb 2023 at 10:39, Petr Kubizňák - 2N <Kubiznak@2n.com> wrote:
> > The way I read gtk4 and graphene source code, what the recipe claims
> > is not true: you can disable introspection in graphene, and it would
> > still build and install graphene-gobject.pc which is what gtk4 is
> > looking for. If the needed piece is not installed, then you need to
> > get to the bottom of why, e.g. specific source code lines where that
> > decision is made.
>
> That's not really true. If no patches are applied and g-i is disabled, graphene fails in do_compile:
>
> [75/75] /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/graphene/1.10.8-r0/recipe-sysroot/usr/bin/g-ir-compiler-wrapper src/Graphene-1.0.gir --output src/Graphene-1.0.typelib --includedir=/usr/share/gir-1.0
> FAILED: src/Graphene-1.0.typelib
> /home/kubiznak/projects/poky2/build/tmp/work/core2-64-poky-linux/graphene/1.10.8-r0/recipe-sysroot/usr/bin/g-ir-compiler-wrapper src/Graphene-1.0.gir --output src/Graphene-1.0.typelib --includedir=/usr/share/gir-1.0
> Could not find GIR file 'GObject-2.0.gir'; check XDG_DATA_DIRS or use --includedir
> error parsing file src/Graphene-1.0.gir: Failed to parse included gir GObject-2.0

I replicated this locally. graphene isn't being correctly configured
when introspection is disabled globally, and the attached patch is
correct. Can you resend it as a proper oe-core submission?

I haven't seen webkit fail like that before, and it does not fail for
me locally this way.

Alex


^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2023-02-15 11:27 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-04 11:45 [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED Petr Kubizňák
2023-01-04 11:45 ` [OE-core][PATCH 2/2] harfbuzz: remove bindir only if it exists Petr Kubizňák
2023-01-04 11:54 ` [OE-core][PATCH 1/2] gobject-introspection: check for GI_DATA_ENABLED Alexander Kanavin
     [not found] ` <17371904FDF90491.29426@lists.openembedded.org>
2023-01-04 11:59   ` Alexander Kanavin
2023-01-04 12:24     ` Petr Kubizňák - 2N
2023-01-04 12:36       ` Alexander Kanavin
2023-01-05 14:12         ` Petr Kubizňák - 2N
2023-01-05 14:17           ` Alexander Kanavin
2023-01-06 18:52             ` Petr Kubizňák - 2N
2023-01-09  9:20               ` Alexander Kanavin
2023-01-17 10:57                 ` Petr Kubizňák - 2N
2023-01-17 16:50                   ` Alexander Kanavin
2023-02-01 16:04                     ` Petr Kubizňák - 2N
     [not found]                     ` <173FBEEB24ED84F2.30239@lists.openembedded.org>
2023-02-15  9:39                       ` Petr Kubizňák - 2N
2023-02-15 11:26                         ` Alexander Kanavin
2023-01-17 12:52           ` Alex Kiernan
2023-01-17 12:58             ` Petr Kubizňák - 2N
2023-01-19  0:57               ` Randy MacLeod

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.