X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Favf%2FMakefile;h=3f815bbc43dcef4fccf1ced0620a9ed85d56eff6;hb=e940646b20fa;hp=e172bf5cee743b1aeffcc6a346c906c9901ce601;hpb=69dd4c3d0898559ef326ab8f53beec26b62cc098;p=dpdk.git diff --git a/drivers/net/avf/Makefile b/drivers/net/avf/Makefile index e172bf5cee..3f815bbc43 100644 --- a/drivers/net/avf/Makefile +++ b/drivers/net/avf/Makefile @@ -13,6 +13,9 @@ LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring LDLIBS += -lrte_ethdev -lrte_net -lrte_kvargs -lrte_hash LDLIBS += -lrte_bus_pci +# used to dump HW descriptor for debugging +# CFLAGS += -DDEBUG_DUMP_DESC + EXPORT_MAP := rte_pmd_avf_version.map LIBABIVER := 1 @@ -44,5 +47,8 @@ SRCS-$(CONFIG_RTE_LIBRTE_AVF_PMD) += avf_common.c SRCS-$(CONFIG_RTE_LIBRTE_AVF_PMD) += avf_ethdev.c SRCS-$(CONFIG_RTE_LIBRTE_AVF_PMD) += avf_vchnl.c SRCS-$(CONFIG_RTE_LIBRTE_AVF_PMD) += avf_rxtx.c +ifeq ($(CONFIG_RTE_ARCH_X86), y) +SRCS-$(CONFIG_RTE_LIBRTE_AVF_INC_VECTOR) += avf_rxtx_vec_sse.c +endif include $(RTE_SDK)/mk/rte.lib.mk