aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 7 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 946a8583..f78549f4 100644
--- a/Makefile
+++ b/Makefile
@@ -427,22 +427,24 @@ define banner
@echo " "
endef
-verify: install-dep $(BR)/.bootstrap.ok dpdk-install-dev
+verify: install-dep $(BR)/.bootstrap.ok
+ make -C dpdk install-$(PKG) DPDK_CRYPTO_SW_PMD=y
$(call banner,"Building for PLATFORM=vpp using gcc")
- @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
+ @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages \
+ vpp_uses_dpdk_cryptodev_sw=yes
ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04)
$(call banner,"Installing dependencies")
@sudo -E apt-get update
@sudo -E apt-get $(CONFIRM) $(FORCE) install clang
$(call banner,"Building for PLATFORM=vpp using clang")
- @make -C build-root CC=clang PLATFORM=vpp TAG=vpp_clang wipe-all install-packages
+ @make -C build-root CC=clang PLATFORM=vpp TAG=vpp_clang \
+ wipe-all install-packages vpp_uses_dpdk_cryptodev_sw=yes
endif
$(call banner,"Building sample-plugin")
@make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install
$(call banner,"Building $(PKG) packages")
- @make pkg-$(PKG)
+ @make pkg-$(PKG) vpp_uses_dpdk_cryptodev_sw=yes
ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04)
@make test
endif
-