X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fevent%2Fmeson.build;h=63d6b410b22e108f18c35fa808549e1099eab107;hb=dc26c9c21b8a6a9768219b558e08f6a780014ff0;hp=437d80bfd4b7f624a2e8951082b335e9341f3de0;hpb=6c9457c27954f16d99f3798711eb253fbaf05fa3;p=dpdk.git diff --git a/drivers/event/meson.build b/drivers/event/meson.build index 437d80bfd4..63d6b410b2 100644 --- a/drivers/event/meson.build +++ b/drivers/event/meson.build @@ -1,7 +1,23 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2017 Intel Corporation -drivers = ['skeleton', 'sw'] +if is_windows + subdir_done() +endif + +drivers = [ + 'cnxk', + 'dlb2', + 'dpaa', + 'dpaa2', + 'dsw', + 'octeontx2', + 'opdl', + 'skeleton', + 'sw', +] +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'