rdma: cleanup rdma-core build
[vpp.git] / build / external / packages / rdma-core.mk
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
14 RDMA_CORE_DEBUG?=n
15
16 rdma-core_version             := 28.0
17 rdma-core_tarball             := rdma-core-$(rdma-core_version).tar.gz
18 rdma-core_tarball_md5sum_25.0 := d8839edaae4cb6dacdacc4b5a824854c
19 rdma-core_tarball_md5sum_26.0 := e68ad88679f37a0285d4d5b820e6b689
20 rdma-core_tarball_md5sum_28.0 := 780125feed6c599f2f22228db1a5996e
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
25 RDMA_BUILD_TYPE:=RelWithDebInfo
26 ifeq ($(RDMA_CORE_DEBUG),y)
27 RDMA_BUILD_TYPE:=Debug
28 endif
29
30 BUILD_FILES := include/ \
31                lib/statics/libibverbs.a \
32                lib/statics/libmlx5.a \
33                util/librdma_util.a
34
35 define  rdma-core_config_cmds
36         cd $(rdma-core_build_dir) && \
37           $(CMAKE) -G Ninja $(rdma-core_src_dir) \
38             -DENABLE_STATIC=1 -DENABLE_RESOLVE_NEIGH=0 -DNO_PYVERBS=1 -DENABLE_VALGRIND=0 -DIN_PLACE=1 \
39             -DCMAKE_BUILD_TYPE=$(RDMA_BUILD_TYPE) \
40             -DCMAKE_C_FLAGS='-fPIC -fvisibility=hidden' > $(rdma-core_config_log)
41 endef
42
43 define  rdma-core_build_cmds
44         $(CMAKE) --build $(rdma-core_build_dir) -- libibverbs.a librdma_util.a libmlx5.a > $(rdma-core_build_log)
45 endef
46
47 define  rdma-core_install_cmds
48         mkdir -p $(rdma-core_install_dir)
49         tar -C $(rdma-core_build_dir) -hc $(BUILD_FILES) | tar -C $(rdma-core_install_dir) -xv > $(rdma-core_install_log)
50         find $(rdma-core_install_dir) -name '*.a' -exec mv -v {} $(rdma-core_install_dir)/lib \; >> $(rdma-core_install_log)
51         rmdir -v $(rdma-core_install_dir)/util $(rdma-core_install_dir)/lib/statics >> $(rdma-core_install_log)
52 endef
53
54 $(eval $(call package,rdma-core))