X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;ds=sidebyside;f=drivers%2Fevent%2Fmeson.build;h=63d6b410b22e108f18c35fa808549e1099eab107;hb=93dfebd2c237217ab22c2acb8795c61da6e50870;hp=ed56d200622e3e42eef985c2b3f24897c49bd0a7;hpb=7abb521d2c4489bfb4fd0c2bd37e3050b06a9a8a;p=dpdk.git diff --git a/drivers/event/meson.build b/drivers/event/meson.build index ed56d20062..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 = ['dpaa', 'dpaa2', 'octeontx', 'opdl', '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'