From patchwork Wed Jan 31 17:42:45 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 34790 X-Patchwork-Delegate: bruce.richardson@intel.com 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 4B8681B7FC; Wed, 31 Jan 2018 18:43:11 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 459CB1B7FE for ; Wed, 31 Jan 2018 18:43:09 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 31 Jan 2018 09:43:08 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,441,1511856000"; d="scan'208";a="200165631" Received: from silpixa00399126.ir.intel.com (HELO silpixa00399126.ger.corp.intel.com) ([10.237.223.223]) by fmsmga005.fm.intel.com with ESMTP; 31 Jan 2018 09:43:07 -0800 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Date: Wed, 31 Jan 2018 17:42:45 +0000 Message-Id: <20180131174249.257933-3-bruce.richardson@intel.com> X-Mailer: git-send-email 2.14.3 In-Reply-To: <20180131174249.257933-1-bruce.richardson@intel.com> References: <20180131174249.257933-1-bruce.richardson@intel.com> Subject: [dpdk-dev] [PATCH 2/6] build: add dependency on execinfo for BSD meson 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The binaries and apps in DPDK all need to be linked against the execinfo library on FreeBSD so add this as a dependency in cases where it is found. It's available by default on BSD, but not at all on Linux Signed-off-by: Bruce Richardson --- app/test-eventdev/meson.build | 1 + app/test-pmd/meson.build | 1 + test/test/meson.build | 1 + 3 files changed, 3 insertions(+) diff --git a/app/test-eventdev/meson.build b/app/test-eventdev/meson.build index 7fb3a280a..7c373c87b 100644 --- a/app/test-eventdev/meson.build +++ b/app/test-eventdev/meson.build @@ -13,6 +13,7 @@ sources = files('evt_main.c', 'test_perf_queue.c') dep_objs = [get_variable(get_option('default_library') + '_rte_eventdev')] +dep_objs += cc.find_library('execinfo', required: false) # BSD only link_libs = [] if get_option('default_library') == 'static' diff --git a/app/test-pmd/meson.build b/app/test-pmd/meson.build index 9964dae75..7ed74db2b 100644 --- a/app/test-pmd/meson.build +++ b/app/test-pmd/meson.build @@ -37,6 +37,7 @@ dep_objs = [] foreach d:deps dep_objs += get_variable(get_option('default_library') + '_rte_' + d) endforeach +dep_objs += cc.find_library('execinfo', required: false) # for BSD only link_libs = [] if get_option('default_library') == 'static' diff --git a/test/test/meson.build b/test/test/meson.build index d5b768b9d..2457a2adb 100644 --- a/test/test/meson.build +++ b/test/test/meson.build @@ -234,6 +234,7 @@ foreach d:test_deps def_lib = get_option('default_library') test_dep_objs += get_variable(def_lib + '_rte_' + d) endforeach +test_dep_objs += cc.find_library('execinfo', required: false) link_libs = [] if get_option('default_library') == 'static'