From f3dd46b8603fcd2ed43be38fec8add255c06b026 Mon Sep 17 00:00:00 2001 From: Hemant Agrawal Date: Thu, 5 Mar 2020 17:34:12 +0530 Subject: [PATCH] drivers: add crypto as dependency for event drivers Since the introduction of crypto event adapters, event drivers have dependencies on crypto drivers. /usr/bin/ld: cannot find -lrte_pmd_dpaa_sec collect2: error: ld returned 1 exit status make[9]: *** [.../mk/rte.lib.mk:100: librte_pmd_dpaa_event.so.20.0.2] Error 1 Fixes: b0f66a68ca74 ("event/dpaa: support crypto adapter") Fixes: 3721c39f405a ("event/dpaa2: support crypto adapter") Cc: stable@dpdk.org Reported-by: David Marchand Suggested-by: Ferruh Yigit Signed-off-by: Hemant Agrawal Acked-by: David Marchand --- drivers/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/Makefile b/drivers/Makefile index 46374ca699..c70bdf9ccf 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -21,7 +21,7 @@ DEPDIRS-compress := bus mempool DIRS-$(CONFIG_RTE_LIBRTE_VHOST) += vdpa DEPDIRS-vdpa := common bus mempool DIRS-$(CONFIG_RTE_LIBRTE_EVENTDEV) += event -DEPDIRS-event := common bus mempool net +DEPDIRS-event := common bus mempool net crypto DIRS-$(CONFIG_RTE_LIBRTE_RAWDEV) += raw DEPDIRS-raw := common bus mempool net event -- 2.20.1