blob: c163284b833a6c0e7e6e02b5738cb3cc492796e0 [file] [log] [blame]
Benoît Gannefe750c22019-03-25 11:41:34 +01001# Copyright (c) 2018 Cisco and/or its affiliates.
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at:
5#
6# http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13
Benoît Gannee0358922019-04-09 09:00:42 +020014RDMA_CORE_DEBUG?=n
15
Dave Wallace0e8ec642023-05-09 20:42:17 -040016# NOTE: When updating the rdma-core version in conjunction with an update of the
17# dpdk version, please update ../mlx_rdma_dpdk_matrix.txt to include the
18# updated version matrix with the dpdk and rdma-core version.
19#
20# Also, please verify that the DPDK RDMA driver is built into the dpdk plugin
21# as follows:
22# 1. from workspace root directory, 'make -C build/external build-deb'
23# 2. Verify that the file build/external/dpdk_mlx_default.sh was generated
24# and contains 'DPDK_MLX_DEFAULT=y'
25#
Dave Wallace61ab0942023-08-14 16:19:46 -040026rdma-core_version := 46.1
Benoît Gannefe750c22019-03-25 11:41:34 +010027rdma-core_tarball := rdma-core-$(rdma-core_version).tar.gz
Alexander Kozyrev6f833522023-05-01 17:36:21 +000028rdma-core_tarball_md5sum_43.0 := 3785fd2b35cd41043ab53226fc112d41
Dave Wallace0e8ec642023-05-09 20:42:17 -040029rdma-core_tarball_md5sum_45.0 := 2b170e6d2ad66fb688580520a16d1ad5
Dave Wallace61ab0942023-08-14 16:19:46 -040030rdma-core_tarball_md5sum_46.1 := 3ac7c00717ea2720df5d90f8a43ae33a
Benoît Gannefe750c22019-03-25 11:41:34 +010031rdma-core_tarball_md5sum := $(rdma-core_tarball_md5sum_$(rdma-core_version))
32rdma-core_tarball_strip_dirs := 1
33rdma-core_url := http://github.com/linux-rdma/rdma-core/releases/download/v$(rdma-core_version)/$(rdma-core_tarball)
34
Benoît Gannee7e1b322020-03-12 11:55:09 +010035RDMA_BUILD_TYPE:=RelWithDebInfo
Benoît Gannee0358922019-04-09 09:00:42 +020036ifeq ($(RDMA_CORE_DEBUG),y)
37RDMA_BUILD_TYPE:=Debug
38endif
39
Benoît Gannefe750c22019-03-25 11:41:34 +010040define rdma-core_config_cmds
41 cd $(rdma-core_build_dir) && \
Thomas F Herbertdc66aad2019-03-29 15:41:48 -040042 $(CMAKE) -G Ninja $(rdma-core_src_dir) \
Mohammed Hawarife909a62020-11-20 18:37:14 +010043 -DENABLE_STATIC=1 -DENABLE_RESOLVE_NEIGH=0 -DNO_PYVERBS=1 -DENABLE_VALGRIND=0\
44 -DCMAKE_BUILD_TYPE=$(RDMA_BUILD_TYPE) -DCMAKE_INSTALL_PREFIX=$(rdma-core_install_dir) \
Mohammed Hawaridf849f82021-01-19 18:19:45 +010045 -DCMAKE_INSTALL_LIBDIR=lib \
Mohammed Hawari45e4e942022-09-20 18:44:36 +020046 -DCMAKE_INSTALL_RUNDIR:PATH=/run \
47 -DCMAKE_C_FLAGS='-fPIC' -DNO_MAN_PAGES=ON | tee $(rdma-core_config_log)
Benoît Gannefe750c22019-03-25 11:41:34 +010048endef
49
50define rdma-core_build_cmds
Mohammed Hawari45e4e942022-09-20 18:44:36 +020051 $(CMAKE) --build $(rdma-core_build_dir) | tee $(rdma-core_build_log)
Benoît Gannefe750c22019-03-25 11:41:34 +010052endef
53
54define rdma-core_install_cmds
Mohammed Hawari45e4e942022-09-20 18:44:36 +020055 $(CMAKE) --install $(rdma-core_build_dir) | tee $(rdma-core_install_log)
Benoît Gannefe750c22019-03-25 11:41:34 +010056endef
57
58$(eval $(call package,rdma-core))