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']
|
|
|
|
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',
|
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
|