Hello,

this email is a notification from the Auto Upgrade Helper
that the automatic attempt to upgrade the recipe(s) *lttng-tools* to *2.14.1* 
has Failed(do_compile).

Detailed error information:

do_compile failed



Next steps:
    - apply the patch: git am 0001-lttng-tools-upgrade-2.14.0-2.14.1.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 f668c5e1e70624ba4b5c6268b41e384199b4d8f9 Mon Sep 17 00:00:00 2001
From: Upgrade Helper <[email protected]>
Date: Sun, 1 Feb 2026 07:03:48 +0000
Subject: [PATCH] lttng-tools: upgrade 2.14.0 -> 2.14.1

---
 ...Remove-the-scope-resolution-operator.patch | 41 ------------------
 ...onstructor-change-rpath-to-libdir-li.patch | 43 -------------------
 ...p-index-allocator-symbols-from-versi.patch | 43 -------------------
 ...-tests-do-not-strip-a-helper-library.patch |  2 +-
 .../lttng/lttng-tools/disable-tests.patch     |  4 +-
 .../lttng/lttng-tools/disable-tests2.patch    | 20 ++++++---
 .../lttng/lttng-tools/libc++.patch            | 33 +++++++++-----
 ...-tools_2.14.0.bb => lttng-tools_2.14.1.bb} |  5 +--
 8 files changed, 40 insertions(+), 151 deletions(-)
 delete mode 100644 
meta/recipes-kernel/lttng/lttng-tools/0001-eventfd.cpp-Remove-the-scope-resolution-operator.patch
 delete mode 100644 
meta/recipes-kernel/lttng/lttng-tools/0001-gen-ust-events-constructor-change-rpath-to-libdir-li.patch
 delete mode 100644 
meta/recipes-kernel/lttng/lttng-tools/0001-liblttng-ctl-drop-index-allocator-symbols-from-versi.patch
 rename meta/recipes-kernel/lttng/{lttng-tools_2.14.0.bb => 
lttng-tools_2.14.1.bb} (96%)

diff --git 
a/meta/recipes-kernel/lttng/lttng-tools/0001-eventfd.cpp-Remove-the-scope-resolution-operator.patch
 
b/meta/recipes-kernel/lttng/lttng-tools/0001-eventfd.cpp-Remove-the-scope-resolution-operator.patch
deleted file mode 100644
index 02bd1d1db0..0000000000
--- 
a/meta/recipes-kernel/lttng/lttng-tools/0001-eventfd.cpp-Remove-the-scope-resolution-operator.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From da83d31a8dd555c28eb27bd7a7d3c53b51d5f276 Mon Sep 17 00:00:00 2001
-From: Mingli Yu <[email protected]>
-Date: Sun, 20 Jul 2025 16:37:57 +0800
-Subject: [PATCH] eventfd.cpp: Remove the scope resolution operator
-
-Remove the scope resolution operator :: to fix the below build failure
-with musl.
- | ../../../sources/lttng-tools-2.14.0/src/common/eventfd.cpp:18:31: error: 
expected id-expression before numeric constant
- |    18 |                 int flags = ::EFD_CLOEXEC;
- |       |                               ^~~~~~~~~~~
- | ../../../sources/lttng-tools-2.14.0/src/common/eventfd.cpp:21:36: error: 
expected id-expression before numeric constant
- |    21 |                         flags |= ::EFD_SEMAPHORE;
- |       |                                    ^~~~~~~~~~~~~
-
-Upstream-Status: Pending [The message to lttng-dev awaits moderator approval]
-
-Signed-off-by: Mingli Yu <[email protected]>
----
- src/common/eventfd.cpp | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/common/eventfd.cpp b/src/common/eventfd.cpp
-index fe5b549..3379b0b 100644
---- a/src/common/eventfd.cpp
-+++ b/src/common/eventfd.cpp
-@@ -15,10 +15,10 @@
- 
- lttng::eventfd::eventfd(bool use_semaphore_semantics, std::uint64_t 
initial_value) :
-       file_descriptor([use_semaphore_semantics, initial_value]() {
--              int flags = ::EFD_CLOEXEC;
-+              int flags = EFD_CLOEXEC;
- 
-               if (use_semaphore_semantics) {
--                      flags |= ::EFD_SEMAPHORE;
-+                      flags |= EFD_SEMAPHORE;
-               }
- 
-               const auto raw_fd = ::eventfd(initial_value, flags);
--- 
-2.34.1
-
diff --git 
a/meta/recipes-kernel/lttng/lttng-tools/0001-gen-ust-events-constructor-change-rpath-to-libdir-li.patch
 
b/meta/recipes-kernel/lttng/lttng-tools/0001-gen-ust-events-constructor-change-rpath-to-libdir-li.patch
deleted file mode 100644
index 562381b5fd..0000000000
--- 
a/meta/recipes-kernel/lttng/lttng-tools/0001-gen-ust-events-constructor-change-rpath-to-libdir-li.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From 673e8ef4763ea9a9c67248e6a1a7eadfc4bc278d Mon Sep 17 00:00:00 2001
-From: Liu Yiding <[email protected]>
-Date: Thu, 3 Jul 2025 19:00:25 +0800
-Subject: [PATCH] gen-ust-events-constructor: change rpath to $libdir like
- others do
-
-set rpath to abs_builddir will cause issue like:
-ERROR: lttng-tools-2.14.0-r0 do_package_qa: QA Issue: File 
/usr/lib/lttng-tools/ptest/tests/utils/testapp/gen-ust-events-constructor/gen-ust-events-c-constructor-so
 in package lttng-tools-ptest contains reference to TMPDIR [buildpaths]
-ERROR: lttng-tools-2.14.0-r0 do_package_qa: QA Issue: File 
/usr/lib/lttng-tools/ptest/tests/utils/testapp/gen-ust-events-constructor/gen-ust-events-constructor-so
 in package lttng-tools-ptest contains reference to TMPDIR [buildpaths]
-
-userspace-probe-elf-binary and userspace-probe-sdt-binary set rpath to libdir
- |$ grep -nr "rpath" */Makefile.am
- |gen-ust-events-constructor/Makefile.am:29:                         -rpath 
$(abs_builddir)
- |userspace-probe-elf-binary/Makefile.am:8:libfoo_la_LDFLAGS = -shared -module 
-avoid-version -rpath $(libdir)
- |userspace-probe-sdt-binary/Makefile.am:25:libfoo_la_LDFLAGS = -module 
-shared -avoid-version -rpath $(libdir)
- |userspace-probe-sdt-binary/Makefile.am:31:libbar_la_LDFLAGS = -module 
-shared -avoid-version -rpath $(libdir)
- |userspace-probe-sdt-binary/Makefile.am:37:libzzz_la_LDFLAGS = -module 
-shared -avoid-version -rpath $(libdir)
-
-Signed-off-by: Liu Yiding <[email protected]>
-
-Upstream-Status: Submitted [https://github.com/lttng/lttng-tools/pull/171]
-
-Signed-off-by: Mingli Yu <[email protected]>
----
- tests/utils/testapp/gen-ust-events-constructor/Makefile.am | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/tests/utils/testapp/gen-ust-events-constructor/Makefile.am 
b/tests/utils/testapp/gen-ust-events-constructor/Makefile.am
-index 6c09cf585..3eb26fba2 100644
---- a/tests/utils/testapp/gen-ust-events-constructor/Makefile.am
-+++ b/tests/utils/testapp/gen-ust-events-constructor/Makefile.am
-@@ -26,7 +26,7 @@ else
- # Force the shared flag on the noinst libraries since they are
- # only built static by default
- FORCE_SHARED_LIB_OPTIONS = -module -shared -avoid-version \
--                         -rpath $(abs_builddir)
-+                         -rpath $(libdir)
- 
- noinst_LTLIBRARIES += libtp-so-provider.la libtp-so-define.la \
-       libtp-so_c-provider.la libtp-so_c-define.la
--- 
-2.34.1
-
diff --git 
a/meta/recipes-kernel/lttng/lttng-tools/0001-liblttng-ctl-drop-index-allocator-symbols-from-versi.patch
 
b/meta/recipes-kernel/lttng/lttng-tools/0001-liblttng-ctl-drop-index-allocator-symbols-from-versi.patch
deleted file mode 100644
index 3a535470da..0000000000
--- 
a/meta/recipes-kernel/lttng/lttng-tools/0001-liblttng-ctl-drop-index-allocator-symbols-from-versi.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From adafa15a0ea145e1e98f68e2a56512e83f1f6798 Mon Sep 17 00:00:00 2001
-From: Khem Raj <[email protected]>
-Date: Tue, 19 Aug 2025 20:06:21 -0700
-Subject: [PATCH] liblttng-ctl: drop index allocator symbols from version
- script
-
-The lttng_index_allocator_* functions are implemented in libcommon-gpl,
-not in liblttng-ctl. Since liblttng-ctl does not link against
-libcommon-gpl and does not export these symbols, referencing them in
-liblttng-ctl.sym causes link failures with LLD:
-
-  ld.lld: error: version script assignment of 'global' to symbol
-  'lttng_index_allocator_alloc' failed: symbol not defined
-  ...
-
-Remove these entries from the version script to align the exported ABI
-with the actual symbols provided by liblttng-ctl.
-
-This fixes builds with clang + lld.
-
-Upstream-Status: Submitted [https://review.lttng.org/c/lttng-tools/+/15156]
-Change-Id: I27f40f3d38af7014cf5356230e06aa291c9a3c5f
-Signed-off-by: Khem Raj <[email protected]>
----
- src/lib/lttng-ctl/liblttng-ctl.sym | 5 -----
- 1 file changed, 5 deletions(-)
-
-diff --git a/src/lib/lttng-ctl/liblttng-ctl.sym 
b/src/lib/lttng-ctl/liblttng-ctl.sym
-index 27900ca44..641084750 100644
---- a/src/lib/lttng-ctl/liblttng-ctl.sym
-+++ b/src/lib/lttng-ctl/liblttng-ctl.sym
-@@ -336,11 +336,6 @@ lttng_health_state
- lttng_health_thread_name
- lttng_health_thread_state
- lttng_ht_seed
--lttng_index_allocator_alloc
--lttng_index_allocator_create
--lttng_index_allocator_destroy
--lttng_index_allocator_get_index_count
--lttng_index_allocator_release
- lttng_kernel_probe_location_address_create
- lttng_kernel_probe_location_address_get_address
- lttng_kernel_probe_location_destroy
diff --git 
a/meta/recipes-kernel/lttng/lttng-tools/0001-tests-do-not-strip-a-helper-library.patch
 
b/meta/recipes-kernel/lttng/lttng-tools/0001-tests-do-not-strip-a-helper-library.patch
index 0547f30c02..8f16eb6381 100644
--- 
a/meta/recipes-kernel/lttng/lttng-tools/0001-tests-do-not-strip-a-helper-library.patch
+++ 
b/meta/recipes-kernel/lttng/lttng-tools/0001-tests-do-not-strip-a-helper-library.patch
@@ -1,4 +1,4 @@
-From a45157a50e14d4bd244a3dd05d79c5703c819550 Mon Sep 17 00:00:00 2001
+From aeea0973485fd289f61e95d3022c0f9749d3c4bd Mon Sep 17 00:00:00 2001
 From: Alexander Kanavin <[email protected]>
 Date: Thu, 12 Dec 2019 16:52:07 +0100
 Subject: [PATCH] tests: do not strip a helper library
diff --git a/meta/recipes-kernel/lttng/lttng-tools/disable-tests.patch 
b/meta/recipes-kernel/lttng/lttng-tools/disable-tests.patch
index d32cf87535..5f90d40e85 100644
--- a/meta/recipes-kernel/lttng/lttng-tools/disable-tests.patch
+++ b/meta/recipes-kernel/lttng/lttng-tools/disable-tests.patch
@@ -1,4 +1,4 @@
-From 05cf8ed6cc42a2f6ff53009d0ae2713fe63f1245 Mon Sep 17 00:00:00 2001
+From b8d92575b93d35b223bbe3e3bbcf62f8f90bcc75 Mon Sep 17 00:00:00 2001
 From: Richard Purdie <[email protected]>
 Date: Tue, 14 Dec 2021 12:34:04 +0000
 Subject: [PATCH] lttng-tools: Disable problem tests
@@ -18,7 +18,7 @@ Signed-off-by: Richard Purdie 
<[email protected]>
  1 file changed, 12 deletions(-)
 
 diff --git a/tests/regression/Makefile.am b/tests/regression/Makefile.am
-index 7076488..e5be904 100644
+index a97028b..2f18d95 100644
 --- a/tests/regression/Makefile.am
 +++ b/tests/regression/Makefile.am
 @@ -40,18 +40,6 @@ SERIAL_TESTS = tools/base-path/test_ust \
diff --git a/meta/recipes-kernel/lttng/lttng-tools/disable-tests2.patch 
b/meta/recipes-kernel/lttng/lttng-tools/disable-tests2.patch
index 5b9a07fcb8..5ed5d8a028 100644
--- a/meta/recipes-kernel/lttng/lttng-tools/disable-tests2.patch
+++ b/meta/recipes-kernel/lttng/lttng-tools/disable-tests2.patch
@@ -1,15 +1,23 @@
+From 3ed838c388dbac9d267530da6f734452cd01db84 Mon Sep 17 00:00:00 2001
+From: Richard Purdie <[email protected]>
+Date: Tue, 19 Aug 2025 10:09:07 +0100
+Subject: [PATCH] lttng-tools: Disable slow tests to fix ptest runs
+
 These tests take too long to run for our default output timeout in 
ptest-runner (450s).
 We could change that to 900s but it is a global setting so skip these tests for
 now. Ideally tests.serial would have occasional output when running to show 
activity.
 
 Upstream-Status: Inappropriate [workaround for slow tests]
 Signed-off-by: Richard Purdie <[email protected]>
+---
+ tests/regression/Makefile.am | 3 ---
+ 1 file changed, 3 deletions(-)
 
-Index: lttng-tools-2.14.0/tests/regression/Makefile.am
-===================================================================
---- lttng-tools-2.14.0.orig/tests/regression/Makefile.am
-+++ lttng-tools-2.14.0/tests/regression/Makefile.am
-@@ -26,7 +26,6 @@ SERIAL_TESTS = tools/base-path/test_ust
+diff --git a/tests/regression/Makefile.am b/tests/regression/Makefile.am
+index 2f18d95..6650d46 100644
+--- a/tests/regression/Makefile.am
++++ b/tests/regression/Makefile.am
+@@ -26,7 +26,6 @@ SERIAL_TESTS = tools/base-path/test_ust \
        tools/tracefile-limits/test_tracefile_count \
        tools/tracefile-limits/test_tracefile_size \
        tools/exclusion/test_exclusion \
@@ -17,7 +25,7 @@ Index: lttng-tools-2.14.0/tests/regression/Makefile.am
        tools/snapshots/test_ust_fast \
        tools/snapshots/test_ust_streaming \
        tools/snapshots/test_kernel_streaming \
-@@ -47,8 +46,6 @@ SERIAL_TESTS = tools/base-path/test_ust
+@@ -47,8 +46,6 @@ SERIAL_TESTS = tools/base-path/test_ust \
        tools/rotation/test_schedule_api \
        tools/metadata/test_kernel \
        tools/working-directory/test_relayd_working_directory \
diff --git a/meta/recipes-kernel/lttng/lttng-tools/libc++.patch 
b/meta/recipes-kernel/lttng/lttng-tools/libc++.patch
index be793c7699..437b509c9b 100644
--- a/meta/recipes-kernel/lttng/lttng-tools/libc++.patch
+++ b/meta/recipes-kernel/lttng/lttng-tools/libc++.patch
@@ -1,4 +1,11 @@
-sessiond: avoid std::vector range-ctor on non-standard iterators (libc++)
+From 08c7856c2ce3cd76f8c42b146703ae37b728489d Mon Sep 17 00:00:00 2001
+From: Khem Raj <[email protected]>
+Date: Wed, 20 Aug 2025 23:45:20 -0700
+Subject: [PATCH] sessiond: avoid std::vector range-ctor on non-standard
+ iterators (libc++)
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
 
 libc++ SFINAE-gates std::vector(It, It) behind standard iterator requirements.
 The events_view/channels_ht_view iterators don’t model Input/Forward, so the
@@ -9,12 +16,16 @@ libstdc++ behavior unchanged.
 
 Upstream-Status: Submitted [https://review.lttng.org/c/lttng-tools/+/15163]
 Signed-off-by: Khem Raj <[email protected]>
+---
+ src/bin/lttng-sessiond/ust-registry-channel.cpp | 7 +++++--
+ src/bin/lttng-sessiond/ust-registry-session.cpp | 7 +++++--
+ 2 files changed, 10 insertions(+), 4 deletions(-)
 
-Index: lttng-tools-2.14.0/src/bin/lttng-sessiond/ust-registry-channel.cpp
-===================================================================
---- lttng-tools-2.14.0.orig/src/bin/lttng-sessiond/ust-registry-channel.cpp
-+++ lttng-tools-2.14.0/src/bin/lttng-sessiond/ust-registry-channel.cpp
-@@ -529,8 +529,11 @@ void lsu::registry_channel::_accept_on_e
+diff --git a/src/bin/lttng-sessiond/ust-registry-channel.cpp 
b/src/bin/lttng-sessiond/ust-registry-channel.cpp
+index 45be2cc..01d5db3 100644
+--- a/src/bin/lttng-sessiond/ust-registry-channel.cpp
++++ b/src/bin/lttng-sessiond/ust-registry-channel.cpp
+@@ -529,8 +529,11 @@ void lsu::registry_channel::_accept_on_event_classes(
                events_view(*_events->ht);
  
        /* Copy the event ptrs from the _events ht to this vector which we'll 
sort. */
@@ -28,11 +39,11 @@ Index: 
lttng-tools-2.14.0/src/bin/lttng-sessiond/ust-registry-channel.cpp
  
        std::sort(sorted_event_classes.begin(),
                  sorted_event_classes.end(),
-Index: lttng-tools-2.14.0/src/bin/lttng-sessiond/ust-registry-session.cpp
-===================================================================
---- lttng-tools-2.14.0.orig/src/bin/lttng-sessiond/ust-registry-session.cpp
-+++ lttng-tools-2.14.0/src/bin/lttng-sessiond/ust-registry-session.cpp
-@@ -586,8 +586,11 @@ void lsu::registry_session::_accept_on_s
+diff --git a/src/bin/lttng-sessiond/ust-registry-session.cpp 
b/src/bin/lttng-sessiond/ust-registry-session.cpp
+index fbb6f02..ff4f63a 100644
+--- a/src/bin/lttng-sessiond/ust-registry-session.cpp
++++ b/src/bin/lttng-sessiond/ust-registry-session.cpp
+@@ -586,8 +586,11 @@ void 
lsu::registry_session::_accept_on_stream_classes(lst::trace_class_visitor&
                                                  
decltype(lsu::registry_channel::_node),
                                                  &lsu::registry_channel::_node>
                channels_ht_view(*_channels->ht);
diff --git a/meta/recipes-kernel/lttng/lttng-tools_2.14.0.bb 
b/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb
similarity index 96%
rename from meta/recipes-kernel/lttng/lttng-tools_2.14.0.bb
rename to meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb
index 7ab99cf2c6..c160c4886a 100644
--- a/meta/recipes-kernel/lttng/lttng-tools_2.14.0.bb
+++ b/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb
@@ -49,14 +49,11 @@ SRC_URI = 
"https://lttng.org/files/lttng-tools/lttng-tools-${PV}.tar.bz2 \
            file://run-ptest \
            file://lttng-sessiond.service \
            file://disable-tests.patch \
-           
file://0001-gen-ust-events-constructor-change-rpath-to-libdir-li.patch \
-           file://0001-eventfd.cpp-Remove-the-scope-resolution-operator.patch \
            file://disable-tests2.patch \
-           
file://0001-liblttng-ctl-drop-index-allocator-symbols-from-versi.patch \
            file://libc++.patch \
            "
 
-SRC_URI[sha256sum] = 
"d8c39c26cec13b7bd82551cd52a22efc358b888e36ebcf9c1b60ef1c3a3c2fd3"
+SRC_URI[sha256sum] = 
"0e68eb27923621c4bc127cfce40422d28cf7e473fedf6229ae6c32ba5c5b7c6d"
 
 inherit autotools ptest pkgconfig useradd python3-dir manpages systemd
 
-- 
2.47.1

NOTE: Reconnecting to bitbake server...
Loading cache...done.
Loaded 0 entries from dependency cache.
Parsing recipes...done.
Parsing of 951 .bb files complete (0 cached, 951 parsed). 1957 targets, 47 
skipped, 0 masked, 0 errors.
Removing 1 recipes from the qemux86_64 sysroot...done.
Removing 1 recipes from the x86-64-v3 sysroot...done.
NOTE: Resolving any missing task queue dependencies

Build Configuration:
BB_VERSION           = "2.16.0"
BUILD_SYS            = "x86_64-linux"
NATIVELSBSTRING      = "universal"
TARGET_SYS           = "x86_64-poky-linux"
MACHINE              = "qemux86-64"
DISTRO               = "poky"
DISTRO_VERSION       = 
"5.3.99+snapshot-656e1c58fb41c2ad00400cc1f3e6531a2a84367f"
TUNE_FEATURES        = "m64 x86-64-v3"
TARGET_FPU           = ""
meta                 = 
"tmp-auh-upgrades:656e1c58fb41c2ad00400cc1f3e6531a2a84367f"
meta-yocto-bsp       
meta-poky            = "master:de4abc0a175af12eacc761a2e1e60ca7fdfeaa1b"
workspace            = "<unknown>:<unknown>"

Initialising tasks...NOTE: The /proc/pressure files can't be read. Continuing 
build without monitoring pressure
Sstate summary: Wanted 287 Local 275 Mirrors 0 Missed 12 Current 808 (95% 
match, 98% complete)
done.
NOTE: Executing Tasks
NOTE: Setscene tasks completed
NOTE: Running task 1846 of 2914 
(/srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb:do_recipe_qa)
NOTE: recipe lttng-tools-2.14.1-r0: task do_recipe_qa: Started
NOTE: recipe lttng-tools-2.14.1-r0: task do_recipe_qa: Succeeded
NOTE: Running task 2892 of 2914 
(/srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb:do_fetch)
NOTE: recipe lttng-tools-2.14.1-r0: task do_fetch: Started
NOTE: recipe lttng-tools-2.14.1-r0: task do_fetch: Succeeded
NOTE: Running task 2893 of 2914 
(/srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb:do_unpack)
NOTE: Running task 2894 of 2914 
(/srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb:do_prepare_recipe_sysroot)
NOTE: recipe lttng-tools-2.14.1-r0: task do_unpack: Started
NOTE: recipe lttng-tools-2.14.1-r0: task do_prepare_recipe_sysroot: Started
NOTE: recipe lttng-tools-2.14.1-r0: task do_unpack: Succeeded
NOTE: Running task 2895 of 2914 
(/srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb:do_patch)
NOTE: Running task 2896 of 2914 
(/srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb:do_collect_spdx_deps)
NOTE: recipe lttng-tools-2.14.1-r0: task do_patch: Started
NOTE: recipe lttng-tools-2.14.1-r0: task do_collect_spdx_deps: Started
NOTE: recipe lttng-tools-2.14.1-r0: task do_collect_spdx_deps: Succeeded
NOTE: recipe lttng-tools-2.14.1-r0: task do_prepare_recipe_sysroot: Succeeded
NOTE: recipe lttng-tools-2.14.1-r0: task do_patch: Succeeded
NOTE: Running task 2897 of 2914 
(/srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb:do_deploy_source_date_epoch)
NOTE: Running task 2898 of 2914 
(/srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb:do_populate_lic)
NOTE: recipe lttng-tools-2.14.1-r0: task do_deploy_source_date_epoch: Started
NOTE: recipe lttng-tools-2.14.1-r0: task do_populate_lic: Started
NOTE: recipe lttng-tools-2.14.1-r0: task do_populate_lic: Succeeded
NOTE: recipe lttng-tools-2.14.1-r0: task do_deploy_source_date_epoch: Succeeded
NOTE: Running task 2899 of 2914 
(/srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb:do_configure)
NOTE: recipe lttng-tools-2.14.1-r0: task do_configure: Started
NOTE: recipe lttng-tools-2.14.1-r0: task do_configure: Succeeded
NOTE: Running task 2900 of 2914 
(/srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb:do_configure_ptest_base)
NOTE: recipe lttng-tools-2.14.1-r0: task do_configure_ptest_base: Started
NOTE: recipe lttng-tools-2.14.1-r0: task do_configure_ptest_base: Succeeded
NOTE: Running task 2901 of 2914 
(/srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb:do_compile)
NOTE: recipe lttng-tools-2.14.1-r0: task do_compile: Started
NOTE: recipe lttng-tools-2.14.1-r0: task do_compile: Succeeded
NOTE: Running task 2902 of 2914 
(/srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb:do_compile_ptest_base)
NOTE: recipe lttng-tools-2.14.1-r0: task do_compile_ptest_base: Started
NOTE: recipe lttng-tools-2.14.1-r0: task do_compile_ptest_base: Succeeded
NOTE: Running task 2903 of 2914 
(/srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb:do_install)
NOTE: recipe lttng-tools-2.14.1-r0: task do_install: Started
NOTE: recipe lttng-tools-2.14.1-r0: task do_install: Succeeded
NOTE: Running task 2904 of 2914 
(/srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb:do_install_ptest_base)
NOTE: recipe lttng-tools-2.14.1-r0: task do_install_ptest_base: Started
Log data follows:
| DEBUG: Executing shell function do_install_ptest_base
| install: cannot stat 
'/srv/pokybuild/yocto-worker/auh/build/build/tmp/work/x86-64-v3-poky-linux/lttng-tools/2.14.1/build/tests/regression/tools/notification/util_event_generator.sh':
 No such file or directory
| WARNING: 
/srv/pokybuild/yocto-worker/auh/build/build/tmp/work/x86-64-v3-poky-linux/lttng-tools/2.14.1/temp/run.do_install_ptest_base.3182806:196
 exit 1 from 'install -D 
"/srv/pokybuild/yocto-worker/auh/build/build/tmp/work/x86-64-v3-poky-linux/lttng-tools/2.14.1/build/$f"
 
"/srv/pokybuild/yocto-worker/auh/build/build/tmp/work/x86-64-v3-poky-linux/lttng-tools/2.14.1/image/usr/lib/lttng-tools/ptest/$f"'
| WARNING: Backtrace (BB generated script):
|       #1: do_install_ptest, 
/srv/pokybuild/yocto-worker/auh/build/build/tmp/work/x86-64-v3-poky-linux/lttng-tools/2.14.1/temp/run.do_install_ptest_base.3182806,
 line 196
|       #2: do_install_ptest_base, 
/srv/pokybuild/yocto-worker/auh/build/build/tmp/work/x86-64-v3-poky-linux/lttng-tools/2.14.1/temp/run.do_install_ptest_base.3182806,
 line 159
|       #3: main, 
/srv/pokybuild/yocto-worker/auh/build/build/tmp/work/x86-64-v3-poky-linux/lttng-tools/2.14.1/temp/run.do_install_ptest_base.3182806,
 line 331
NOTE: recipe lttng-tools-2.14.1-r0: task do_install_ptest_base: Failed
NOTE: Tasks Summary: Attempted 2904 tasks of which 2890 didn't need to be rerun 
and 1 failed.
NOTE: Writing buildhistory
NOTE: Writing buildhistory took: 1 seconds
NOTE: The errors for this build are stored in 
/srv/pokybuild/yocto-worker/auh/build/build/tmp/log/error-report/error_report_20260201070216.txt
You can send the errors to a reports server by running:
  send-error-report 
/srv/pokybuild/yocto-worker/auh/build/build/tmp/log/error-report/error_report_20260201070216.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:
  
/srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb:do_install_ptest_base
    log: 
/srv/pokybuild/yocto-worker/auh/build/build/tmp/work/x86-64-v3-poky-linux/lttng-tools/2.14.1/temp/log.do_install_ptest_base.3182806
Summary: There was 1 ERROR message, returning a non-zero exit code.
ERROR: lttng-tools-2.14.1-r0 do_install_ptest_base: Execution of 
'/srv/pokybuild/yocto-worker/auh/build/build/tmp/work/x86-64-v3-poky-linux/lttng-tools/2.14.1/temp/run.do_install_ptest_base.3182806'
 failed with exit code 1
ERROR: Logfile of failure stored in: 
/srv/pokybuild/yocto-worker/auh/build/build/tmp/work/x86-64-v3-poky-linux/lttng-tools/2.14.1/temp/log.do_install_ptest_base.3182806
ERROR: Task 
(/srv/pokybuild/yocto-worker/auh/build/layers/openembedded-core/meta/recipes-kernel/lttng/lttng-tools_2.14.1.bb:do_install_ptest_base)
 failed with exit code '1'

Attachment: 0001-lttng-tools-upgrade-2.14.0-2.14.1.patch
Description: Binary data

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#230268): 
https://lists.openembedded.org/g/openembedded-core/message/230268
Mute This Topic: https://lists.openembedded.org/mt/117576261/21656
Group Owner: [email protected]
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to