From patchwork Wed Feb 11 08:53:05 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Panu Matilainen X-Patchwork-Id: 3141 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 3BE715A74; Wed, 11 Feb 2015 09:53:12 +0100 (CET) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id A7866234 for ; Wed, 11 Feb 2015 09:53:10 +0100 (CET) Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t1B8r9gY003299 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Wed, 11 Feb 2015 03:53:09 -0500 Received: from localhost.localdomain.com (vpn1-7-166.ams2.redhat.com [10.36.7.166]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t1B8r8Qp026605 for ; Wed, 11 Feb 2015 03:53:09 -0500 From: Panu Matilainen To: dev@dpdk.org Date: Wed, 11 Feb 2015 10:53:05 +0200 Message-Id: <6ca22ee1257e34ee2b89f2fb354d6c382b8f3e29.1423644785.git.pmatilai@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 Subject: [dpdk-dev] [PATCH] mk: fix missing link of librte_vhost in shared, non-combined config X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list 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" When building shared, non-combined library, librte_vhost does not get linked in, causing among other things vhost example to fail building to do undefined symbols on linkage. Signed-off-by: Panu Matilainen --- mk/rte.app.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mk/rte.app.mk b/mk/rte.app.mk index 95dbb0b..55d989e 100644 --- a/mk/rte.app.mk +++ b/mk/rte.app.mk @@ -125,6 +125,10 @@ LDLIBS += -lm LDLIBS += -lrt endif +ifeq ($(CONFIG_RTE_LIBRTE_VHOST), y) +LDLIBS += -lrte_vhost +endif + endif # ! CONFIG_RTE_BUILD_COMBINE_LIBS ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y)