From mboxrd@z Thu Jan 1 00:00:00 1970 From: Luca Boccassi Subject: Re: [PATCH v3 1/3] dfs:add FUSE based filesystem for DPDK Date: Mon, 17 Dec 2018 20:02:32 +0100 Message-ID: <1545073352.7111.23.camel@debian.org> References: <20181216174604.91445-1-keith.wiles@intel.com> <1544998977.4766.10.camel@debian.org> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Cc: "dev@dpdk.org" To: "Wiles, Keith" Return-path: Received: from mail-wm1-f66.google.com (mail-wm1-f66.google.com [209.85.128.66]) by dpdk.org (Postfix) with ESMTP id D854A1B925 for ; Mon, 17 Dec 2018 20:02:44 +0100 (CET) Received: by mail-wm1-f66.google.com with SMTP id p6so37453wmc.1 for ; Mon, 17 Dec 2018 11:02:44 -0800 (PST) In-Reply-To: List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Mon, 2018-12-17 at 16:26 +0000, Wiles, Keith wrote: > > On Dec 16, 2018, at 4:22 PM, Luca Boccassi > > wrote: > >=20 > > On Sun, 2018-12-16 at 11:46 -0600, Keith Wiles wrote: > > > --- /dev/null > > > +++ b/lib/librte_dfs/meson.build > > > @@ -0,0 +1,47 @@ > > > +# SPDX-License-Identifier: BSD-3-Clause > > > +# Copyright(c) 2018 Intel Corporation > > > + > > > +version =3D 1 > >=20 > > You can leave the version out if it's 1, it's the default >=20 > I understand that maybe the default, but it should not hurt anything > and then the developer can update it as needed, right? Yes it does not hurt, I don't mind much either way, just wanted to mention there's a default in case you prefer to reduce duplication. > > > --- /dev/null > > > +++ b/lib/librte_dfs/Makefile > > > @@ -0,0 +1,51 @@ > > > +# SPDX-License-Identifier: BSD-3-Clause > > > +# Copyright(c) 2018 Intel Corporation > > > + > > > +include $(RTE_SDK)/mk/rte.vars.mk > > > + > > > +# library name > > > +LIB =3D librte_dfs.a > > > + > > > +CFLAGS +=3D $(WERROR_FLAGS) -I$(SRCDIR) -O3 > > > +CFLAGS +=3D -DALLOW_EXPERIMENTAL_API -D_FILE_OFFSET_BITS=3D64 > > > +CFLAGS +=3D -D_GNU_SOURCE > > > +CFLAGS +=3D -I$(RTE_SDK)/drivers/bus/pci > > > +LDLIBS +=3D -lrte_eal -lrte_mempool -lrte_hash -lrte_ethdev > > > -lrte_utils > > > +LDLIBS +=3D -lrte_ring -lrte_timer -lrte_rawdev -lrte_cryptodev > > > +LDLIBS +=3D -lpthread > > > +LDLIBS +=3D $(shell pkg-config --libs-only-l fuse3) > > > +LDLIBS +=3D $(shell pkg-config --libs-only-l jansson) > >=20 > > Why --libs-only-l ? If the libraries are not installed in the > > canonical > > path (eg: build-root-without-chroot) it will break as it won't use > > the > > -L >=20 > OK, will look at this one and see if I had a reason to use libs-only- > l. >=20 > >=20 > > --=C2=A0 > > Kind regards, > > Luca Boccassi >=20 > Regards, > Keith >=20 --=20 Kind regards, Luca Boccassi