1 # 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:
6 # http://www.apache.org/licenses/LICENSE-2.0
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.
16 # 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.
20 # Also, please verify that the DPDK RDMA driver is built into the dpdk plugin
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'
26 rdma-core_version := 45.0
27 rdma-core_tarball := rdma-core-$(rdma-core_version).tar.gz
28 rdma-core_tarball_md5sum_39.1 := 63ba4632fd01173a2331e5b990373330
29 rdma-core_tarball_md5sum_41.0 := 2250389cb61a7130133e6411fdeef2f9
30 rdma-core_tarball_md5sum_43.0 := 3785fd2b35cd41043ab53226fc112d41
31 rdma-core_tarball_md5sum_45.0 := 2b170e6d2ad66fb688580520a16d1ad5
32 rdma-core_tarball_md5sum := $(rdma-core_tarball_md5sum_$(rdma-core_version))
33 rdma-core_tarball_strip_dirs := 1
34 rdma-core_url := http://github.com/linux-rdma/rdma-core/releases/download/v$(rdma-core_version)/$(rdma-core_tarball)
36 RDMA_BUILD_TYPE:=RelWithDebInfo
37 ifeq ($(RDMA_CORE_DEBUG),y)
38 RDMA_BUILD_TYPE:=Debug
41 define rdma-core_config_cmds
42 cd $(rdma-core_build_dir) && \
43 $(CMAKE) -G Ninja $(rdma-core_src_dir) \
44 -DENABLE_STATIC=1 -DENABLE_RESOLVE_NEIGH=0 -DNO_PYVERBS=1 -DENABLE_VALGRIND=0\
45 -DCMAKE_BUILD_TYPE=$(RDMA_BUILD_TYPE) -DCMAKE_INSTALL_PREFIX=$(rdma-core_install_dir) \
46 -DCMAKE_INSTALL_LIBDIR=lib \
47 -DCMAKE_INSTALL_RUNDIR:PATH=/run \
48 -DCMAKE_C_FLAGS='-fPIC' -DNO_MAN_PAGES=ON | tee $(rdma-core_config_log)
51 define rdma-core_build_cmds
52 $(CMAKE) --build $(rdma-core_build_dir) | tee $(rdma-core_build_log)
55 define rdma-core_install_cmds
56 $(CMAKE) --install $(rdma-core_build_dir) | tee $(rdma-core_install_log)
59 $(eval $(call package,rdma-core))