2019-03-25 11:41:34 +01:00
|
|
|
# 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.
|
|
|
|
|
2019-04-09 09:00:42 +02:00
|
|
|
RDMA_CORE_DEBUG?=n
|
|
|
|
|
2021-05-10 14:07:49 +02:00
|
|
|
rdma-core_version := 35.0
|
2019-03-25 11:41:34 +01:00
|
|
|
rdma-core_tarball := rdma-core-$(rdma-core_version).tar.gz
|
2020-11-16 13:36:18 +01:00
|
|
|
rdma-core_tarball_md5sum_31.1 := f14b3eba775c2eba0d9433bfb3bae637
|
2021-05-10 14:07:49 +02:00
|
|
|
rdma-core_tarball_md5sum_35.0 := 85afb89ec536ef229c0fef6cb87e8665
|
2019-03-25 11:41:34 +01:00
|
|
|
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)
|
|
|
|
|
2020-03-12 11:55:09 +01:00
|
|
|
RDMA_BUILD_TYPE:=RelWithDebInfo
|
2019-04-09 09:00:42 +02:00
|
|
|
ifeq ($(RDMA_CORE_DEBUG),y)
|
|
|
|
RDMA_BUILD_TYPE:=Debug
|
|
|
|
endif
|
|
|
|
|
2019-03-25 11:41:34 +01:00
|
|
|
define rdma-core_config_cmds
|
|
|
|
cd $(rdma-core_build_dir) && \
|
2019-03-29 15:41:48 -04:00
|
|
|
$(CMAKE) -G Ninja $(rdma-core_src_dir) \
|
2020-11-20 18:37:14 +01:00
|
|
|
-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) \
|
2021-01-19 18:19:45 +01:00
|
|
|
-DCMAKE_INSTALL_LIBDIR=lib \
|
2019-04-08 13:45:33 +02:00
|
|
|
-DCMAKE_C_FLAGS='-fPIC -fvisibility=hidden' > $(rdma-core_config_log)
|
2019-03-25 11:41:34 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
define rdma-core_build_cmds
|
2020-11-20 18:37:14 +01:00
|
|
|
$(CMAKE) --build $(rdma-core_build_dir) -- libccan.a libibverbs.a librdma_util.a libmlx5.a libmlx4.a > $(rdma-core_build_log)
|
2021-05-10 14:07:49 +02:00
|
|
|
sed 's/^Libs.private:.*/Libs.private: -lmlx4 -lmlx5 -libverbs -lrdma_util -lccan -lpthread/' -i $(rdma-core_build_dir)/lib/pkgconfig/libibverbs.pc >> $(rdma-core_build_log)
|
2019-03-25 11:41:34 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
define rdma-core_install_cmds
|
2021-05-10 14:07:49 +02:00
|
|
|
mkdir -p $(rdma-core_install_dir)/lib/pkgconfig
|
|
|
|
cp -av $(rdma-core_build_dir)/include $(rdma-core_install_dir) > $(rdma-core_install_log)
|
|
|
|
cp -v $(rdma-core_build_dir)/lib/pkgconfig/libibverbs.pc \
|
|
|
|
$(rdma-core_build_dir)/lib/pkgconfig/libmlx5.pc \
|
|
|
|
$(rdma-core_build_dir)/lib/pkgconfig/libmlx4.pc \
|
|
|
|
$(rdma-core_install_dir)/lib/pkgconfig >> $(rdma-core_install_log)
|
|
|
|
cp -v $(rdma-core_build_dir)/lib/statics/libibverbs.a \
|
|
|
|
$(rdma-core_build_dir)/lib/statics/libmlx5.a \
|
|
|
|
$(rdma-core_build_dir)/lib/statics/libmlx4.a \
|
|
|
|
$(rdma-core_build_dir)/util/librdma_util.a \
|
|
|
|
$(rdma-core_build_dir)/ccan/libccan.a \
|
|
|
|
$(rdma-core_install_dir)/lib >> $(rdma-core_install_log)
|
2019-03-25 11:41:34 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call package,rdma-core))
|