From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas.monjalon@6wind.com>
Received: from mail-wi0-f177.google.com (mail-wi0-f177.google.com
 [209.85.212.177]) by dpdk.org (Postfix) with ESMTP id 83C915A29
 for <dev@dpdk.org>; Mon, 26 Jan 2015 22:04:26 +0100 (CET)
Received: by mail-wi0-f177.google.com with SMTP id r20so935466wiv.4
 for <dev@dpdk.org>; Mon, 26 Jan 2015 13:04:26 -0800 (PST)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20130820;
 h=x-gm-message-state:from:to:cc:subject:date:message-id:organization
 :user-agent:in-reply-to:references:mime-version
 :content-transfer-encoding:content-type;
 bh=SbV+aAIaJSD+dfB8qoq9tLbmWp5x3umCwEbzCpFG5Tc=;
 b=OmT7C1o+LnKMFYDTexdi6I7v3rr3ON7Wi3w36DWjy07toMdKR+pZ6c5GtAJlTUh5ti
 DpvbPpMBntLrLxLmQ1r1jhIdEx52LDxvcLGSOTfTmp2wwwrcuxSqe2facERc1ncrphY2
 CoManuSbdbC8qNcPIF6CnoT8XHI26afr+vhJmOPiQyphJRhxmxy/ZCgYYgdjvaBSv8oG
 mypjhj+Cumhszf6HGzElLaypxj7Y/uwtV1xkj1o6/WAOByd/qJOdyJ5FXjFheHv1nzZo
 Lb3gilcHm0MDghRqC4ttX0DpHhO5J4HA6HSiubbPj9G9jZMAjJElUXbF1NBiZkks/KIs
 khEQ==
X-Gm-Message-State: ALoCoQkzYjWvJ2nUhhiqjmfQWMqG6KYD0fpqybzfKKsCiEvpHVCZwa+5SuAinKAIt8LaBBt+ZTUm
X-Received: by 10.194.104.196 with SMTP id gg4mr47068580wjb.31.1422306266332; 
 Mon, 26 Jan 2015 13:04:26 -0800 (PST)
Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136])
 by mx.google.com with ESMTPSA id lq5sm15832324wjb.35.2015.01.26.13.04.24
 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Mon, 26 Jan 2015 13:04:25 -0800 (PST)
From: Thomas Monjalon <thomas.monjalon@6wind.com>
To: Neil Horman <nhorman@tuxdriver.com>
Date: Mon, 26 Jan 2015 22:03:58 +0100
Message-ID: <2515628.0MMkDe1ao4@xps13>
Organization: 6WIND
User-Agent: KMail/4.14.3 (Linux/3.18.2-2-ARCH; KDE/4.14.3; x86_64; ; )
In-Reply-To: <1421786998-5814-1-git-send-email-nhorman@tuxdriver.com>
References: <1421786998-5814-1-git-send-email-nhorman@tuxdriver.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Cc: dev@dpdk.org, fbl@redhat.com
Subject: Re: [dpdk-dev] [PATCH] vhost: Add -lfuse into the LDFLAGS list
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches and discussions about DPDK <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Mon, 26 Jan 2015 21:04:27 -0000

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 <nhorman@tuxdriver.com>
> ---
>  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