crypto/mvsam: fix shared library build
Add missing rte_kvargs library dependency. Without that
shared library build fails due to unresolved rte_kvargs_* symbols.
Fixes: 25b05a1c80
("crypto/mvsam: parse max number of sessions")
Cc: stable@dpdk.org
Signed-off-by: Tomasz Duszynski <tdu@semihalf.com>
This commit is contained in:
parent
7af56296d7
commit
404ed8013a
@ -31,7 +31,7 @@ EXPORT_MAP := rte_pmd_mvsam_version.map
|
||||
|
||||
# external library dependencies
|
||||
LDLIBS += -L$(LIBMUSDK_PATH)/lib -lmusdk
|
||||
LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool
|
||||
LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_kvargs
|
||||
LDLIBS += -lrte_cryptodev
|
||||
LDLIBS += -lrte_bus_vdev
|
||||
|
||||
|
@ -11,6 +11,7 @@
|
||||
#include <rte_bus_vdev.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_cpuflags.h>
|
||||
#include <rte_kvargs.h>
|
||||
|
||||
#include "rte_mrvl_pmd_private.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user