ip: admin change affects intf IPv4 addr routes
[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             := 23
17 rdma-core_tarball             := rdma-core-$(rdma-core_version).tar.gz
18 rdma-core_tarball_md5sum_22.1 := dde4d30e3db20893408ae51041117034
19 rdma-core_tarball_md5sum_23 := c78575735c4a71609c1a214ea16cd8dc
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
24 RDMA_BUILD_TYPE:=Release
25 ifeq ($(RDMA_CORE_DEBUG),y)
26 RDMA_BUILD_TYPE:=Debug
27 endif
28
29 RDMA_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 \
34               lib/statics/libmlx5.a
35
36 define  rdma-core_config_cmds
37         cd $(rdma-core_build_dir) && \
38           $(CMAKE) -G Ninja $(rdma-core_src_dir) \
39             -DENABLE_STATIC=1 -DENABLE_RESOLVE_NEIGH=0 -DNO_PYVERBS=1 -DENABLE_VALGRIND=0 \
40             -DCMAKE_BUILD_TYPE=$(RDMA_BUILD_TYPE) \
41             -DCMAKE_C_FLAGS='-fPIC -fvisibility=hidden' > $(rdma-core_config_log)
42 endef
43
44 define  rdma-core_build_cmds
45         $(CMAKE) --build $(rdma-core_build_dir) -- libibverbs.a libmlx5.a > $(rdma-core_build_log)
46 endef
47
48 define  rdma-core_install_cmds
49         mkdir -p $(rdma-core_install_dir)
50         tar -C $(rdma-core_build_dir) --xform='s|/statics/|/|' -hc $(RDMA_FILES) | tar -C $(rdma-core_install_dir) -xv > $(rdma-core_install_log)
51 endef
52
53 $(eval $(call package,rdma-core))