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 | ec75759 | 2019-08-05 17:52:25 +0200 | [diff] [blame] | 16 | rdma-core_version := 25.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 |
| 18 | rdma-core_tarball_md5sum_22.1 := dde4d30e3db20893408ae51041117034 |
Benoît Ganne | ec75759 | 2019-08-05 17:52:25 +0200 | [diff] [blame] | 19 | rdma-core_tarball_md5sum_23 := c78575735c4a71609c1a214ea16cd8dc |
| 20 | rdma-core_tarball_md5sum_25.0 := d8839edaae4cb6dacdacc4b5a824854c |
Benoît Ganne | fe750c2 | 2019-03-25 11:41:34 +0100 | [diff] [blame] | 21 | rdma-core_tarball_md5sum := $(rdma-core_tarball_md5sum_$(rdma-core_version)) |
| 22 | rdma-core_tarball_strip_dirs := 1 |
| 23 | rdma-core_url := http://github.com/linux-rdma/rdma-core/releases/download/v$(rdma-core_version)/$(rdma-core_tarball) |
| 24 | |
Benoît Ganne | e035892 | 2019-04-09 09:00:42 +0200 | [diff] [blame] | 25 | RDMA_BUILD_TYPE:=Release |
| 26 | ifeq ($(RDMA_CORE_DEBUG),y) |
| 27 | RDMA_BUILD_TYPE:=Debug |
| 28 | endif |
| 29 | |
Benoît Ganne | fe750c2 | 2019-03-25 11:41:34 +0100 | [diff] [blame] | 30 | RDMA_FILES := include/infiniband/verbs.h \ |
| 31 | include/infiniband/verbs_api.h \ |
| 32 | include/infiniband/ib_user_ioctl_verbs.h \ |
| 33 | include/rdma/ib_user_verbs.h \ |
| 34 | lib/statics/libibverbs.a \ |
Benoît Ganne | c0bc26e | 2019-08-06 18:14:12 +0200 | [diff] [blame^] | 35 | util/librdma_util.a \ |
Benoît Ganne | fe750c2 | 2019-03-25 11:41:34 +0100 | [diff] [blame] | 36 | lib/statics/libmlx5.a |
| 37 | |
| 38 | define rdma-core_config_cmds |
| 39 | cd $(rdma-core_build_dir) && \ |
Thomas F Herbert | dc66aad | 2019-03-29 15:41:48 -0400 | [diff] [blame] | 40 | $(CMAKE) -G Ninja $(rdma-core_src_dir) \ |
Benoît Ganne | fe750c2 | 2019-03-25 11:41:34 +0100 | [diff] [blame] | 41 | -DENABLE_STATIC=1 -DENABLE_RESOLVE_NEIGH=0 -DNO_PYVERBS=1 -DENABLE_VALGRIND=0 \ |
Benoît Ganne | e035892 | 2019-04-09 09:00:42 +0200 | [diff] [blame] | 42 | -DCMAKE_BUILD_TYPE=$(RDMA_BUILD_TYPE) \ |
Benoît Ganne | f3262a2 | 2019-04-08 13:45:33 +0200 | [diff] [blame] | 43 | -DCMAKE_C_FLAGS='-fPIC -fvisibility=hidden' > $(rdma-core_config_log) |
Benoît Ganne | fe750c2 | 2019-03-25 11:41:34 +0100 | [diff] [blame] | 44 | endef |
| 45 | |
| 46 | define rdma-core_build_cmds |
Benoît Ganne | c0bc26e | 2019-08-06 18:14:12 +0200 | [diff] [blame^] | 47 | $(CMAKE) --build $(rdma-core_build_dir) -- libibverbs.a librdma_util.a libmlx5.a > $(rdma-core_build_log) |
Benoît Ganne | fe750c2 | 2019-03-25 11:41:34 +0100 | [diff] [blame] | 48 | endef |
| 49 | |
| 50 | define rdma-core_install_cmds |
| 51 | mkdir -p $(rdma-core_install_dir) |
| 52 | tar -C $(rdma-core_build_dir) --xform='s|/statics/|/|' -hc $(RDMA_FILES) | tar -C $(rdma-core_install_dir) -xv > $(rdma-core_install_log) |
Benoît Ganne | c0bc26e | 2019-08-06 18:14:12 +0200 | [diff] [blame^] | 53 | mv -v $(rdma-core_install_dir)/util/librdma_util.a $(rdma-core_install_dir)/lib >> $(rdma-core_install_log) |
| 54 | rmdir $(rdma-core_install_dir)/util |
Benoît Ganne | fe750c2 | 2019-03-25 11:41:34 +0100 | [diff] [blame] | 55 | endef |
| 56 | |
| 57 | $(eval $(call package,rdma-core)) |