f-stack/dpdk/drivers/common/dpaax/meson.build

20 lines
401 B
Meson
Raw Normal View History

2019-06-25 11:12:58 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 NXP
allow_experimental_apis = true
2020-06-18 16:55:50 +00:00
if not is_linux
build = false
reason = 'only supported on linux'
2019-06-25 11:12:58 +00:00
endif
2020-06-18 16:55:50 +00:00
sources = files('dpaax_iova_table.c', 'dpaa_of.c')
2019-06-25 11:12:58 +00:00
cflags += ['-D_GNU_SOURCE']
2020-06-18 16:55:50 +00:00
if cc.has_argument('-Wno-cast-qual')
cflags += '-Wno-cast-qual'
endif
if cc.has_argument('-Wno-pointer-arith')
cflags += '-Wno-pointer-arith'
endif