From 8b1a26d226368cf01b2a7f7e1a01c12315ba8be9 Mon Sep 17 00:00:00 2001 From: Panu Matilainen Date: Tue, 21 Jun 2016 11:11:48 +0300 Subject: [PATCH] pdump: fix missing dependency on libpthread Fixes: 278f945402c5 ("pdump: add new library for packet capture") Signed-off-by: Panu Matilainen --- lib/librte_pdump/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_pdump/Makefile b/lib/librte_pdump/Makefile index 14cd53ebe1..166441a20f 100644 --- a/lib/librte_pdump/Makefile +++ b/lib/librte_pdump/Makefile @@ -36,6 +36,7 @@ LIB = librte_pdump.a CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3 CFLAGS += -D_GNU_SOURCE +LDLIBS += -lpthread EXPORT_MAP := rte_pdump_version.map -- 2.20.1