diff mbox series

[meta-networking,2/2] relayd: Fix build with clang

Message ID 20231001214005.766217-2-raj.khem@gmail.com
State New
Headers show
Series [meta-networking,1/2] relayd: Update to latest tip of trunk | expand

Commit Message

Khem Raj Oct. 1, 2023, 9:40 p.m. UTC
GNU extention is now in use in 6.5 kernel headers sadly

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta-networking/recipes-connectivity/relayd/relayd_git.bb | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/meta-networking/recipes-connectivity/relayd/relayd_git.bb b/meta-networking/recipes-connectivity/relayd/relayd_git.bb
index 5105753e73..79e1743fdf 100644
--- a/meta-networking/recipes-connectivity/relayd/relayd_git.bb
+++ b/meta-networking/recipes-connectivity/relayd/relayd_git.bb
@@ -15,3 +15,5 @@  UPSTREAM_CHECK_COMMITS = "1"
 S = "${WORKDIR}/git"
 
 inherit cmake
+
+CFLAGS:append:toolchain-clang = " -Wno-error=gnu-variable-sized-type-not-at-end"