build: disable experimental API check internally
[dpdk.git] / drivers / net / enic / Makefile
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright 2008-2017 Cisco Systems, Inc.  All rights reserved.
3 # Copyright 2007 Nuova Systems, Inc.  All rights reserved.
4
5 include $(RTE_SDK)/mk/rte.vars.mk
6
7 #
8 # library name
9 #
10 LIB = librte_pmd_enic.a
11
12 EXPORT_MAP := rte_pmd_enic_version.map
13
14 CFLAGS += -I$(SRCDIR)/base/
15 CFLAGS += -I$(SRCDIR)
16 CFLAGS += -O3
17 CFLAGS += $(WERROR_FLAGS) -Wno-strict-aliasing
18 LDLIBS += -lrte_eal -lrte_mbuf -lrte_mempool -lrte_ring
19 LDLIBS += -lrte_ethdev -lrte_net -lrte_kvargs -lrte_hash
20 LDLIBS += -lrte_bus_pci
21
22 VPATH += $(SRCDIR)/src
23
24 #
25 # all source are stored in SRCS-y
26 #
27 SRCS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += enic_ethdev.c
28 SRCS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += enic_main.c
29 SRCS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += enic_rxtx.c
30 SRCS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += enic_clsf.c
31 SRCS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += enic_res.c
32 SRCS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += enic_flow.c
33 SRCS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += enic_fm_flow.c
34 SRCS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += base/vnic_cq.c
35 SRCS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += base/vnic_wq.c
36 SRCS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += base/vnic_dev.c
37 SRCS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += base/vnic_intr.c
38 SRCS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += base/vnic_rq.c
39
40 # The current implementation assumes 64-bit pointers
41 CC_AVX2_SUPPORT=0
42 ifeq ($(CONFIG_RTE_ARCH_X86_64),y)
43 # Figure out if the compiler supports avx2. The extra check using
44 # -march=core-avx2 is necessary to support users who build for the
45 # 'default' machine (corei7 which has no avx2) and run the binary on
46 # newer CPUs that have avx2.
47 # This part is verbatim from i40e makefile.
48 ifeq ($(findstring RTE_MACHINE_CPUFLAG_AVX2,$(CFLAGS)),RTE_MACHINE_CPUFLAG_AVX2)
49         CC_AVX2_SUPPORT=1
50 else
51         CC_AVX2_SUPPORT=\
52         $(shell $(CC) -march=core-avx2 -dM -E - </dev/null 2>&1 | \
53         grep -q AVX2 && echo 1)
54         ifeq ($(CC_AVX2_SUPPORT), 1)
55                 ifeq ($(CONFIG_RTE_TOOLCHAIN_ICC),y)
56                         CFLAGS_enic_rxtx_vec_avx2.o += -march=core-avx2
57                 else
58                         CFLAGS_enic_rxtx_vec_avx2.o += -mavx2
59                 endif
60         endif
61 endif
62 endif
63
64 ifeq ($(CC_AVX2_SUPPORT), 1)
65         SRCS-$(CONFIG_RTE_LIBRTE_ENIC_PMD) += enic_rxtx_vec_avx2.c
66 endif
67
68 include $(RTE_SDK)/mk/rte.lib.mk