From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f171.google.com (mail-wr0-f171.google.com [209.85.128.171]) by dpdk.org (Postfix) with ESMTP id 57F5E1AEF5 for ; Wed, 20 Sep 2017 12:33:46 +0200 (CEST) Received: by mail-wr0-f171.google.com with SMTP id m18so1769305wrm.2 for ; Wed, 20 Sep 2017 03:33:46 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:user-agent:in-reply-to:references :mime-version:content-transfer-encoding:subject:to:cc:from :message-id; bh=JV7phAmE8oKn8gEtCU1o6sTZ+YQoMK/rVp8DnXrFX54=; b=RWjUB0GBKlJ6lWn1/rdr1sC+JQsvKOsYIfs49ytz8l8oNSdt7QdsAl3tnSrZxKq2JS BUy4aJjkQpgBw48B6bTZp1YI6QZaNs+D47v1AX+TqzS7Qp/9I/sFHH/kX+Yoi0u9CVGS TqpiKuDP8vWhhEBAu3bpfv/RqqusiWbo8jcGJzdVET9Njl6at2BG7KdviorqsRYkP721 I92f7BBI/bXUXxmq/PDdmbU2In6cXK5mYdL5922rel+6KrdeH9qnFtOW2dANdBxUE6lO Nph5I27mR+OgJqlQ9tOL+zEzbJvDku3PBk16Ic9PBMzwUFaGlDNV44iDttu+m4S5aJem ++KA== X-Gm-Message-State: AHPjjUjKuYB8upUVEzt/mHFFxtOz+PqU5zIlWTSBm37xaAh6J1e3T2vs VrgN+QlIgcbjlcoa193XBtQPkg== X-Google-Smtp-Source: AOwi7QD4J6ZQu5o+HYh8wXT9ptElk7i0w2RZEK2opTuUQXNo+A0rZcelFPPKt8BIBSvFq8fPGXCTig== X-Received: by 10.223.136.168 with SMTP id f37mr4088153wrf.191.1505903625766; Wed, 20 Sep 2017 03:33:45 -0700 (PDT) Received: from [10.44.138.244] ([5.90.214.180]) by smtp.gmail.com with ESMTPSA id a207sm1302066wmd.25.2017.09.20.03.33.44 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 20 Sep 2017 03:33:45 -0700 (PDT) Date: Wed, 20 Sep 2017 12:33:41 +0200 User-Agent: K-9 Mail for Android In-Reply-To: <20170920102414.GA5152@bricha3-MOBL3.ger.corp.intel.com> References: <20170912103809.140473-1-bruce.richardson@intel.com> <20170913141222.253688-1-bruce.richardson@intel.com> <20170913141222.253688-2-bruce.richardson@intel.com> <20170920102414.GA5152@bricha3-MOBL3.ger.corp.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable To: Bruce Richardson CC: dev@dpdk.org, nhorman@tuxdriver.com, luca.boccassi@gmail.com, harry.van.haaren@intel.com, keith.wiles@intel.com From: "Timothy M. Redaelli" Message-ID: Subject: Re: [dpdk-dev] [PATCH v3 01/17] build: add initial infrastructure for meson & ninja builds X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Sep 2017 10:33:46 -0000 On September 20, 2017 12:24:15 PM GMT+02:00, Bruce Richardson wrote: >On Wed, Sep 20, 2017 at 12:10:19PM +0200, Timothy M=2E Redaelli wrote: >> On 09/13/2017 04:12 PM, Bruce Richardson wrote: >> [=2E=2E=2E] >> > + >> > +# for static libs, treat the drivers as regular libraries, >otherwise >> > +# for shared libs, put them in a driver folder >> > +if get_option('default_library') =3D=3D 'static' >> > + driver_install_path =3D get_option('libdir') >> > +else >> > + driver_install_path =3D join_paths(get_option('datadir'), >'dpdk/drivers') >> > +endif >>=20 >> This is against hier, since: >> "This directory contains subdirectories with specific application >data, >> that can be shared among different architectures of the same OS=2E" >> (from man 7 hier) >>=20 >> Please consider to use a subdirectory of libdir like the actual dpdk >> instead=2E > >Sure=2E Using "$libdir/dpdk/drivers" work well, or is there a better >choice? Sounds good, thank you