mempool/octeontx2: add NPA IRQ handler
[dpdk.git] / drivers / mempool / octeontx2 / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(C) 2019 Marvell International Ltd.
3 #
4
5 sources = files('otx2_mempool.c',
6                 'otx2_mempool_irq.c',
7                 )
8
9 extra_flags = []
10 # This integrated controller runs only on a arm64 machine, remove 32bit warnings
11 if not dpdk_conf.get('RTE_ARCH_64')
12         extra_flags += ['-Wno-int-to-pointer-cast', '-Wno-pointer-to-int-cast']
13 endif
14
15 foreach flag: extra_flags
16         if cc.has_argument(flag)
17                 cflags += flag
18         endif
19 endforeach
20
21 deps += ['eal', 'mbuf', 'kvargs', 'bus_pci', 'common_octeontx2', 'mempool']