From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH] vhost: Add -lfuse into the LDFLAGS list Date: Mon, 26 Jan 2015 22:03:58 +0100 Message-ID: <2515628.0MMkDe1ao4@xps13> References: <1421786998-5814-1-git-send-email-nhorman@tuxdriver.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev-VfR2kkLFssw@public.gmane.org, fbl-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org To: Neil Horman Return-path: In-Reply-To: <1421786998-5814-1-git-send-email-nhorman-2XuSBdqkA4R54TAoqtyWWQ@public.gmane.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" 2015-01-20 15:49, Neil Horman: > the vhost library relies on libfuse, and thats included when we do a normal > shared object build, but when we specify combined libs, its gets left out. Add > it back in > > Signed-off-by: Neil Horman > --- > mk/rte.app.mk | 4 ++++ > 1 file changed, 4 insertions(+) > > --- a/mk/rte.app.mk > +++ b/mk/rte.app.mk > +ifeq ($(CONFIG_RTE_LIBRTE_VHOST),y) > +LDLIBS += -lfuse > +endif There was already a line for -lfuse below in the file. You are adding it in a place where it applies to every cases, so you should remove the old special case. Thanks -- Thomas