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 | 78f672b | 2022-06-09 12:09:19 +0200 | [diff] [blame] | 16 | rdma-core_version := 41.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 | 024a21d | 2022-03-30 10:57:17 +0200 | [diff] [blame] | 18 | rdma-core_tarball_md5sum_39.1 := 63ba4632fd01173a2331e5b990373330 |
Benoît Ganne | 78f672b | 2022-06-09 12:09:19 +0200 | [diff] [blame] | 19 | rdma-core_tarball_md5sum_41.0 := 2250389cb61a7130133e6411fdeef2f9 |
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 \ |
Mohammed Hawari | 45e4e94 | 2022-09-20 18:44:36 +0200 | [diff] [blame] | 35 | -DCMAKE_INSTALL_RUNDIR:PATH=/run \ |
| 36 | -DCMAKE_C_FLAGS='-fPIC' -DNO_MAN_PAGES=ON | tee $(rdma-core_config_log) |
Benoît Ganne | fe750c2 | 2019-03-25 11:41:34 +0100 | [diff] [blame] | 37 | endef |
| 38 | |
| 39 | define rdma-core_build_cmds |
Mohammed Hawari | 45e4e94 | 2022-09-20 18:44:36 +0200 | [diff] [blame] | 40 | $(CMAKE) --build $(rdma-core_build_dir) | tee $(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 |
Mohammed Hawari | 45e4e94 | 2022-09-20 18:44:36 +0200 | [diff] [blame] | 44 | $(CMAKE) --install $(rdma-core_build_dir) | tee $(rdma-core_install_log) |
Benoît Ganne | fe750c2 | 2019-03-25 11:41:34 +0100 | [diff] [blame] | 45 | endef |
| 46 | |
| 47 | $(eval $(call package,rdma-core)) |