9731df2e75
Disable packet type parsing as l2fwd doesn't rely on packet types. Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
14 lines
388 B
Meson
14 lines
388 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
# meson file, for building this example as part of a main DPDK build.
|
|
#
|
|
# To build this example as a standalone application with an already-installed
|
|
# DPDK instance, use 'make'
|
|
|
|
# Enable experimental API flag as l2fwd uses rte_ethdev_set_ptype API
|
|
allow_experimental_apis = true
|
|
sources = files(
|
|
'main.c'
|
|
)
|