f-stack/dpdk/drivers/net/mlx4/meson.build

140 lines
3.8 KiB
Meson
Raw Normal View History

2019-06-25 11:12:58 +00:00
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2018 6WIND S.A.
# Copyright 2018 Mellanox Technologies, Ltd
2020-06-18 16:55:50 +00:00
if not is_linux
build = false
reason = 'only supported on Linux'
subdir_done()
endif
build = true
static_ibverbs = (get_option('ibverbs_link') == 'static')
dlopen_ibverbs = (get_option('ibverbs_link') == 'dlopen')
2019-06-25 11:12:58 +00:00
LIB_GLUE_BASE = 'librte_pmd_mlx4_glue.so'
LIB_GLUE_VERSION = '18.02.0'
LIB_GLUE = LIB_GLUE_BASE + '.' + LIB_GLUE_VERSION
2020-06-18 16:55:50 +00:00
if dlopen_ibverbs
dpdk_conf.set('RTE_IBVERBS_LINK_DLOPEN', 1)
2019-06-25 11:12:58 +00:00
cflags += [
'-DMLX4_GLUE="@0@"'.format(LIB_GLUE),
'-DMLX4_GLUE_VERSION="@0@"'.format(LIB_GLUE_VERSION),
]
endif
2020-06-18 16:55:50 +00:00
libnames = [ 'mlx4', 'ibverbs' ]
libs = []
foreach libname:libnames
lib = dependency('lib' + libname, static:static_ibverbs, required:false)
if not lib.found() and not static_ibverbs
lib = cc.find_library(libname, required:false)
endif
if lib.found()
libs += lib
if not static_ibverbs and not dlopen_ibverbs
ext_deps += lib
endif
else
2019-06-25 11:12:58 +00:00
build = false
2020-06-18 16:55:50 +00:00
reason = 'missing dependency, "' + libname + '"'
2019-06-25 11:12:58 +00:00
endif
endforeach
2020-06-18 16:55:50 +00:00
2019-06-25 11:12:58 +00:00
if build
2020-06-18 16:55:50 +00:00
if static_ibverbs or dlopen_ibverbs
# Build without adding shared libs to Requires.private
ibv_cflags = run_command(pkgconf, '--cflags', 'libibverbs').stdout()
ext_deps += declare_dependency(compile_args: ibv_cflags.split())
endif
if static_ibverbs
# Add static deps ldflags to internal apps and Libs.private
ibv_ldflags = run_command(ldflags_ibverbs_static, check:true).stdout()
ext_deps += declare_dependency(link_args:ibv_ldflags.split())
endif
2019-06-25 11:12:58 +00:00
allow_experimental_apis = true
sources = files(
'mlx4.c',
'mlx4_ethdev.c',
'mlx4_flow.c',
'mlx4_intr.c',
2020-06-18 16:55:50 +00:00
'mlx4_mp.c',
2019-06-25 11:12:58 +00:00
'mlx4_mr.c',
'mlx4_rxq.c',
'mlx4_rxtx.c',
'mlx4_txq.c',
'mlx4_utils.c',
)
2020-06-18 16:55:50 +00:00
if not dlopen_ibverbs
2019-06-25 11:12:58 +00:00
sources += files('mlx4_glue.c')
endif
cflags_options = [
'-std=c11',
'-Wno-strict-prototypes',
'-D_BSD_SOURCE',
'-D_DEFAULT_SOURCE',
'-D_XOPEN_SOURCE=600'
]
foreach option:cflags_options
if cc.has_argument(option)
cflags += option
endif
endforeach
if get_option('buildtype').contains('debug')
cflags += [ '-pedantic', '-UNDEBUG', '-DPEDANTIC' ]
else
cflags += [ '-DNDEBUG', '-UPEDANTIC' ]
endif
# To maintain the compatibility with the make build system
# mlx4_autoconf.h file is still generated.
# input array for meson member search:
# [ "MACRO to define if found", "header for the search",
2020-06-18 16:55:50 +00:00
# "symbol to search", "struct member to search" ]
2019-06-25 11:12:58 +00:00
#
has_member_args = [
[ 'HAVE_IBV_MLX4_WQE_LSO_SEG', 'infiniband/mlx4dv.h',
'struct mlx4_wqe_lso_seg', 'mss_hdr_size' ],
]
2020-06-18 16:55:50 +00:00
# input array for meson symbol search:
# [ "MACRO to define if found", "header for the search",
# "symbol to search" ]
has_sym_args = [
[ 'HAVE_IBV_MLX4_BUF_ALLOCATORS', 'infiniband/mlx4dv.h',
'MLX4DV_SET_CTX_ATTR_BUF_ALLOCATORS' ],
[ 'HAVE_IBV_MLX4_UAR_MMAP_OFFSET', 'infiniband/mlx4dv.h',
'MLX4DV_QP_MASK_UAR_MMAP_OFFSET' ],
]
2019-06-25 11:12:58 +00:00
config = configuration_data()
2020-06-18 16:55:50 +00:00
foreach arg:has_sym_args
config.set(arg[0], cc.has_header_symbol(arg[1], arg[2],
dependencies: libs))
endforeach
2019-06-25 11:12:58 +00:00
foreach arg:has_member_args
2020-06-18 16:55:50 +00:00
file_prefix = '#include <' + arg[1] + '>'
2019-06-25 11:12:58 +00:00
config.set(arg[0], cc.has_member(arg[2], arg[3],
2020-06-18 16:55:50 +00:00
prefix: file_prefix, dependencies: libs))
2019-06-25 11:12:58 +00:00
endforeach
configure_file(output : 'mlx4_autoconf.h', configuration : config)
endif
# Build Glue Library
2020-06-18 16:55:50 +00:00
if dlopen_ibverbs and build
2019-06-25 11:12:58 +00:00
dlopen_name = 'mlx4_glue'
dlopen_lib_name = driver_name_fmt.format(dlopen_name)
dlopen_so_version = LIB_GLUE_VERSION
dlopen_sources = files('mlx4_glue.c')
dlopen_install_dir = [ eal_pmd_path + '-glue' ]
shared_lib = shared_library(
dlopen_lib_name,
dlopen_sources,
include_directories: global_inc,
c_args: cflags,
dependencies: libs,
link_args: [
'-Wl,-export-dynamic',
'-Wl,-h,@0@'.format(LIB_GLUE),
],
soversion: dlopen_so_version,
install: true,
install_dir: dlopen_install_dir,
)
endif