From 7178a181317a24c2b8e626bbf543dad35f0b698d Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Mon, 3 May 2021 11:04:02 -0700 Subject: dibbler: Add libpthread to linker flags Fixed build issue lowlevel-linux-link-state.c:(.text+0x450): undefined reference to `pthread_create' clang-12: error: linker command failed with exit code 1 (use -v to see invocation) Signed-off-by: Khem Raj --- meta-networking/recipes-connectivity/dibbler/dibbler_git.bb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'meta-networking') diff --git a/meta-networking/recipes-connectivity/dibbler/dibbler_git.bb b/meta-networking/recipes-connectivity/dibbler/dibbler_git.bb index c2f4827161..b19364e1e2 100644 --- a/meta-networking/recipes-connectivity/dibbler/dibbler_git.bb +++ b/meta-networking/recipes-connectivity/dibbler/dibbler_git.bb @@ -29,6 +29,8 @@ inherit autotools DEPENDS += "flex-native" +LDFLAGS += "-pthread" + PACKAGES =+ "${PN}-requestor ${PN}-client ${PN}-relay ${PN}-server" FILES_${PN}-client = "${sbindir}/${PN}-client" -- cgit 1.2.3-korg