net/hns3: list supported ptypes for advanced Rx descriptor
[dpdk.git] / drivers / net / octeontx2 / meson.build
index 599ade6..779a75b 100644 (file)
@@ -2,6 +2,18 @@
 # Copyright(C) 2019 Marvell International Ltd.
 #
 
+if is_windows
+       build = false
+       reason = 'not supported on Windows'
+       subdir_done()
+endif
+
+if not dpdk_conf.get('RTE_ARCH_64')
+       build = false
+       reason = 'only supported on 64-bit'
+       subdir_done()
+endif
+
 sources = files('otx2_rx.c',
                'otx2_tx.c',
                'otx2_tm.c',
@@ -16,6 +28,7 @@ sources = files('otx2_rx.c',
                'otx2_lookup.c',
                'otx2_ethdev.c',
                'otx2_flow_ctrl.c',
+               'otx2_flow_dump.c',
                'otx2_flow_parse.c',
                'otx2_flow_utils.c',
                'otx2_ethdev_irq.c',
@@ -29,11 +42,6 @@ deps += ['bus_pci', 'cryptodev', 'eventdev', 'security']
 deps += ['common_octeontx2', 'mempool_octeontx2']
 
 extra_flags = ['-flax-vector-conversions']
-# This integrated controller runs only on a arm64 machine, remove 32bit warnings
-if not dpdk_conf.get('RTE_ARCH_64')
-       extra_flags += ['-Wno-int-to-pointer-cast', '-Wno-pointer-to-int-cast']
-endif
-
 foreach flag: extra_flags
        if cc.has_argument(flag)
                cflags += flag