2019-06-25 11:12:58 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2018 Luca Boccassi <bluca@debian.org>
|
|
|
|
|
|
|
|
sources += files(
|
2022-09-06 04:00:10 +00:00
|
|
|
'vmxnet3_ethdev.c',
|
|
|
|
'vmxnet3_rxtx.c',
|
2019-06-25 11:12:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
error_cflags = [
|
2022-09-06 04:00:10 +00:00
|
|
|
'-Wno-unused-parameter',
|
|
|
|
'-Wno-unused-value',
|
|
|
|
'-Wno-strict-aliasing',
|
|
|
|
'-Wno-format-extra-args',
|
2019-06-25 11:12:58 +00:00
|
|
|
]
|
|
|
|
foreach flag: error_cflags
|
|
|
|
if cc.has_argument(flag)
|
|
|
|
cflags += flag
|
|
|
|
endif
|
|
|
|
endforeach
|