blob: a92bd2868009e5fb761e410a3df5f9c8fcd8c75a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
allow_experimental_apis = true
sources += files(
'vmxnet3_ethdev.c',
'vmxnet3_rxtx.c',
)
error_cflags = [
'-Wno-unused-parameter', '-Wno-unused-value',
'-Wno-strict-aliasing', '-Wno-format-extra-args',
]
foreach flag: error_cflags
if cc.has_argument(flag)
cflags += flag
endif
endforeach
|