env_dpdk: update makefile to link rte_mbuf

Will need this for upcoming compress patches so remove
from its current conditional linking and link for all.

Change-Id: Iba0cf0f529a0765b6d54f7f88eb86e516c5b89ee
Signed-off-by: paul luse <paul.e.luse@intel.com>
Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/453026
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com>
This commit is contained in:
paul luse 2019-05-03 16:21:59 -04:00 committed by Jim Harris
parent 168738298b
commit f123e84129

View File

@ -54,7 +54,7 @@ else
DPDK_LIB_EXT = .so
endif
DPDK_LIB_LIST = rte_eal rte_mempool rte_ring
DPDK_LIB_LIST = rte_eal rte_mempool rte_ring rte_mbuf
# librte_mempool_ring was new added from DPDK 17.05. Link this library used for
# ring based mempool management API.
@ -102,7 +102,7 @@ endif
ifneq ($(CONFIG_VHOST_INTERNAL_LIB),y)
ifneq (, $(wildcard $(DPDK_ABS_DIR)/lib/librte_vhost.*))
DPDK_LIB_LIST += rte_vhost rte_net rte_hash rte_mbuf
DPDK_LIB_LIST += rte_vhost rte_net rte_hash
ifneq ($(DPDK_FRAMEWORK),y)
DPDK_LIB_LIST += rte_cryptodev
endif