From patchwork Wed Sep 25 14:55:29 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 59761 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A2F481BF4F; Wed, 25 Sep 2019 16:55:41 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 20B131BF33; Wed, 25 Sep 2019 16:55:38 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 25 Sep 2019 07:55:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,548,1559545200"; d="scan'208";a="390235751" Received: from silpixa00399126.ir.intel.com (HELO silpixa00399126.ger.corp.intel.com) ([10.237.223.2]) by fmsmga006.fm.intel.com with ESMTP; 25 Sep 2019 07:55:37 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: bluca@debian.org, thomas@monjalon.net, mb@smartsharesystems.com, techboard@dpdk.org, Bruce Richardson Date: Wed, 25 Sep 2019 15:55:29 +0100 Message-Id: <20190925145531.52705-2-bruce.richardson@intel.com> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190925145531.52705-1-bruce.richardson@intel.com> References: <20190925145531.52705-1-bruce.richardson@intel.com> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH 1/3] build: align variable names between drivers and libs 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The variable names in the library and drivers meson.build files are slighty different with "static_deps" in one and "static_objs" in the other. Rename to use "static_deps" in both for consistency. Signed-off-by: Bruce Richardson --- drivers/meson.build | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/drivers/meson.build b/drivers/meson.build index 2ed2e9541..b54601697 100644 --- a/drivers/meson.build +++ b/drivers/meson.build @@ -79,18 +79,18 @@ foreach class:dpdk_driver_classes endif # get dependency objs from strings - shared_objs = [] - static_objs = [] + shared_deps = [] + static_deps = [] foreach d:deps if not is_variable('shared_rte_' + d) error('Missing dependency ' + d + ' for driver ' + lib_name) endif - shared_objs += [get_variable('shared_rte_' + d)] - static_objs += [get_variable('static_rte_' + d)] + shared_deps += [get_variable('shared_rte_' + d)] + static_deps += [get_variable('static_rte_' + d)] endforeach - shared_objs += ext_deps - static_objs += ext_deps + shared_deps += ext_deps + static_deps += ext_deps dpdk_extra_ldflags += pkgconfig_extra_libs # generate pmdinfo sources by building a temporary @@ -101,7 +101,7 @@ foreach class:dpdk_driver_classes tmp_lib = static_library('tmp_' + lib_name, sources, include_directories: includes, - dependencies: static_objs, + dependencies: static_deps, c_args: cflags) objs += tmp_lib.extract_all_objects() sources = custom_target(out_filename, @@ -123,7 +123,7 @@ foreach class:dpdk_driver_classes sources, objects: objs, include_directories: includes, - dependencies: static_objs, + dependencies: static_deps, c_args: cflags, install: true) @@ -135,7 +135,7 @@ foreach class:dpdk_driver_classes sources, objects: objs, include_directories: includes, - dependencies: shared_objs, + dependencies: shared_deps, c_args: cflags, link_args: '-Wl,--version-script=' + version_map, link_depends: version_map, @@ -148,10 +148,10 @@ foreach class:dpdk_driver_classes # testpmd or other built-in apps can find it if necessary shared_dep = declare_dependency(link_with: shared_lib, include_directories: includes, - dependencies: shared_objs) + dependencies: shared_deps) static_dep = declare_dependency(link_with: static_lib, include_directories: includes, - dependencies: static_objs) + dependencies: static_deps) dpdk_drivers += static_lib