Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe *p11-kit* to *0.25.2* has 
Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
    - apply the patch: git am 0001-p11-kit-upgrade-0.25.0-0.25.2.patch
    - check the changes to upstream patches and summarize them in the commit 
message,
    - compile an image that contains the package
    - perform some basic sanity tests
    - amend the patch and sign it off: git commit -s --reset-author --amend
    - send it to the appropriate mailing list

Alternatively, if you believe the recipe should not be upgraded at this time,
you can fill RECIPE_NO_UPDATE_REASON in respective recipe file so that
automatic upgrades would no longer be attempted.

Please review the attached files for further information and build/update 
failures.
Any problem please file a bug at 
https://bugzilla.yoctoproject.org/enter_bug.cgi?product=Automated%20Update%20Handler

Regards,
The Upgrade Helper

-- >8 --
>From 09e245b87f73a96556512cfeede61ae5593023ee Mon Sep 17 00:00:00 2001
From: Upgrade Helper <[email protected]>
Date: Wed, 15 Nov 2023 14:14:00 +0000
Subject: [PATCH] p11-kit: upgrade 0.25.0 -> 0.25.2

---
 .../p11-kit/files/strerror-1.patch            | 76 -------------------
 .../p11-kit/files/strerror-2.patch            | 30 --------
 .../{p11-kit_0.25.0.bb => p11-kit_0.25.2.bb}  |  6 +-
 3 files changed, 2 insertions(+), 110 deletions(-)
 delete mode 100644 meta/recipes-support/p11-kit/files/strerror-1.patch
 delete mode 100644 meta/recipes-support/p11-kit/files/strerror-2.patch
 rename meta/recipes-support/p11-kit/{p11-kit_0.25.0.bb => p11-kit_0.25.2.bb} 
(90%)

diff --git a/meta/recipes-support/p11-kit/files/strerror-1.patch 
b/meta/recipes-support/p11-kit/files/strerror-1.patch
deleted file mode 100644
index 6af4fee724..0000000000
--- a/meta/recipes-support/p11-kit/files/strerror-1.patch
+++ /dev/null
@@ -1,76 +0,0 @@
-From 3ba2c55dfdc8ff20de369f07f6c57d08718d3add Mon Sep 17 00:00:00 2001
-From: Adam Sampson <[email protected]>
-Date: Sun, 2 Jul 2023 15:22:49 +0100
-Subject: [PATCH] Check for GNU strerror_r using the compiler only
-
-The new test that was added to distinguish GNU/XSI strerror_r ran a
-compiled program, which doesn't work when cross-compiling. The only
-difference at compile time is that the GNU version returns char * and
-the XSI version returns int, so detect it by compiling a program that
-dereferences the return value.
-
-Signed-off-by: Adam Sampson <[email protected]>
-
-Upstream-Status: Backport
-Signed-off-by: Ross Burton <[email protected]>
----
- configure.ac | 19 +++++++------------
- meson.build  | 10 +++++-----
- 2 files changed, 12 insertions(+), 17 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 40f5a583..29890622 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -146,19 +146,14 @@ if test "$os_unix" = "yes"; then
- 
-       AC_CHECK_FUNC(
-               [strerror_r],
--              [AC_RUN_IFELSE(
--                      [AC_LANG_SOURCE([[
--                              #include <errno.h>
--                              #include <string.h>
--
--                              int main (void)
--                              {
--                                      char buf[32];
--                                      return strerror_r (EINVAL, buf, 32);
--                              }
--                      ]])],
--                        [AC_DEFINE([HAVE_XSI_STRERROR_R], 1, [Whether 
XSI-compliant strerror_r() is available])],
-+              [AC_COMPILE_IFELSE(
-+                      [AC_LANG_PROGRAM([[#include <errno.h>
-+                                         #include <string.h>]],
-+                                       [[/* GNU strerror_r returns char *, 
XSI returns int */
-+                                          char buf[32];
-+                                          return *strerror_r (EINVAL, buf, 
32);]])],
-                       [AC_DEFINE([HAVE_GNU_STRERROR_R], 1, [Whether 
GNU-specific strerror_r() is available])],
-+                        [AC_DEFINE([HAVE_XSI_STRERROR_R], 1, [Whether 
XSI-compliant strerror_r() is available])],
-                       [])],
-               [])
- 
-diff --git a/meson.build b/meson.build
-index 0f8c8da0..4cc3f89a 100644
---- a/meson.build
-+++ b/meson.build
-@@ -306,15 +306,15 @@ if cc.has_function('strerror_r', prefix: '#include 
<string.h>')
- 
- int main (void)
- {
-+    /* GNU strerror_r returns char *, XSI returns int */
-     char buf[32];
--    return strerror_r (EINVAL, buf, 32);
-+    return *strerror_r (EINVAL, buf, 32);
- }
- '''
--  strerror_r_check = cc.run(strerror_r_code, name : 'strerror_r check')
--  if strerror_r_check.returncode() == 0
--    conf.set('HAVE_XSI_STRERROR_R', 1)
--  else
-+  if cc.compiles(strerror_r_code, name : 'GNU strerror_r check')
-     conf.set('HAVE_GNU_STRERROR_R', 1)
-+  else
-+    conf.set('HAVE_XSI_STRERROR_R', 1)
-   endif
- endif
- 
diff --git a/meta/recipes-support/p11-kit/files/strerror-2.patch 
b/meta/recipes-support/p11-kit/files/strerror-2.patch
deleted file mode 100644
index 1a9180b508..0000000000
--- a/meta/recipes-support/p11-kit/files/strerror-2.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 7aa6251bf4ce36d027d53c9c96bb05f90ef7eb5b Mon Sep 17 00:00:00 2001
-From: Adam Sampson <[email protected]>
-Date: Sun, 2 Jul 2023 15:44:06 +0100
-Subject: [PATCH] Define _GNU_SOURCE when testing for strerror_r
-
-The Meson check for GNU/XSI strerror_r didn't inherit the project
-options that include _GNU_SOURCE (unlike the autoconf version), so the
-result didn't match how the code that uses it will be compiled. Add
-_GNU_SOURCE explicitly as with the following checks.
-
-Signed-off-by: Adam Sampson <[email protected]>
-
-Upstream-Status: Backport
-Signed-off-by: Ross Burton <[email protected]>
----
- meson.build | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/meson.build b/meson.build
-index 4cc3f89a..9a72e148 100644
---- a/meson.build
-+++ b/meson.build
-@@ -301,6 +301,7 @@ endforeach
- 
- if cc.has_function('strerror_r', prefix: '#include <string.h>')
-   strerror_r_code = '''
-+#define _GNU_SOURCE
- #include <errno.h>
- #include <string.h>
- 
diff --git a/meta/recipes-support/p11-kit/p11-kit_0.25.0.bb 
b/meta/recipes-support/p11-kit/p11-kit_0.25.2.bb
similarity index 90%
rename from meta/recipes-support/p11-kit/p11-kit_0.25.0.bb
rename to meta/recipes-support/p11-kit/p11-kit_0.25.2.bb
index ad1fda3f3b..107dbd0534 100644
--- a/meta/recipes-support/p11-kit/p11-kit_0.25.0.bb
+++ b/meta/recipes-support/p11-kit/p11-kit_0.25.2.bb
@@ -10,10 +10,8 @@ DEPENDS = "libtasn1 libtasn1-native libffi"
 
 DEPENDS:append = "${@' glib-2.0' if d.getVar('GTKDOC_ENABLED') == 'True' else 
''}"
 
-SRC_URI = "git://github.com/p11-glue/p11-kit;branch=master;protocol=https \
-           file://strerror-1.patch \
-           file://strerror-2.patch"
-SRCREV = "a8cce8bd8065bbf80bd47219f85f0cd9cf27dd0c"
+SRC_URI = "git://github.com/p11-glue/p11-kit;branch=master;protocol=https"
+SRCREV = "66d6b42ef8dd84fcd8e199ac9f23f822f1a058c9"
 S = "${WORKDIR}/git"
 
 PACKAGECONFIG ??= ""
-- 
2.39.2

Attachment: 0001-p11-kit-upgrade-0.25.0-0.25.2.patch
Description: Binary data

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 1845 entries from dependency cache.
Parsing recipes...done.
Parsing of 911 .bb files complete (910 cached, 1 parsed). 1843 targets, 38 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the core2-64 sysroot...done.
Removing 1 recipes from the qemux86_64 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION           = "2.6.0"
BUILD_SYS            = "x86_64-linux"
NATIVELSBSTRING      = "universal"
TARGET_SYS           = "x86_64-poky-linux"
MACHINE              = "qemux86-64"
DISTRO               = "poky"
DISTRO_VERSION       = "4.3+snapshot-c10aea23f679fa05899b7d4fee28ce870319be43"
TUNE_FEATURES        = "m64 core2"
TARGET_FPU           = ""
meta                 
meta-poky            
meta-yocto-bsp       
workspace            = 
"tmp-auh-upgrades:c10aea23f679fa05899b7d4fee28ce870319be43"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
done.
Sstate summary: Wanted 110 Local 98 Mirrors 0 Missed 12 Current 285 (89% match, 
96% complete)
NOTE: Executing Tasks
NOTE: Running setscene task 304 of 395 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/bash-completion/bash-completion_2.11.bb:do_create_spdx_setscene)
NOTE: Running setscene task 305 of 395 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/gnutls/libtasn1_4.19.0.bb:do_create_spdx_setscene)
NOTE: Running setscene task 306 of 395 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/libffi/libffi_3.4.4.bb:do_create_spdx_setscene)
NOTE: Running setscene task 347 of 395 
(virtual:native:/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/gnutls/libtasn1_4.19.0.bb:do_create_spdx_setscene)
NOTE: Running task 821 of 1151 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/p11-kit/p11-kit_0.25.2.bb:do_recipe_qa)
NOTE: Running task 857 of 1151 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/p11-kit/p11-kit_0.25.2.bb:do_write_config)
NOTE: recipe bash-completion-2.11-r0: task do_create_spdx_setscene: Started
NOTE: recipe libtasn1-4.19.0-r0: task do_create_spdx_setscene: Started
NOTE: recipe libffi-3.4.4-r0: task do_create_spdx_setscene: Started
NOTE: recipe p11-kit-0.25.2-r0: task do_recipe_qa: Started
NOTE: recipe p11-kit-0.25.2-r0: task do_write_config: Started
NOTE: recipe libtasn1-native-4.19.0-r0: task do_create_spdx_setscene: Started
NOTE: recipe bash-completion-2.11-r0: task do_create_spdx_setscene: Succeeded
NOTE: recipe p11-kit-0.25.2-r0: task do_write_config: Succeeded
NOTE: recipe libffi-3.4.4-r0: task do_create_spdx_setscene: Succeeded
NOTE: recipe libtasn1-4.19.0-r0: task do_create_spdx_setscene: Succeeded
NOTE: Running setscene task 362 of 395 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/gcc/gcc-runtime_13.2.bb:do_create_spdx_setscene)
NOTE: recipe libtasn1-native-4.19.0-r0: task do_create_spdx_setscene: Succeeded
NOTE: recipe p11-kit-0.25.2-r0: task do_recipe_qa: Succeeded
NOTE: Running task 959 of 1151 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/p11-kit/p11-kit_0.25.2.bb:do_fetch)
NOTE: recipe gcc-runtime-13.2.0-r0: task do_create_spdx_setscene: Started
NOTE: recipe p11-kit-0.25.2-r0: task do_fetch: Started
NOTE: recipe gcc-runtime-13.2.0-r0: task do_create_spdx_setscene: Succeeded
NOTE: Running setscene task 371 of 395 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-core/glibc/glibc_2.38.bb:do_create_spdx_setscene)
NOTE: recipe glibc-2.38+git-r0: task do_create_spdx_setscene: Started
NOTE: recipe glibc-2.38+git-r0: task do_create_spdx_setscene: Succeeded
NOTE: Running setscene task 378 of 395 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/gcc/gcc-cross_13.2.bb:do_create_spdx_setscene)
NOTE: Running setscene task 380 of 395 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/gcc/gcc-cross_13.2.bb:do_populate_sysroot_setscene)
NOTE: recipe gcc-cross-x86_64-13.2.0-r0: task do_create_spdx_setscene: Started
NOTE: recipe gcc-cross-x86_64-13.2.0-r0: task do_populate_sysroot_setscene: 
Started
NOTE: recipe gcc-cross-x86_64-13.2.0-r0: task do_create_spdx_setscene: Succeeded
NOTE: recipe gcc-cross-x86_64-13.2.0-r0: task do_populate_sysroot_setscene: 
Succeeded
NOTE: Running setscene task 390 of 395 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/binutils/binutils-cross_2.41.bb:do_populate_sysroot_setscene)
NOTE: Running setscene task 392 of 395 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/gcc/gcc-cross_13.2.bb:do_recipe_qa_setscene)
NOTE: recipe binutils-cross-x86_64-2.41-r0: task do_populate_sysroot_setscene: 
Started
NOTE: recipe gcc-cross-x86_64-13.2.0-r0: task do_recipe_qa_setscene: Started
NOTE: recipe gcc-cross-x86_64-13.2.0-r0: task do_recipe_qa_setscene: Succeeded
NOTE: recipe binutils-cross-x86_64-2.41-r0: task do_populate_sysroot_setscene: 
Succeeded
NOTE: Running setscene task 395 of 395 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/binutils/binutils-cross_2.41.bb:do_recipe_qa_setscene)
NOTE: recipe binutils-cross-x86_64-2.41-r0: task do_recipe_qa_setscene: Started
NOTE: recipe binutils-cross-x86_64-2.41-r0: task do_recipe_qa_setscene: 
Succeeded
NOTE: Setscene tasks completed
NOTE: recipe p11-kit-0.25.2-r0: task do_fetch: Succeeded
NOTE: Running task 1133 of 1151 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/p11-kit/p11-kit_0.25.2.bb:do_unpack)
NOTE: Running task 1134 of 1151 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/p11-kit/p11-kit_0.25.2.bb:do_prepare_recipe_sysroot)
NOTE: recipe p11-kit-0.25.2-r0: task do_unpack: Started
NOTE: recipe p11-kit-0.25.2-r0: task do_prepare_recipe_sysroot: Started
NOTE: recipe p11-kit-0.25.2-r0: task do_prepare_recipe_sysroot: Succeeded
NOTE: recipe p11-kit-0.25.2-r0: task do_unpack: Succeeded
NOTE: Running task 1135 of 1151 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/p11-kit/p11-kit_0.25.2.bb:do_patch)
NOTE: Running task 1136 of 1151 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/p11-kit/p11-kit_0.25.2.bb:do_collect_spdx_deps)
NOTE: recipe p11-kit-0.25.2-r0: task do_patch: Started
NOTE: recipe p11-kit-0.25.2-r0: task do_collect_spdx_deps: Started
NOTE: recipe p11-kit-0.25.2-r0: task do_patch: Succeeded
NOTE: Running task 1137 of 1151 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/p11-kit/p11-kit_0.25.2.bb:do_deploy_source_date_epoch)
NOTE: Running task 1138 of 1151 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/p11-kit/p11-kit_0.25.2.bb:do_populate_lic)
NOTE: recipe p11-kit-0.25.2-r0: task do_collect_spdx_deps: Succeeded
NOTE: recipe p11-kit-0.25.2-r0: task do_deploy_source_date_epoch: Started
NOTE: recipe p11-kit-0.25.2-r0: task do_populate_lic: Started
NOTE: recipe p11-kit-0.25.2-r0: task do_populate_lic: Succeeded
NOTE: recipe p11-kit-0.25.2-r0: task do_deploy_source_date_epoch: Succeeded
NOTE: Running task 1139 of 1151 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/p11-kit/p11-kit_0.25.2.bb:do_configure)
NOTE: recipe p11-kit-0.25.2-r0: task do_configure: Started
Log data follows:
| DEBUG: Executing python function extend_recipe_sysroot
| NOTE: Direct dependencies are 
['/home/pokybuild/yocto-worker/auh/build/meta/recipes-core/glibc/glibc_2.38.bb:do_populate_sysroot',
 
'/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/gcc/gcc-cross_13.2.bb:do_populate_sysroot',
 
'/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/gcc/gcc-runtime_13.2.bb:do_populate_sysroot',
 
'/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/qemu/qemu-native_8.1.2.bb:do_populate_sysroot',
 
'/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/quilt/quilt-native_0.67.bb:do_populate_sysroot',
 
'/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/bash-completion/bash-completion_2.11.bb:do_populate_sysroot',
 
'/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/gnutls/libtasn1_4.19.0.bb:do_populate_sysroot',
 
'/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/libffi/libffi_3.4.4.bb:do_populate_sysroot',
 
'virtual:native:/home/pokybuild/yocto-worker/auh/build/meta/recipes-core/gettext/gettext_0.2
 2.bb:do_populate_sysroot', 
'virtual:native:/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/meson/meson_1.2.2.bb:do_populate_sysroot',
 
'virtual:native:/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/ninja/ninja_1.11.1.bb:do_populate_sysroot',
 
'virtual:native:/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/patch/patch_2.7.6.bb:do_populate_sysroot',
 
'virtual:native:/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb:do_populate_sysroot',
 
'virtual:native:/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/pseudo/pseudo_git.bb:do_populate_sysroot',
 
'virtual:native:/home/pokybuild/yocto-worker/auh/build/meta/recipes-devtools/python/python3_3.11.5.bb:do_populate_sysroot',
 
'virtual:native:/home/pokybuild/yocto-worker/auh/build/meta/recipes-gnome/gtk-doc/gtk-doc_1.33.2.bb:do_populate_sysroot',
 
'virtual:native:/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/gnutls/libtasn1_4.19.0.bb:do_populate_sys
 root']
| NOTE: Installed into sysroot: []
| NOTE: Skipping as already exists in sysroot: ['glibc', 'gcc-cross-x86_64', 
'gcc-runtime', 'qemu-native', 'quilt-native', 'bash-completion', 'libtasn1', 
'libffi', 'gettext-native', 'meson-native', 'ninja-native', 'patch-native', 
'pkgconfig-native', 'pseudo-native', 'python3-native', 'gtk-doc-native', 
'libtasn1-native', 'xz-native', 'glib-2.0-native', 'zlib-native', 
'libtirpc-native', 'libffi-native', 'libedit-native', 'libtool-native', 
'libnsl2-native', 'expat-native', 'bzip2-native', 'util-linux-libuuid-native', 
'sqlite3-native', 'gdbm-native', 'openssl-native', 'ncurses-native', 
'linux-libc-headers', 'libgcc', 'texinfo-dummy-native', 
'gettext-minimal-native', 'attr-native', 'python3-wheel-native', 
'python3-installer-native', 'python3-build-native', 
'python3-setuptools-native', 're2c-native', 'libmpc-native', 'zstd-native', 
'gnu-config-native', 'mpfr-native', 'binutils-cross-x86_64', 'gmp-native', 
'flex-native', 'util-linux-native', 'libpcre2-native', 'cmake-native', 
'perl-native',
  'python3-flit-core-native', 'python3-pyproject-hooks-native', 
'python3-packaging-native', 'm4-native', 'libcap-ng-native', 'make-native', 
'unzip-native']
| DEBUG: Python function extend_recipe_sysroot finished
| DEBUG: Executing shell function do_configure
| gtkdocize: GTK_DOC_CHECK not called in 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/git/configure.ac
| NOTE: Executing meson -Dgtk_doc=false -Dman=false...
| Submodule 'pkcs11-json' (https://github.com/p11-glue/pkcs11-json.git) 
registered for path './'
| Cloning into 
'/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/git/subprojects/pkcs11-json'...
| fatal: unable to access 'https://github.com/p11-glue/pkcs11-json.git/': Could 
not resolve host: github.com
| fatal: clone of 'https://github.com/p11-glue/pkcs11-json.git' into submodule 
path 
'/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/git/subprojects/pkcs11-json'
 failed
| Failed to clone 'subprojects/pkcs11-json'. Retry scheduled
| Cloning into 
'/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/git/subprojects/pkcs11-json'...
| fatal: unable to access 'https://github.com/p11-glue/pkcs11-json.git/': Could 
not resolve host: github.com
| fatal: clone of 'https://github.com/p11-glue/pkcs11-json.git' into submodule 
path 
'/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/git/subprojects/pkcs11-json'
 failed
| Failed to clone 'subprojects/pkcs11-json' a second time, aborting
| The Meson build system
| Version: 1.2.2
| Source dir: 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/git
| Build dir: 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/build
| Build type: cross build
| Project name: p11-kit
| Project version: 0.25.2
| C compiler for the host machine: x86_64-poky-linux-gcc -m64 -march=core2 
-mtune=core2 -msse3 -mfpmath=sse -fstack-protector-strong -O2 
-D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security 
--sysroot=/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/recipe-sysroot
 (gcc 13.2.0 "x86_64-poky-linux-gcc (GCC) 13.2.0")
| C linker for the host machine: x86_64-poky-linux-gcc -m64 -march=core2 
-mtune=core2 -msse3 -mfpmath=sse -fstack-protector-strong -O2 
-D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security 
--sysroot=/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/recipe-sysroot
 ld.bfd 2.41.0.20230926
| C compiler for the build machine: gcc (gcc 12.2.0 "gcc (GCC) 12.2.0")
| C linker for the build machine: gcc ld.bfd 2.40.20230119
| Build machine cpu family: x86_64
| Build machine cpu: x86_64
| Host machine cpu family: x86_64
| Host machine cpu: x86_64
| Target machine cpu family: x86_64
| Target machine cpu: x86_64
| Has header "libintl.h" : YES
| Library intl found: NO
| Checking for size of "unsigned long" : 8
| Run-time dependency threads found: YES
| Checking for function "pthread_create" with dependency threads: YES
| Checking for function "nanosleep" : YES
| Checking for function "dlopen" : YES
| Library nsl found: NO
| Has header "locale.h" : YES
| Checking for type "locale_t" : YES
| Checking for function "newlocale" : YES
| Checking for function "strerror_l" : YES
| Has header "sys/resource.h" : YES
| Has header "sys/un.h" : YES
| Has header "ucred.h" : NO
| Checking for function "fdwalk" : NO
| Checking for function "getauxval" : YES
| Checking for function "getexecname" : NO
| Checking for function "getpeereid" : NO
| Checking for function "getpeerucred" : NO
| Checking for function "getprogname" : NO
| Checking for function "getresuid" : YES
| Checking for function "isatty" : YES
| Checking for function "issetugid" : NO
| Checking for function "mkdtemp" : YES
| Checking for function "mkstemp" : YES
| Checking for function "readpassphrase" : NO
| Checking for function "secure_getenv" : YES
| Checking for function "strndup" : YES
| Checking whether type "struct dirent" has member "d_type" : YES
| Checking if "thread-local storage class" compiles: YES
| Checking for function "gmtime_r" : YES
| Checking if "program_invocation_short_name_test_code" : links: YES
| Checking if "__libc_enable_secure" : links: YES
| Checking if "vsock_test" compiles: YES
| Checking for type "sighandler_t" : NO
| Checking for type "sig_t" : NO
| Checking for type "__sighandler_t" : NO
| Checking for type "sighandler_t" : NO
| Checking for type "sig_t" : YES
| Checking for type "__sighandler_t" : YES
| Has header "stdbool.h" : YES
| Checking for function "asprintf" : YES
| Checking for function "basename" : YES
| Checking for function "memdup" : NO
| Checking for function "reallocarray" : YES
| Checking for function "secure_getenv" : YES (cached)
| Checking for function "setenv" : YES
| Checking for function "strnstr" : NO
| Checking for function "vasprintf" : YES
| Checking for function "strerror_r" : YES
| Checking if "GNU strerror_r check" compiles: YES
| Header "errno.h" has symbol "program_invocation_short_name" : YES
| Header "stdio.h" has symbol "asprintf" : YES
| Header "stdio.h" has symbol "vasprintf" : YES
| Header "stdlib.h" has symbol "reallocarray" : YES
| Found pkg-config: 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/recipe-sysroot-native/usr/bin/pkg-config
 (0.29.2)
| Run-time dependency libffi found: YES 3.4.4
| Run-time dependency libtasn1 found: YES 4.19.0
| Program asn1Parser found: YES 
(/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/recipe-sysroot-native/usr/bin/asn1Parser)
| Found CMake: NO
| Run-time dependency libsystemd found: NO (tried pkgconfig and cmake)
| Run-time dependency systemd found: NO (tried pkgconfig and cmake)
| Configuring config.h using configuration
| Program python3 found: YES 
(/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/recipe-sysroot-native/usr/bin/nativepython3)
| 
| ../git/meson.build:452:22: ERROR: git submodule failed to init
| 
| A full log can be found at 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/build/meson-logs/meson-log.txt
| ERROR: meson failed
| WARNING: 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/temp/run.do_configure.3406408:177
 exit 1 from 'exit 1'
| WARNING: Backtrace (BB generated script):
|       #1: bbfatal_log, 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/temp/run.do_configure.3406408,
 line 177
|       #2: meson_do_configure, 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/temp/run.do_configure.3406408,
 line 166
|       #3: do_configure, 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/temp/run.do_configure.3406408,
 line 152
|       #4: main, 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/temp/run.do_configure.3406408,
 line 190
NOTE: recipe p11-kit-0.25.2-r0: task do_configure: Failed
NOTE: Tasks Summary: Attempted 1139 tasks of which 1129 didn't need to be rerun 
and 1 failed.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 3 seconds
NOTE: The errors for this build are stored in 
/home/pokybuild/yocto-worker/auh/build/build/tmp/log/error-report/error_report_20231115141337.txt
You can send the errors to a reports server by running:
  send-error-report 
/home/pokybuild/yocto-worker/auh/build/build/tmp/log/error-report/error_report_20231115141337.txt
 [-s server]
NOTE: The contents of these logs will be posted in public if you use the above 
command with the default server. Please ensure you remove any identifying or 
proprietary information when prompted before sending.

Summary: 1 task failed:
  
/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/p11-kit/p11-kit_0.25.2.bb:do_configure
Summary: There were 2 ERROR messages, returning a non-zero exit code.
ERROR: p11-kit-0.25.2-r0 do_configure: meson failed
ERROR: p11-kit-0.25.2-r0 do_configure: 
ExecutionError('/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/temp/run.do_configure.3406408',
 1, None, None)
ERROR: Logfile of failure stored in: 
/home/pokybuild/yocto-worker/auh/build/build/tmp/work/core2-64-poky-linux/p11-kit/0.25.2/temp/log.do_configure.3406408
ERROR: Task 
(/home/pokybuild/yocto-worker/auh/build/meta/recipes-support/p11-kit/p11-kit_0.25.2.bb:do_configure)
 failed with exit code '1'
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#190721): 
https://lists.openembedded.org/g/openembedded-core/message/190721
Mute This Topic: https://lists.openembedded.org/mt/102605857/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to