61ab094721
- Per dpdk 23.07 release notes (rdma-core >= 46.0) Type: feature Change-Id: I7c15e15e1cf4b6f652711f9446d9f8324f6c4092 Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
59 lines
2.4 KiB
Makefile
59 lines
2.4 KiB
Makefile
# Copyright (c) 2018 Cisco and/or its affiliates.
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at:
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
RDMA_CORE_DEBUG?=n
|
|
|
|
# NOTE: When updating the rdma-core version in conjunction with an update of the
|
|
# dpdk version, please update ../mlx_rdma_dpdk_matrix.txt to include the
|
|
# updated version matrix with the dpdk and rdma-core version.
|
|
#
|
|
# Also, please verify that the DPDK RDMA driver is built into the dpdk plugin
|
|
# as follows:
|
|
# 1. from workspace root directory, 'make -C build/external build-deb'
|
|
# 2. Verify that the file build/external/dpdk_mlx_default.sh was generated
|
|
# and contains 'DPDK_MLX_DEFAULT=y'
|
|
#
|
|
rdma-core_version := 46.1
|
|
rdma-core_tarball := rdma-core-$(rdma-core_version).tar.gz
|
|
rdma-core_tarball_md5sum_43.0 := 3785fd2b35cd41043ab53226fc112d41
|
|
rdma-core_tarball_md5sum_45.0 := 2b170e6d2ad66fb688580520a16d1ad5
|
|
rdma-core_tarball_md5sum_46.1 := 3ac7c00717ea2720df5d90f8a43ae33a
|
|
rdma-core_tarball_md5sum := $(rdma-core_tarball_md5sum_$(rdma-core_version))
|
|
rdma-core_tarball_strip_dirs := 1
|
|
rdma-core_url := http://github.com/linux-rdma/rdma-core/releases/download/v$(rdma-core_version)/$(rdma-core_tarball)
|
|
|
|
RDMA_BUILD_TYPE:=RelWithDebInfo
|
|
ifeq ($(RDMA_CORE_DEBUG),y)
|
|
RDMA_BUILD_TYPE:=Debug
|
|
endif
|
|
|
|
define rdma-core_config_cmds
|
|
cd $(rdma-core_build_dir) && \
|
|
$(CMAKE) -G Ninja $(rdma-core_src_dir) \
|
|
-DENABLE_STATIC=1 -DENABLE_RESOLVE_NEIGH=0 -DNO_PYVERBS=1 -DENABLE_VALGRIND=0\
|
|
-DCMAKE_BUILD_TYPE=$(RDMA_BUILD_TYPE) -DCMAKE_INSTALL_PREFIX=$(rdma-core_install_dir) \
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
|
-DCMAKE_INSTALL_RUNDIR:PATH=/run \
|
|
-DCMAKE_C_FLAGS='-fPIC' -DNO_MAN_PAGES=ON | tee $(rdma-core_config_log)
|
|
endef
|
|
|
|
define rdma-core_build_cmds
|
|
$(CMAKE) --build $(rdma-core_build_dir) | tee $(rdma-core_build_log)
|
|
endef
|
|
|
|
define rdma-core_install_cmds
|
|
$(CMAKE) --install $(rdma-core_build_dir) | tee $(rdma-core_install_log)
|
|
endef
|
|
|
|
$(eval $(call package,rdma-core))
|