[dpdk-dev] [PATCH] app: don't try to build test-crypto-perf if cryptodev disabled

Ilya Maximets i.maximets at samsung.com
Mon Apr 10 10:14:19 CEST 2017


This fixes build in following configuration:

	CONFIG_RTE_LIBRTE_CRYPTODEV=n
	CONFIG_RTE_APP_CRYPTO_PERF=y

Fixes: f8be1786b1b8 ("app/crypto-perf: introduce performance test application")

Signed-off-by: Ilya Maximets <i.maximets at samsung.com>
---
 app/Makefile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app/Makefile b/app/Makefile
index 4b3a448..c3aeebf 100644
--- a/app/Makefile
+++ b/app/Makefile
@@ -32,8 +32,11 @@
 include $(RTE_SDK)/mk/rte.vars.mk
 
 DIRS-$(CONFIG_RTE_TEST_PMD) += test-pmd
-DIRS-$(CONFIG_RTE_APP_CRYPTO_PERF) += test-crypto-perf
 DIRS-$(CONFIG_RTE_EXEC_ENV_LINUXAPP) += proc_info
 DIRS-$(CONFIG_RTE_LIBRTE_PDUMP) += pdump
 
+ifeq ($(CONFIG_RTE_LIBRTE_CRYPTODEV),y)
+DIRS-$(CONFIG_RTE_APP_CRYPTO_PERF) += test-crypto-perf
+endif
+
 include $(RTE_SDK)/mk/rte.subdir.mk
-- 
2.7.4



More information about the dev mailing list