diff options
author | Thomas Monjalon <thomas.monjalon@6wind.com> | 2016-06-24 17:13:44 +0200 |
---|---|---|
committer | Thomas Monjalon <thomas.monjalon@6wind.com> | 2016-06-29 13:33:01 +0200 |
commit | f8e9cbe2aa8258be201be58f1b2ba382b928b1ad (patch) | |
tree | df0af94f261d8ef079ae9b8e83402fea6a99242a /lib/librte_reorder | |
parent | fef3066c40d9641352d938a775e4724f76820314 (diff) | |
download | dpdk-f8e9cbe2aa8258be201be58f1b2ba382b928b1ad.zip dpdk-f8e9cbe2aa8258be201be58f1b2ba382b928b1ad.tar.gz dpdk-f8e9cbe2aa8258be201be58f1b2ba382b928b1ad.tar.xz |
mk: fix internal dependencies
Some libraries were missing their dependency on eal, mbuf, mempool,
ring and kvargs.
It is revealed by the linker option "-z defs".
Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Diffstat (limited to 'lib/librte_reorder')
-rw-r--r-- | lib/librte_reorder/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/librte_reorder/Makefile b/lib/librte_reorder/Makefile index 0c01de1..0d111aa 100644 --- a/lib/librte_reorder/Makefile +++ b/lib/librte_reorder/Makefile @@ -49,6 +49,7 @@ SYMLINK-$(CONFIG_RTE_LIBRTE_REORDER)-include := rte_reorder.h # this lib depends upon: DEPDIRS-$(CONFIG_RTE_LIBRTE_REORDER) += lib/librte_mbuf +DEPDIRS-$(CONFIG_RTE_LIBRTE_REORDER) += lib/librte_mempool DEPDIRS-$(CONFIG_RTE_LIBRTE_REORDER) += lib/librte_eal include $(RTE_SDK)/mk/rte.lib.mk |