# Copyright 2018 6WIND S.A.
# Copyright 2018 Mellanox Technologies, Ltd
+if not is_linux
+ build = false
+ reason = 'only supported on Linux'
+ subdir_done()
+endif
+build = true
+
pmd_dlopen = (get_option('ibverbs_link') == 'dlopen')
LIB_GLUE_BASE = 'librte_pmd_mlx4_glue.so'
LIB_GLUE_VERSION = '18.02.0'
'-DMLX4_GLUE_VERSION="@0@"'.format(LIB_GLUE_VERSION),
]
endif
+
libnames = [ 'mnl', 'mlx4', 'ibverbs' ]
libs = []
-build = true
foreach libname:libnames
lib = dependency('lib' + libname, required:false)
if not lib.found()
reason = 'missing dependency, "' + libname + '"'
endif
endforeach
-# Compile PMD
+
if build
allow_experimental_apis = true
ext_deps += libs
# Copyright 2018 6WIND S.A.
# Copyright 2018 Mellanox Technologies, Ltd
+if not is_linux
+ build = false
+ reason = 'only supported on Linux'
+ subdir_done()
+endif
+build = true
+
pmd_dlopen = (get_option('ibverbs_link') == 'dlopen')
LIB_GLUE_BASE = 'librte_pmd_mlx5_glue.so'
LIB_GLUE_VERSION = '19.05.0'
'-DMLX5_GLUE_VERSION="@0@"'.format(LIB_GLUE_VERSION),
]
endif
+
libnames = [ 'mlx5', 'ibverbs' ]
libs = []
-build = true
foreach libname:libnames
lib = dependency('lib' + libname, required:false)
if not lib.found()
reason = 'missing dependency, "' + libname + '"'
endif
endforeach
+
if build
allow_experimental_apis = true
ext_deps += libs