net/kni: fix crash caused by double stop
[dpdk.git] / drivers / net / pfe / meson.build
index fa5dfad..678ce49 100644 (file)
@@ -4,6 +4,20 @@
 if host_machine.system() != 'linux'
        build = false
 endif
-deps += ['bus_dpaa']
+deps += ['common_dpaax']
 
-sources = files('pfe_ethdev.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'
+endif
+
+# Driver uses below experimental APIs
+# rte_mem_iova2virt
+# rte_mem_virt2memseg
+allow_experimental_apis = true
+
+includes += include_directories('base')