blob: d3363e141bc62b635353ee1c5fc297ed4cb82fb3 [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
14rdma-core_version := 23
15rdma-core_tarball := rdma-core-$(rdma-core_version).tar.gz
16rdma-core_tarball_md5sum_22.1 := dde4d30e3db20893408ae51041117034
17rdma-core_tarball_md5sum_23 := c78575735c4a71609c1a214ea16cd8dc
18rdma-core_tarball_md5sum := $(rdma-core_tarball_md5sum_$(rdma-core_version))
19rdma-core_tarball_strip_dirs := 1
20rdma-core_url := http://github.com/linux-rdma/rdma-core/releases/download/v$(rdma-core_version)/$(rdma-core_tarball)
21
22RDMA_FILES := include/infiniband/verbs.h \
23 include/infiniband/verbs_api.h \
24 include/infiniband/ib_user_ioctl_verbs.h \
25 include/rdma/ib_user_verbs.h \
26 lib/statics/libibverbs.a \
27 lib/statics/libmlx5.a
28
29define rdma-core_config_cmds
30 cd $(rdma-core_build_dir) && \
Thomas F Herbertdc66aad2019-03-29 15:41:48 -040031 $(CMAKE) -G Ninja $(rdma-core_src_dir) \
Benoît Gannefe750c22019-03-25 11:41:34 +010032 -DENABLE_STATIC=1 -DENABLE_RESOLVE_NEIGH=0 -DNO_PYVERBS=1 -DENABLE_VALGRIND=0 \
33 -DCMAKE_BUILD_TYPE=RelWithDebInfo \
34 -DCMAKE_C_FLAGS=-fPIC > $(rdma-core_config_log)
35endef
36
37define rdma-core_build_cmds
Thomas F Herbertdc66aad2019-03-29 15:41:48 -040038 $(CMAKE) --build $(rdma-core_build_dir) -- libibverbs.a libmlx5.a > $(rdma-core_build_log)
Benoît Gannefe750c22019-03-25 11:41:34 +010039endef
40
41define rdma-core_install_cmds
42 mkdir -p $(rdma-core_install_dir)
43 tar -C $(rdma-core_build_dir) --xform='s|/statics/|/|' -hc $(RDMA_FILES) | tar -C $(rdma-core_install_dir) -xv > $(rdma-core_install_log)
44endef
45
46$(eval $(call package,rdma-core))