f-stack/dpdk/drivers/vdpa/mlx5/meson.build

43 lines
985 B
Meson
Raw Normal View History

2021-02-05 08:48:47 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2019 Mellanox Technologies, Ltd
if not is_linux
2022-09-06 04:00:10 +00:00
build = false
reason = 'only supported on Linux'
subdir_done()
2021-02-05 08:48:47 +00:00
endif
deps += ['hash', 'common_mlx5', 'vhost', 'pci', 'eal', 'sched']
2023-09-13 12:21:49 +00:00
if not dpdk_conf.has('RTE_COMMON_MLX5')
# avoid referencing undefined variables from common/mlx5
subdir_done()
endif
2021-02-05 08:48:47 +00:00
sources = files(
2022-09-06 04:00:10 +00:00
'mlx5_vdpa.c',
'mlx5_vdpa_mem.c',
'mlx5_vdpa_event.c',
'mlx5_vdpa_virtq.c',
'mlx5_vdpa_steer.c',
'mlx5_vdpa_lm.c',
2023-09-13 12:21:49 +00:00
'mlx5_vdpa_cthread.c',
2021-02-05 08:48:47 +00:00
)
cflags_options = [
2022-09-06 04:00:10 +00:00
'-std=c11',
'-Wno-strict-prototypes',
'-D_BSD_SOURCE',
'-D_DEFAULT_SOURCE',
'-D_XOPEN_SOURCE=600',
2021-02-05 08:48:47 +00:00
]
foreach option:cflags_options
2022-09-06 04:00:10 +00:00
if cc.has_argument(option)
cflags += option
endif
2021-02-05 08:48:47 +00:00
endforeach
if get_option('buildtype').contains('debug')
2022-09-06 04:00:10 +00:00
cflags += [ '-pedantic', '-DPEDANTIC' ]
2021-02-05 08:48:47 +00:00
else
2022-09-06 04:00:10 +00:00
cflags += [ '-UPEDANTIC' ]
2021-02-05 08:48:47 +00:00
endif