blob: d52175e5ead88001c2b0b09438292046f03b97c5 [file] [log] [blame]
Benoît Gannefe750c22019-03-25 11:41:34 +01001# 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 Gannee0358922019-04-09 09:00:42 +020014RDMA_CORE_DEBUG?=n
15
Damjan Marion3edd1bb2019-10-31 23:06:15 +010016rdma-core_version := 26.0
Benoît Gannefe750c22019-03-25 11:41:34 +010017rdma-core_tarball := rdma-core-$(rdma-core_version).tar.gz
Benoît Ganneec757592019-08-05 17:52:25 +020018rdma-core_tarball_md5sum_25.0 := d8839edaae4cb6dacdacc4b5a824854c
Damjan Marion3edd1bb2019-10-31 23:06:15 +010019rdma-core_tarball_md5sum_26.0 := e68ad88679f37a0285d4d5b820e6b689
Benoît Gannefe750c22019-03-25 11:41:34 +010020rdma-core_tarball_md5sum := $(rdma-core_tarball_md5sum_$(rdma-core_version))
21rdma-core_tarball_strip_dirs := 1
22rdma-core_url := http://github.com/linux-rdma/rdma-core/releases/download/v$(rdma-core_version)/$(rdma-core_tarball)
23
Benoît Gannee0358922019-04-09 09:00:42 +020024RDMA_BUILD_TYPE:=Release
25ifeq ($(RDMA_CORE_DEBUG),y)
26RDMA_BUILD_TYPE:=Debug
27endif
28
Benoît Gannefe750c22019-03-25 11:41:34 +010029RDMA_FILES := include/infiniband/verbs.h \
30 include/infiniband/verbs_api.h \
31 include/infiniband/ib_user_ioctl_verbs.h \
32 include/rdma/ib_user_verbs.h \
33 lib/statics/libibverbs.a \
Benoît Gannec0bc26e2019-08-06 18:14:12 +020034 util/librdma_util.a \
Benoît Gannefe750c22019-03-25 11:41:34 +010035 lib/statics/libmlx5.a
36
37define rdma-core_config_cmds
38 cd $(rdma-core_build_dir) && \
Thomas F Herbertdc66aad2019-03-29 15:41:48 -040039 $(CMAKE) -G Ninja $(rdma-core_src_dir) \
Benoît Gannefe750c22019-03-25 11:41:34 +010040 -DENABLE_STATIC=1 -DENABLE_RESOLVE_NEIGH=0 -DNO_PYVERBS=1 -DENABLE_VALGRIND=0 \
Benoît Gannee0358922019-04-09 09:00:42 +020041 -DCMAKE_BUILD_TYPE=$(RDMA_BUILD_TYPE) \
Benoît Gannef3262a22019-04-08 13:45:33 +020042 -DCMAKE_C_FLAGS='-fPIC -fvisibility=hidden' > $(rdma-core_config_log)
Benoît Gannefe750c22019-03-25 11:41:34 +010043endef
44
45define rdma-core_build_cmds
Benoît Gannec0bc26e2019-08-06 18:14:12 +020046 $(CMAKE) --build $(rdma-core_build_dir) -- libibverbs.a librdma_util.a libmlx5.a > $(rdma-core_build_log)
Benoît Gannefe750c22019-03-25 11:41:34 +010047endef
48
49define rdma-core_install_cmds
50 mkdir -p $(rdma-core_install_dir)
51 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 Gannec0bc26e2019-08-06 18:14:12 +020052 mv -v $(rdma-core_install_dir)/util/librdma_util.a $(rdma-core_install_dir)/lib >> $(rdma-core_install_log)
53 rmdir $(rdma-core_install_dir)/util
Benoît Gannefe750c22019-03-25 11:41:34 +010054endef
55
56$(eval $(call package,rdma-core))