2017-12-18 15:56:25 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2017 Intel Corporation
|
2017-08-30 14:38:34 +01:00
|
|
|
|
2018-02-16 16:53:34 +00:00
|
|
|
# override default name to drop the hyphen
|
|
|
|
name = 'testpmd'
|
|
|
|
allow_experimental_apis = true
|
2018-07-11 15:14:09 +01:00
|
|
|
cflags += '-Wno-deprecated-declarations'
|
2017-08-30 14:38:34 +01:00
|
|
|
sources = files('cmdline.c',
|
|
|
|
'cmdline_flow.c',
|
|
|
|
'cmdline_mtr.c',
|
|
|
|
'cmdline_tm.c',
|
|
|
|
'config.c',
|
|
|
|
'csumonly.c',
|
|
|
|
'flowgen.c',
|
|
|
|
'icmpecho.c',
|
|
|
|
'ieee1588fwd.c',
|
|
|
|
'iofwd.c',
|
|
|
|
'macfwd.c',
|
|
|
|
'macswap.c',
|
|
|
|
'parameters.c',
|
|
|
|
'rxonly.c',
|
|
|
|
'testpmd.c',
|
|
|
|
'txonly.c')
|
|
|
|
|
2017-11-03 17:27:32 +00:00
|
|
|
deps = ['ethdev', 'gro', 'gso', 'cmdline', 'metrics', 'meter', 'bus_pci']
|
2017-08-30 14:38:34 +01:00
|
|
|
if dpdk_conf.has('RTE_LIBRTE_PDUMP')
|
|
|
|
deps += 'pdump'
|
|
|
|
endif
|
2018-06-08 22:20:37 +01:00
|
|
|
if dpdk_conf.has('RTE_LIBRTE_BNXT_PMD')
|
|
|
|
deps += 'pmd_bnxt'
|
|
|
|
endif
|
2017-08-30 14:38:34 +01:00
|
|
|
if dpdk_conf.has('RTE_LIBRTE_I40E_PMD')
|
|
|
|
deps += 'pmd_i40e'
|
|
|
|
endif
|
|
|
|
if dpdk_conf.has('RTE_LIBRTE_IXGBE_PMD')
|
|
|
|
deps += 'pmd_ixgbe'
|
|
|
|
endif
|
|
|
|
if dpdk_conf.has('RTE_LIBRTE_SOFTNIC_PMD')
|
2018-07-06 18:21:16 +01:00
|
|
|
sources += files('softnicfwd.c')
|
2017-08-30 14:38:34 +01:00
|
|
|
deps += 'pmd_softnic'
|
|
|
|
endif
|
2018-03-14 13:26:05 +05:30
|
|
|
if dpdk_conf.has('RTE_LIBRTE_DPAA_PMD')
|
|
|
|
deps += ['bus_dpaa', 'mempool_dpaa', 'pmd_dpaa']
|
|
|
|
endif
|
2018-05-10 11:23:08 +01:00
|
|
|
if dpdk_conf.has('RTE_LIBRTE_BPF')
|
|
|
|
sources += files('bpf_cmd.c')
|
|
|
|
deps += 'bpf'
|
|
|
|
endif
|