Benoît Ganne | fe750c2 | 2019-03-25 11:41:34 +0100 | [diff] [blame] | 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: |
| 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 Ganne | e035892 | 2019-04-09 09:00:42 +0200 | [diff] [blame] | 14 | RDMA_CORE_DEBUG?=n |
| 15 | |
Benoît Ganne | db4abc4 | 2021-11-29 20:44:36 +0100 | [diff] [blame] | 16 | rdma-core_version := 38.0 |
Benoît Ganne | fe750c2 | 2019-03-25 11:41:34 +0100 | [diff] [blame] | 17 | rdma-core_tarball := rdma-core-$(rdma-core_version).tar.gz |
Benoît Ganne | 028c9fd | 2021-05-10 14:07:49 +0200 | [diff] [blame] | 18 | rdma-core_tarball_md5sum_35.0 := 85afb89ec536ef229c0fef6cb87e8665 |
Benoît Ganne | db4abc4 | 2021-11-29 20:44:36 +0100 | [diff] [blame] | 19 | rdma-core_tarball_md5sum_38.0 := 44e14dd392ac139a0d452148eb0a0514 |
Benoît Ganne | fe750c2 | 2019-03-25 11:41:34 +0100 | [diff] [blame] | 20 | rdma-core_tarball_md5sum := $(rdma-core_tarball_md5sum_$(rdma-core_version)) |
| 21 | rdma-core_tarball_strip_dirs := 1 |
| 22 | rdma-core_url := http://github.com/linux-rdma/rdma-core/releases/download/v$(rdma-core_version)/$(rdma-core_tarball) |
| 23 | |
Benoît Ganne | e7e1b32 | 2020-03-12 11:55:09 +0100 | [diff] [blame] | 24 | RDMA_BUILD_TYPE:=RelWithDebInfo |
Benoît Ganne | e035892 | 2019-04-09 09:00:42 +0200 | [diff] [blame] | 25 | ifeq ($(RDMA_CORE_DEBUG),y) |
| 26 | RDMA_BUILD_TYPE:=Debug |
| 27 | endif |
| 28 | |
Benoît Ganne | fe750c2 | 2019-03-25 11:41:34 +0100 | [diff] [blame] | 29 | define rdma-core_config_cmds |
| 30 | cd $(rdma-core_build_dir) && \ |
Thomas F Herbert | dc66aad | 2019-03-29 15:41:48 -0400 | [diff] [blame] | 31 | $(CMAKE) -G Ninja $(rdma-core_src_dir) \ |
Mohammed Hawari | fe909a6 | 2020-11-20 18:37:14 +0100 | [diff] [blame] | 32 | -DENABLE_STATIC=1 -DENABLE_RESOLVE_NEIGH=0 -DNO_PYVERBS=1 -DENABLE_VALGRIND=0\ |
| 33 | -DCMAKE_BUILD_TYPE=$(RDMA_BUILD_TYPE) -DCMAKE_INSTALL_PREFIX=$(rdma-core_install_dir) \ |
Mohammed Hawari | df849f8 | 2021-01-19 18:19:45 +0100 | [diff] [blame] | 34 | -DCMAKE_INSTALL_LIBDIR=lib \ |
Benoît Ganne | f3262a2 | 2019-04-08 13:45:33 +0200 | [diff] [blame] | 35 | -DCMAKE_C_FLAGS='-fPIC -fvisibility=hidden' > $(rdma-core_config_log) |
Benoît Ganne | fe750c2 | 2019-03-25 11:41:34 +0100 | [diff] [blame] | 36 | endef |
| 37 | |
| 38 | define rdma-core_build_cmds |
Mohammed Hawari | fe909a6 | 2020-11-20 18:37:14 +0100 | [diff] [blame] | 39 | $(CMAKE) --build $(rdma-core_build_dir) -- libccan.a libibverbs.a librdma_util.a libmlx5.a libmlx4.a > $(rdma-core_build_log) |
Benoît Ganne | 028c9fd | 2021-05-10 14:07:49 +0200 | [diff] [blame] | 40 | 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) |
Benoît Ganne | fe750c2 | 2019-03-25 11:41:34 +0100 | [diff] [blame] | 41 | endef |
| 42 | |
| 43 | define rdma-core_install_cmds |
Benoît Ganne | 028c9fd | 2021-05-10 14:07:49 +0200 | [diff] [blame] | 44 | mkdir -p $(rdma-core_install_dir)/lib/pkgconfig |
Benoît Ganne | 521a9f8 | 2021-11-30 09:15:38 +0100 | [diff] [blame] | 45 | cp -avL $(rdma-core_build_dir)/include $(rdma-core_install_dir) > $(rdma-core_install_log) |
| 46 | cp -avL $(rdma-core_build_dir)/lib/pkgconfig/libibverbs.pc \ |
Benoît Ganne | 028c9fd | 2021-05-10 14:07:49 +0200 | [diff] [blame] | 47 | $(rdma-core_build_dir)/lib/pkgconfig/libmlx5.pc \ |
| 48 | $(rdma-core_build_dir)/lib/pkgconfig/libmlx4.pc \ |
| 49 | $(rdma-core_install_dir)/lib/pkgconfig >> $(rdma-core_install_log) |
Benoît Ganne | 521a9f8 | 2021-11-30 09:15:38 +0100 | [diff] [blame] | 50 | cp -avL $(rdma-core_build_dir)/lib/statics/libibverbs.a \ |
Benoît Ganne | 028c9fd | 2021-05-10 14:07:49 +0200 | [diff] [blame] | 51 | $(rdma-core_build_dir)/lib/statics/libmlx5.a \ |
| 52 | $(rdma-core_build_dir)/lib/statics/libmlx4.a \ |
| 53 | $(rdma-core_build_dir)/util/librdma_util.a \ |
| 54 | $(rdma-core_build_dir)/ccan/libccan.a \ |
| 55 | $(rdma-core_install_dir)/lib >> $(rdma-core_install_log) |
Benoît Ganne | fe750c2 | 2019-03-25 11:41:34 +0100 | [diff] [blame] | 56 | endef |
| 57 | |
| 58 | $(eval $(call package,rdma-core)) |