X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fpfe%2Fmeson.build;h=684b062090a75f85a7c50a7132eb3c3be3a2cce0;hb=90bbd7d9545f88ac11f8b89449ad7fd799adbfba;hp=799500b0a7bf88cf1f91488cb653bfb8030dea89;hpb=5253fe372e4f6141d5675b3b29b249ffdee962d3;p=dpdk.git diff --git a/drivers/net/pfe/meson.build b/drivers/net/pfe/meson.build index 799500b0a7..684b062090 100644 --- a/drivers/net/pfe/meson.build +++ b/drivers/net/pfe/meson.build @@ -1,23 +1,21 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright 2019 NXP -if host_machine.system() != 'linux' - build = false +if not is_linux + build = false + reason = 'only supported on Linux' endif -deps += ['bus_dpaa'] +deps += ['common_dpaax'] -sources = files('pfe_ethdev.c', - 'pfe_hal.c', - 'pfe_hif_lib.c', - 'pfe_hif.c') +sources = files( + 'pfe_ethdev.c', + 'pfe_hal.c', + 'pfe_hif_lib.c', + 'pfe_hif.c', +) if cc.has_argument('-Wno-pointer-arith') - cflags += '-Wno-pointer-arith' + cflags += '-Wno-pointer-arith' endif -# Driver uses below experimental APIs -# rte_mem_iova2virt -# rte_mem_virt2memseg -allow_experimental_apis = true - includes += include_directories('base')