From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hari Kumar Vemula Subject: [PATCH 1/4] driver/crypto: enable meson support for the aesni gcm Date: Sat, 29 Sep 2018 13:00:58 +0100 Message-ID: <1538222461-25597-2-git-send-email-hari.kumarx.vemula@intel.com> References: <1538222461-25597-1-git-send-email-hari.kumarx.vemula@intel.com> Cc: bruce.richardson@intel.com, reshma.pattan@intel.com, declan.doherty@intel.com, pablo.de.lara.guarch@intel.com, Hari Kumar Vemula To: dev@dpdk.org Return-path: Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 5D2331B1F7 for ; Sat, 29 Sep 2018 14:02:20 +0200 (CEST) In-Reply-To: <1538222461-25597-1-git-send-email-hari.kumarx.vemula@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Added new meson.build files for aesni_gcm Exported dependency library path through meson_options.txt file Signed-off-by: Hari Kumar Vemula --- drivers/crypto/aesni_gcm/meson.build | 17 +++++++++++++++++ drivers/crypto/meson.build | 2 +- meson_options.txt | 2 ++ 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 drivers/crypto/aesni_gcm/meson.build diff --git a/drivers/crypto/aesni_gcm/meson.build b/drivers/crypto/aesni_gcm/meson.build new file mode 100644 index 000000000..a84c792c5 --- /dev/null +++ b/drivers/crypto/aesni_gcm/meson.build @@ -0,0 +1,17 @@ +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2018 Intel Corporation + +path = get_option('lib_IPSec_MB') +lib_dir = path + '/lib' + +lib = cc.find_library('IPSec_MB', required: false) +if not lib.found() + build = false +else + ext_deps += lib +endif + +sources = files('aesni_gcm_pmd.c', 'aesni_gcm_pmd_ops.c') + +deps += ['bus_vdev'] + diff --git a/drivers/crypto/meson.build b/drivers/crypto/meson.build index 6ed853b7a..7e14cbba0 100644 --- a/drivers/crypto/meson.build +++ b/drivers/crypto/meson.build @@ -1,7 +1,7 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Intel Corporation -drivers = ['ccp', 'dpaa_sec', 'dpaa2_sec', 'mvsam', +drivers = ['aesni_gcm', 'ccp', 'dpaa_sec', 'dpaa2_sec', 'mvsam', 'null', 'openssl', 'qat', 'scheduler', 'virtio'] std_deps = ['cryptodev'] # cryptodev pulls in all other needed deps diff --git a/meson_options.txt b/meson_options.txt index d38ba56e2..8c75826c1 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -24,3 +24,5 @@ option('use_hpet', type: 'boolean', value: false, description: 'use HPET timer in EAL') option('tests', type: 'boolean', value: true, description: 'build unit tests') +option('lib_IPSec_MB', type: 'string', value: '', + description: 'path to the IPSec_MB library installation directory') -- 2.13.6