examples: fix dependencies on hash library
The multi_process example do not need rte_hash. But these examples cannot compile if rte_hash is not available: - ipsec-secgw (was already protected - no change) - ipv4_multicast - l3fwd-power - l3fwd-vf - tep_termination - ip_pipeline The ip_pipeline example is not disabled because its dependencies are handled with #ifdef. It may require a separate fix. Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
This commit is contained in:
parent
d7a4bb1549
commit
c694693331
@ -54,7 +54,7 @@ endif
|
||||
ifeq ($(CONFIG_RTE_LIBRTE_ACL)$(CONFIG_RTE_LIBRTE_HASH)$(CONFIG_RTE_LIBRTE_LPM),yyy)
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_CRYPTODEV) += ipsec-secgw
|
||||
endif
|
||||
DIRS-y += ipv4_multicast
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_HASH) += ipv4_multicast
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_KNI) += kni
|
||||
DIRS-y += l2fwd
|
||||
ifneq ($(PQOS_INSTALL_PATH),)
|
||||
@ -65,9 +65,11 @@ DIRS-$(CONFIG_RTE_LIBRTE_IVSHMEM) += l2fwd-ivshmem
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_JOBSTATS) += l2fwd-jobstats
|
||||
DIRS-y += l2fwd-keepalive
|
||||
DIRS-y += l2fwd-keepalive/ka-agent
|
||||
ifeq ($(CONFIG_RTE_LIBRTE_HASH),y)
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_LPM) += l3fwd
|
||||
endif
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_ACL) += l3fwd-acl
|
||||
ifeq ($(CONFIG_RTE_LIBRTE_LPM),y)
|
||||
ifeq ($(CONFIG_RTE_LIBRTE_LPM)$(CONFIG_RTE_LIBRTE_HASH),yy)
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_POWER) += l3fwd-power
|
||||
DIRS-y += l3fwd-vf
|
||||
endif
|
||||
@ -82,7 +84,9 @@ DIRS-$(CONFIG_RTE_LIBRTE_SCHED) += qos_sched
|
||||
DIRS-y += quota_watermark
|
||||
DIRS-$(CONFIG_RTE_ETHDEV_RXTX_CALLBACKS) += rxtx_callbacks
|
||||
DIRS-y += skeleton
|
||||
ifeq ($(CONFIG_RTE_LIBRTE_HASH),y)
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_VHOST) += tep_termination
|
||||
endif
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_TIMER) += timer
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_VHOST) += vhost
|
||||
DIRS-$(CONFIG_RTE_LIBRTE_XEN_DOM0) += vhost_xen
|
||||
|
@ -60,7 +60,6 @@
|
||||
#include <rte_ether.h>
|
||||
#include <rte_ethdev.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_fbk_hash.h>
|
||||
#include <rte_string_fns.h>
|
||||
#include <rte_cycles.h>
|
||||
|
||||
|
@ -65,7 +65,6 @@
|
||||
#include <rte_ethdev.h>
|
||||
#include <rte_byteorder.h>
|
||||
#include <rte_malloc.h>
|
||||
#include <rte_fbk_hash.h>
|
||||
#include <rte_string_fns.h>
|
||||
|
||||
#include "common.h"
|
||||
|
Loading…
Reference in New Issue
Block a user