/
phprus
/
github_dpdk
Обзор
Документация
Войти
/
phprus
/
github_dpdk
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
app/graph/meson.build
37 строк
863 B
Nitin Saxena
app/graph: add custom feature nodes for IPv4 output arc
10 июн 2025, 19:22
10 июн 2025, 19:22
08cea83
Код
Авторство
О чём код?
# SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2023 Marvell. # override default name to drop the hyphen name = 'graph' build = cc.has_header('sys/epoll.h') if not build reason = 'only supported on Linux' subdir_done() endif deps += ['graph', 'eal', 'lpm', 'ethdev', 'node', 'cmdline', 'net'] sources = files( 'cli.c', 'conn.c', 'ethdev_rx.c', 'ethdev.c', 'feature.c', 'graph.c', 'ip4_route.c', 'ip4_output_hook.c', 'ip6_route.c', 'l2fwd.c', 'l3fwd.c', 'main.c', 'mempool.c', 'neigh.c', 'utils.c', ) cmd_h = custom_target('commands_hdr', output: 'commands.h', input: files('commands.list'), capture: true, command: [cmdline_gen_cmd, '--context-name=modules_ctx', '@INPUT@'] ) sources += cmd_h