2020-04-11 19:44:14 +05:30
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(C) 2020 Marvell International Ltd.
|
|
|
|
|
2020-04-11 19:44:18 +05:30
|
|
|
sources = files('null.c', 'log.c', 'ethdev_rx.c', 'ethdev_tx.c', 'ip4_lookup.c',
|
2020-04-11 19:44:23 +05:30
|
|
|
'ip4_rewrite.c', 'pkt_drop.c', 'ethdev_ctrl.c')
|
2020-04-11 19:44:18 +05:30
|
|
|
headers = files('rte_node_ip4_api.h', 'rte_node_eth_api.h')
|
2020-04-11 19:44:14 +05:30
|
|
|
# Strict-aliasing rules are violated by uint8_t[] to context size casts.
|
|
|
|
cflags += '-fno-strict-aliasing'
|
2020-04-11 19:44:17 +05:30
|
|
|
deps += ['graph', 'mbuf', 'lpm', 'ethdev', 'mempool', 'cryptodev']
|