From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH v2 6/7] pdump: fix missing dependency on libpthread Date: Sun, 26 Jun 2016 18:42:04 +0200 Message-ID: <1466959325-9426-7-git-send-email-thomas.monjalon@6wind.com> References: <1466959325-9426-1-git-send-email-thomas.monjalon@6wind.com> Cc: dev@dpdk.org To: Panu Matilainen Return-path: Received: from mail-wm0-f43.google.com (mail-wm0-f43.google.com [74.125.82.43]) by dpdk.org (Postfix) with ESMTP id B6DFE68FC for ; Sun, 26 Jun 2016 18:42:16 +0200 (CEST) Received: by mail-wm0-f43.google.com with SMTP id r201so84873745wme.1 for ; Sun, 26 Jun 2016 09:42:16 -0700 (PDT) In-Reply-To: <1466959325-9426-1-git-send-email-thomas.monjalon@6wind.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" From: Panu Matilainen 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 14cd53e..166441a 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.7.0