From: Tomasz Duszynski Date: Wed, 21 Mar 2018 09:44:38 +0000 (+0100) Subject: crypto/mrvl: add missing library dependencies X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=fd54d6514ea2953b08ca88bd0b9b10f95c7a5131;p=dpdk.git crypto/mrvl: add missing library dependencies While trying to do a shared build one will get linkage error since a couple of library dependencies are missing from a makefile. At some point there was a batch update of all PMDs but mrvl crypto was missed back then. Necessary makefile changes were introduced in commit cbc12b0a96f5 ("mk: do not generate LDLIBS from directory dependencies") Signed-off-by: Tomasz Duszynski --- diff --git a/drivers/crypto/mrvl/Makefile b/drivers/crypto/mrvl/Makefile index d37e28d792..ff124333d2 100644 --- a/drivers/crypto/mrvl/Makefile +++ b/drivers/crypto/mrvl/Makefile @@ -31,6 +31,8 @@ EXPORT_MAP := rte_pmd_mrvl_version.map # external library dependencies LDLIBS += -L$(LIBMUSDK_PATH)/lib -lmusdk +LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool +LDLIBS += -lrte_cryptodev LDLIBS += -lrte_bus_vdev # library source files