From 9235d43d231b103285be539ebe64d37620fe9930 Mon Sep 17 00:00:00 2001 From: PiotrX Kleski Date: Mon, 12 Oct 2020 15:33:11 +0200 Subject: crypto: fixed ipsec_mb lib dependencies Type: fix This patch re-enables libIPSec_MB build for the ipsecmb crypto engine plugin. Also since DPDK meson build relies on system installed libIPSec_MB.so that may be inconsistent with VPP compiled one (system installed version vs VPP locally compiled version for example), this patch also disables all libIPSec_MB dependant PMDs from DPDK build. Also ipsec-mb version is incresed to 0.54. Signed-off-by: PiotrX Kleski Reviewed-by: Fan Zhang Change-Id: I2ff9e7cd0c35cff9fa642895301a26a5350ea94e --- build/external/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'build/external/Makefile') diff --git a/build/external/Makefile b/build/external/Makefile index b0e3cee4faa..852766f8624 100644 --- a/build/external/Makefile +++ b/build/external/Makefile @@ -33,6 +33,8 @@ else CMAKE?=cmake endif +ARCH_X86_64=$(filter x86_64,$(shell uname -m)) + include packages.mk include packages/nasm.mk include packages/ipsec-mb.mk @@ -46,10 +48,10 @@ clean: @rm -rf $(B) $(I) .PHONY: install -install: dpdk-install rdma-core-install quicly-install libbpf-install +install: $(if $(ARCH_X86_64), nasm-install ipsec-mb-install) dpdk-install rdma-core-install quicly-install libbpf-install .PHONY: config -config: dpdk-config rdma-core-config +config: $(if $(ARCH_X86_64), nasm-config ipsec-mb-config) dpdk-config rdma-core-config ############################################################################## # .deb packaging -- cgit 1.2.3-korg