summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMingli Yu <mingli.yu@windriver.com>2022-06-09 16:51:08 +0800
committerKhem Raj <raj.khem@gmail.com>2022-06-30 13:39:27 -0400
commitbe8c2c6df9bd49eeef8417fd83c53703b9f8e53d (patch)
treeb8e8d7e724441e99218275f6788dece5bb58eb4c
parentbb37bf94c65db49520bdf8a6c93cf40225270154 (diff)
downloadmeta-openembedded-be8c2c6df9bd49eeef8417fd83c53703b9f8e53d.tar.gz
kronosnet: Fix build with gcc-12
Fix the build failure when debug build is enabled. Add DEBUG_BUILD = "1" in conf/local.conf. $ bitbake kronosnet | /build/tmp-glibc/work/corei7-64-wrs-linux/kronosnet/1.22-r0/recipe-sysroot/usr/include/bits/string_fortified.h:59:10: error: 'link' may be used uninitialized [-Werror=maybe-uninitialized] | 59 | return __builtin___memset_chk (__dest, __ch, __len, | | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 60 | __glibc_objsize0 (__dest)); | | ~~~~~~~~~~~~~~~~~~~~~~~~~~ | ../../git/libknet/links.c: In function 'knet_link_set_config': | ../../git/libknet/links.c:108:27: note: 'link' was declared here | 108 | struct knet_link *link; | | ^~~~ | cc1: all warnings being treated as errors Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-networking/recipes-extended/kronosnet/kronosnet/0001-links.c-Fix-build-with-gcc-12.patch40
-rw-r--r--meta-networking/recipes-extended/kronosnet/kronosnet_1.22.bb1
2 files changed, 41 insertions, 0 deletions
diff --git a/meta-networking/recipes-extended/kronosnet/kronosnet/0001-links.c-Fix-build-with-gcc-12.patch b/meta-networking/recipes-extended/kronosnet/kronosnet/0001-links.c-Fix-build-with-gcc-12.patch
new file mode 100644
index 0000000000..e59501cc49
--- /dev/null
+++ b/meta-networking/recipes-extended/kronosnet/kronosnet/0001-links.c-Fix-build-with-gcc-12.patch
@@ -0,0 +1,40 @@
1From a8aac8f3fd8b07fde8f5dc0aa9ece54a46d24425 Mon Sep 17 00:00:00 2001
2From: Mingli Yu <mingli.yu@windriver.com>
3Date: Thu, 9 Jun 2022 16:03:06 +0800
4Subject: [PATCH] links.c: Fix build with gcc-12
5
6Fixes:
7 | /build/tmp-glibc/work/corei7-64-wrs-linux/kronosnet/1.22-r0/recipe-sysroot/usr/include/bits/string_fortified.h:59:10: error: 'link' may be used uninitialized [-Werror=maybe-uninitialized]
8 | 59 | return __builtin___memset_chk (__dest, __ch, __len,
9 | | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 | 60 | __glibc_objsize0 (__dest));
11 | | ~~~~~~~~~~~~~~~~~~~~~~~~~~
12 | ../../git/libknet/links.c: In function 'knet_link_set_config':
13 | ../../git/libknet/links.c:108:27: note: 'link' was declared here
14 | 108 | struct knet_link *link;
15 | | ^~~~
16 | cc1: all warnings being treated as errors
17
18Upstream-Status: Submitted[https://github.com/kronosnet/kronosnet/pull/382]
19
20Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
21---
22 libknet/links.c | 2 +-
23 1 file changed, 1 insertion(+), 1 deletion(-)
24
25diff --git a/libknet/links.c b/libknet/links.c
26index 8cb1621b..0ef42b79 100644
27--- a/libknet/links.c
28+++ b/libknet/links.c
29@@ -105,7 +105,7 @@ int knet_link_set_config(knet_handle_t knet_h, knet_node_id_t host_id, uint8_t l
30 {
31 int savederrno = 0, err = 0, i, wipelink = 0, link_idx;
32 struct knet_host *host, *tmp_host;
33- struct knet_link *link;
34+ struct knet_link *link = NULL;
35
36 if (!_is_valid_handle(knet_h)) {
37 return -1;
38--
392.25.1
40
diff --git a/meta-networking/recipes-extended/kronosnet/kronosnet_1.22.bb b/meta-networking/recipes-extended/kronosnet/kronosnet_1.22.bb
index ad0a00e78a..0b0bc29452 100644
--- a/meta-networking/recipes-extended/kronosnet/kronosnet_1.22.bb
+++ b/meta-networking/recipes-extended/kronosnet/kronosnet_1.22.bb
@@ -14,6 +14,7 @@ DEPENDS = "doxygen-native libqb-native libxml2-native bzip2 libqb libxml2 libnl
14SRCREV = "0123ecebce0ad6aba3cdb320027192e15fd71e23" 14SRCREV = "0123ecebce0ad6aba3cdb320027192e15fd71e23"
15SRC_URI = "git://github.com/kronosnet/kronosnet;protocol=https;branch=stable1 \ 15SRC_URI = "git://github.com/kronosnet/kronosnet;protocol=https;branch=stable1 \
16 file://0001-libknet-tests-Correct-include-path-for-poll.h.patch \ 16 file://0001-libknet-tests-Correct-include-path-for-poll.h.patch \
17 file://0001-links.c-Fix-build-with-gcc-12.patch \
17 " 18 "
18 19
19UPSTREAM_CHECK_URI = "https://github.com/kronosnet/kronosnet/releases" 20UPSTREAM_CHECK_URI = "https://github.com/kronosnet/kronosnet/releases"