net/igc: fix build with gcc optimization level 0
[dpdk.git] / drivers / event / meson.build
index 437d80b..c1a6990 100644 (file)
@@ -1,7 +1,15 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
-drivers = ['skeleton', 'sw']
+if is_windows
+       subdir_done()
+endif
+
+drivers = ['dlb', 'dlb2', 'dpaa', 'dpaa2', 'octeontx2', 'opdl', 'skeleton', 'sw',
+          'dsw']
+if not (toolchain == 'gcc' and cc.version().version_compare('<4.8.6') and
+       dpdk_conf.has('RTE_ARCH_ARM64'))
+       drivers += 'octeontx'
+endif
 std_deps = ['eventdev', 'kvargs']
-config_flag_fmt = 'RTE_LIBRTE_@0@_EVENTDEV_PMD'
-driver_name_fmt = 'rte_pmd_@0@_event'
+config_flag_fmt = 'RTE_LIBRTE_PMD_@0@_EVENTDEV'