build: fix centos 8 steam build install-dep
[vpp.git] / Makefile
1 # Copyright (c) 2021 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 export WS_ROOT=$(CURDIR)
15 export BR=$(WS_ROOT)/build-root
16 CCACHE_DIR?=$(BR)/.ccache
17 SHELL:=/bin/bash
18 GDB?=gdb
19 PLATFORM?=vpp
20 SAMPLE_PLUGIN?=no
21 STARTUP_DIR?=$(PWD)
22 MACHINE=$(shell uname -m)
23 SUDO?=sudo -E
24 DPDK_CONFIG?=no-pci
25
26 ,:=,
27 define disable_plugins
28 $(if $(1), \
29   "plugins {" \
30   $(patsubst %,"plugin %_plugin.so { disable }",$(subst $(,), ,$(1))) \
31   " }" \
32   ,)
33 endef
34
35 MINIMAL_STARTUP_CONF="                                                  \
36 unix {                                                                  \
37         interactive                                                     \
38         cli-listen /run/vpp/cli.sock                                    \
39         gid $(shell id -g)                                              \
40         $(if $(wildcard startup.vpp),"exec startup.vpp",)               \
41 }                                                                       \
42 $(if $(DPDK_CONFIG), "dpdk { $(DPDK_CONFIG) }",)                        \
43 $(call disable_plugins,$(DISABLED_PLUGINS))                             \
44 "
45
46 GDB_ARGS= -ex "handle SIGUSR1 noprint nostop"
47
48 #
49 # OS Detection
50 #
51 # We allow Darwin (MacOS) for docs generation; VPP build will still fail.
52 ifneq ($(shell uname),Darwin)
53 OS_ID        = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
54 OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
55 endif
56
57 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
58 PKG=deb
59 else ifeq ($(filter rhel centos fedora opensuse-leap,$(OS_ID)),$(OS_ID))
60 PKG=rpm
61 endif
62
63 # +libganglia1-dev if building the gmond plugin
64
65 DEB_DEPENDS  = curl build-essential autoconf automake ccache
66 DEB_DEPENDS += debhelper dkms git libtool libapr1-dev dh-python
67 DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope pkg-config
68 DEB_DEPENDS += lcov chrpath autoconf libnuma-dev
69 DEB_DEPENDS += python3-all python3-setuptools check
70 DEB_DEPENDS += libffi-dev python3-ply
71 DEB_DEPENDS += cmake ninja-build uuid-dev python3-jsonschema python3-yaml
72 DEB_DEPENDS += python3-venv  # ensurepip
73 DEB_DEPENDS += python3-dev   # needed for python3 -m pip install psutil
74 DEB_DEPENDS += libnl-3-dev libnl-route-3-dev libmnl-dev
75 # DEB_DEPENDS += enchant  # for docs
76 DEB_DEPENDS += python3-virtualenv
77 DEB_DEPENDS += libssl-dev
78 DEB_DEPENDS += libelf-dev # for libbpf (af_xdp)
79 DEB_DEPENDS += iperf3 # for 'make test TEST=vcl'
80
81 LIBFFI=libffi6 # works on all but 20.04 and debian-testing
82
83 ifeq ($(OS_VERSION_ID),20.04)
84         DEB_DEPENDS += python3-virtualenv
85         DEB_DEPENDS += libssl-dev
86         DEB_DEPENDS += libelf-dev # for libbpf (af_xdp)
87         # TODO: change CLANG_FORMAT_VER default in extras/scripts/checkstyle.sh
88         #       when clang-format-10 is removed
89         DEB_DEPENDS += clang-11 clang-format-11 clang-format-10
90         LIBFFI=libffi7
91         DEB_DEPENDS += enchant-2  # for docs
92 else ifeq ($(OS_VERSION_ID),20.10)
93         # TODO: change CLANG_FORMAT_VER default in extras/scripts/checkstyle.sh
94         #       when clang-format-10 is removed
95         DEB_DEPENDS += clang-11 clang-format-11 clang-format-10
96         LIBFFI=libffi8ubuntu1
97 else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-10)
98         DEB_DEPENDS += virtualenv
99 else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-11)
100         DEB_DEPENDS += virtualenv
101         DEB_DEPENDS += clang-11 clang-format-11
102         LIBFFI=libffi7
103 else
104         # TODO: change CLANG_FORMAT_VER default in extras/scripts/checkstyle.sh
105         #       when clang-format-10 is removed
106         DEB_DEPENDS += clang-11 clang-format-11 clang-format-10
107         LIBFFI=libffi7
108         DEB_DEPENDS += enchant-2  # for docs
109 endif
110
111 DEB_DEPENDS += $(LIBFFI)
112
113 RPM_DEPENDS  = redhat-lsb glibc-static
114 RPM_DEPENDS += apr-devel
115 RPM_DEPENDS += numactl-devel
116 RPM_DEPENDS += check check-devel
117 RPM_DEPENDS += selinux-policy selinux-policy-devel
118 RPM_DEPENDS += ninja-build
119 RPM_DEPENDS += libuuid-devel
120 RPM_DEPENDS += mbedtls-devel
121 RPM_DEPENDS += ccache
122 RPM_DEPENDS += xmlto
123 RPM_DEPENDS += elfutils-libelf-devel
124 RPM_DEPENDS += libnl3-devel libmnl-devel
125
126 ifeq ($(OS_ID),fedora)
127         RPM_DEPENDS += dnf-utils
128         RPM_DEPENDS += subunit subunit-devel
129         RPM_DEPENDS += compat-openssl10-devel
130         RPM_DEPENDS += python3-devel  # needed for python3 -m pip install psutil
131         RPM_DEPENDS += python3-ply  # for vppapigen
132         RPM_DEPENDS += python3-virtualenv python3-jsonschema
133         RPM_DEPENDS += cmake
134         RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
135 else ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
136         RPM_DEPENDS += yum-utils
137         RPM_DEPENDS += compat-openssl10 openssl-devel
138         RPM_DEPENDS += python2-devel python36-devel python3-ply
139         RPM_DEPENDS += python3-virtualenv python3-jsonschema
140         RPM_DEPENDS += libarchive cmake
141         RPM_DEPENDS_GROUPS = 'Development Tools'
142 else
143         RPM_DEPENDS += yum-utils
144         RPM_DEPENDS += openssl-devel
145         RPM_DEPENDS += python36-ply  # for vppapigen
146         RPM_DEPENDS += python3-devel python3-pip
147         RPM_DEPENDS += python-virtualenv python36-jsonschema
148         RPM_DEPENDS += devtoolset-9 devtoolset-9-libasan-devel
149         RPM_DEPENDS += cmake3
150         RPM_DEPENDS_GROUPS = 'Development Tools'
151 endif
152
153 # +ganglia-devel if building the ganglia plugin
154
155 RPM_DEPENDS += chrpath libffi-devel rpm-build
156
157 RPM_DEPENDS_DEBUG  = glibc-debuginfo e2fsprogs-debuginfo
158 RPM_DEPENDS_DEBUG += krb5-debuginfo openssl-debuginfo
159 RPM_DEPENDS_DEBUG += zlib-debuginfo nss-softokn-debuginfo
160 RPM_DEPENDS_DEBUG += yum-plugin-auto-update-debug-info
161
162 RPM_SUSE_BUILDTOOLS_DEPS = autoconf automake ccache check-devel chrpath
163 RPM_SUSE_BUILDTOOLS_DEPS += clang cmake indent libtool make ninja python3-ply
164
165 RPM_SUSE_DEVEL_DEPS = glibc-devel-static libnuma-devel libelf-devel
166 RPM_SUSE_DEVEL_DEPS += libopenssl-devel openssl-devel mbedtls-devel libuuid-devel
167
168 RPM_SUSE_PYTHON_DEPS = python-devel python3-devel python-pip python3-pip
169 RPM_SUSE_PYTHON_DEPS += python-rpm-macros python3-rpm-macros
170
171 RPM_SUSE_PLATFORM_DEPS = distribution-release shadow rpm-build
172
173 ifeq ($(OS_ID),opensuse-leap)
174 ifeq ($(OS_VERSION_ID),15.3)
175         RPM_SUSE_DEVEL_DEPS += curl libstdc++-devel bison gcc-c++ zlib-devel xmlto
176         RPM_SUSE_DEVEL_DEPS += lsb-release
177         RPM_SUSE_DEVEL_DEPS += asciidoc git
178         RPM_SUSE_PYTHON_DEPS += python3 python2-ply
179 endif
180 ifeq ($(OS_VERSION_ID),15.0)
181         RPM_SUSE_DEVEL_DEPS += gcc git curl
182         RPM_SUSE_PYTHON_DEPS += python3-ply python2-virtualenv
183 endif
184 endif
185
186 RPM_SUSE_DEPENDS += $(RPM_SUSE_BUILDTOOLS_DEPS) $(RPM_SUSE_DEVEL_DEPS) $(RPM_SUSE_PYTHON_DEPS) $(RPM_SUSE_PLATFORM_DEPS)
187
188 ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
189         STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
190 endif
191
192 ifeq ($(findstring y,$(UNATTENDED)),y)
193 CONFIRM=-y
194 FORCE=--force-yes
195 endif
196
197 TARGETS = vpp
198
199 ifneq ($(SAMPLE_PLUGIN),no)
200 TARGETS += sample-plugin
201 endif
202
203 define banner
204         @echo "========================================================================"
205         @echo " $(1)"
206         @echo "========================================================================"
207         @echo " "
208 endef
209
210 .PHONY: help
211 help:
212         @echo "Make Targets:"
213         @echo " install-dep[s]       - install software dependencies"
214         @echo " wipe                 - wipe all products of debug build "
215         @echo " wipe-release         - wipe all products of release build "
216         @echo " build                - build debug binaries"
217         @echo " build-release        - build release binaries"
218         @echo " build-coverity       - build coverity artifacts"
219         @echo " rebuild              - wipe and build debug binaries"
220         @echo " rebuild-release      - wipe and build release binaries"
221         @echo " run                  - run debug binary"
222         @echo " run-release          - run release binary"
223         @echo " debug                - run debug binary with debugger"
224         @echo " debug-release        - run release binary with debugger"
225         @echo " test                 - build and run tests"
226         @echo " test-help            - show help on test framework"
227         @echo " run-vat              - run vpp-api-test tool"
228         @echo " pkg-deb              - build DEB packages"
229         @echo " pkg-deb-debug        - build DEB debug packages"
230         @echo " pkg-snap             - build SNAP package"
231         @echo " snap-clean           - clean up snap build environment"
232         @echo " pkg-rpm              - build RPM packages"
233         @echo " install-ext-dep[s]   - install external development dependencies"
234         @echo " ctags                - (re)generate ctags database"
235         @echo " gtags                - (re)generate gtags database"
236         @echo " cscope               - (re)generate cscope database"
237         @echo " compdb               - (re)generate compile_commands.json"
238         @echo " checkstyle           - check coding style"
239         @echo " checkstyle-commit    - check commit message format"
240         @echo " checkstyle-test      - check test framework coding style"
241         @echo " checkstyle-test-diff - check test framework coding style (only changed files)"
242         @echo " checkstyle-api       - check api for incompatible changes"
243         @echo " fixstyle             - fix coding style"
244         @echo " doxygen              - DEPRECATED - use 'make docs'"
245         @echo " bootstrap-doxygen    - DEPRECATED"
246         @echo " wipe-doxygen         - DEPRECATED"
247         @echo " checkfeaturelist     - check FEATURE.yaml according to schema"
248         @echo " featurelist          - dump feature list in markdown"
249         @echo " json-api-files       - (re)-generate json api files"
250         @echo " json-api-files-debug - (re)-generate json api files for debug target"
251         @echo " go-api-files         - (re)-generate golang api files"
252         @echo " docs                 - Build the Sphinx documentation"
253         @echo " docs-venv            - Build the virtual environment for the Sphinx docs"
254         @echo " docs-clean           - Remove the generated files from the Sphinx docs"
255         @echo ""
256         @echo "Make Arguments:"
257         @echo " V=[0|1]                  - set build verbosity level"
258         @echo " STARTUP_CONF=<path>      - startup configuration file"
259         @echo "                            (e.g. /etc/vpp/startup.conf)"
260         @echo " STARTUP_DIR=<path>       - startup directory (e.g. /etc/vpp)"
261         @echo "                            It also sets STARTUP_CONF if"
262         @echo "                            startup.conf file is present"
263         @echo " GDB=<path>               - gdb binary to use for debugging"
264         @echo " PLATFORM=<name>          - target platform. default is vpp"
265         @echo " DPDK_CONFIG=<conf>       - add specified dpdk config commands to"
266         @echo "                            autogenerated startup.conf"
267         @echo "                            (e.g. \"no-pci\" )"
268         @echo " SAMPLE_PLUGIN=yes        - in addition build/run/debug sample plugin"
269         @echo " DISABLED_PLUGINS=<list>  - comma separated list of plugins which"
270         @echo "                            should not be loaded"
271         @echo ""
272         @echo "Current Argument Values:"
273         @echo " V                 = $(V)"
274         @echo " STARTUP_CONF      = $(STARTUP_CONF)"
275         @echo " STARTUP_DIR       = $(STARTUP_DIR)"
276         @echo " GDB               = $(GDB)"
277         @echo " PLATFORM          = $(PLATFORM)"
278         @echo " DPDK_VERSION      = $(DPDK_VERSION)"
279         @echo " DPDK_CONFIG       = $(DPDK_CONFIG)"
280         @echo " SAMPLE_PLUGIN     = $(SAMPLE_PLUGIN)"
281         @echo " DISABLED_PLUGINS  = $(DISABLED_PLUGINS)"
282
283 $(BR)/.deps.ok:
284 ifeq ($(findstring y,$(UNATTENDED)),y)
285         make install-dep
286 endif
287 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
288         @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
289         if [ -n "$$MISSING" ] ; then \
290           echo "\nPlease install missing packages: \n$$MISSING\n" ; \
291           echo "by executing \"make install-dep\"\n" ; \
292           exit 1 ; \
293         fi ; \
294         exit 0
295 else ifneq ("$(wildcard /etc/redhat-release)","")
296         @for i in $(RPM_DEPENDS) ; do \
297             RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3,4)  ; \
298             MISSING+=$$(rpm -q $$RPM | grep "^package")    ;    \
299         done                                                       ;    \
300         if [ -n "$$MISSING" ] ; then \
301           echo "Please install missing RPMs: \n$$MISSING\n" ; \
302           echo "by executing \"make install-dep\"\n" ; \
303           exit 1 ; \
304         fi ; \
305         exit 0
306 endif
307         @touch $@
308
309 .PHONY: bootstrap
310 bootstrap:
311         @echo "'make bootstrap' is not needed anymore"
312
313 .PHONY: install-dep
314 install-dep:
315 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
316         @sudo -E apt-get update
317         @sudo -E apt-get $(APT_ARGS) $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
318 else ifneq ("$(wildcard /etc/redhat-release)","")
319 ifeq ($(OS_ID),rhel)
320         @sudo -E yum-config-manager --enable rhel-server-rhscl-7-rpms
321         @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
322         @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
323         @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
324 else ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
325         @sudo -E dnf install $(CONFIRM) dnf-plugins-core epel-release
326         @sudo -E dnf config-manager --set-enabled \
327           $(shell dnf repolist all 2>/dev/null|grep -i powertools|cut -d' ' -f1|grep -v source)
328         @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
329         @sudo -E dnf install --skip-broken $(CONFIRM) $(RPM_DEPENDS)
330 else ifeq ($(OS_ID),centos)
331         @sudo -E yum install $(CONFIRM) centos-release-scl-rh epel-release
332         @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
333         @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
334         @sudo -E yum install $(CONFIRM) --enablerepo=base-debuginfo $(RPM_DEPENDS_DEBUG)
335 else ifeq ($(OS_ID),fedora)
336         @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
337         @sudo -E dnf install $(CONFIRM) $(RPM_DEPENDS)
338         @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
339 endif
340 else ifeq ($(filter opensuse-leap,$(OS_ID)),$(OS_ID))
341         @sudo -E zypper refresh
342         @sudo -E zypper install  -y $(RPM_SUSE_DEPENDS)
343 else
344         $(error "This option currently works only on Ubuntu, Debian, RHEL, CentOS or openSUSE-leap systems")
345 endif
346         git config commit.template .git_commit_template.txt
347
348 .PHONY: install-deps
349 install-deps: install-dep
350
351 define make
352         @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
353 endef
354
355 $(BR)/scripts/.version:
356 ifneq ("$(wildcard /etc/redhat-release)","")
357         $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version)
358 else
359         $(shell $(BR)/scripts/version > $(BR)/scripts/.version)
360 endif
361
362 DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar
363 DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-)
364
365 .PHONY: dist
366 dist:
367         @if git rev-parse 2> /dev/null ; then \
368             git archive \
369               --prefix=$(DIST_SUBDIR)/ \
370               --format=tar \
371               -o $(DIST_FILE) \
372             HEAD ; \
373             git describe --long > $(BR)/.version ; \
374         else \
375             (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \
376             src/scripts/version > $(BR)/.version ; \
377         fi
378         @tar --append \
379           --file $(DIST_FILE) \
380           --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \
381           $(BR)/.version
382         @$(RM) $(BR)/.version $(DIST_FILE).xz
383         @xz -v --threads=0 $(DIST_FILE)
384         @$(RM) $(BR)/vpp-latest.tar.xz
385         @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz
386
387 .PHONY: build
388 build: $(BR)/.deps.ok
389         $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS)))
390
391 .PHONY: wipedist
392 wipedist:
393         @$(RM) $(BR)/*.tar.xz
394
395 .PHONY: wipe
396 wipe: wipedist test-wipe $(BR)/.deps.ok
397         $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS)))
398         @find . -type f -name "*.api.json" ! -path "./src/*" -exec rm {} \;
399
400 .PHONY: rebuild
401 rebuild: wipe build
402
403 .PHONY: build-release
404 build-release: $(BR)/.deps.ok
405         $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS)))
406
407 .PHONY: wipe-release
408 wipe-release: test-wipe $(BR)/.deps.ok
409         $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS)))
410
411 .PHONY: rebuild-release
412 rebuild-release: wipe-release build-release
413
414 export TEST_DIR ?= $(WS_ROOT)/test
415
416 define test
417         $(if $(filter-out $(2),retest),make -C $(BR) PLATFORM=vpp TAG=$(1) vpp-install,)
418         $(eval libs:=lib lib64)
419         make -C test \
420           VPP_BUILD_DIR=$(BR)/build-$(1)-native/vpp \
421           VPP_BIN=$(BR)/install-$(1)-native/vpp/bin/vpp \
422           VPP_INSTALL_PATH=$(BR)/install-$(1)-native/ \
423           EXTENDED_TESTS=$(EXTENDED_TESTS) \
424           PYTHON=$(PYTHON) \
425           OS_ID=$(OS_ID) \
426           RND_SEED=$(RND_SEED) \
427           CACHE_OUTPUT=$(CACHE_OUTPUT) \
428           TAG=$(1) \
429           $(2)
430 endef
431
432 .PHONY: test
433 test:
434         $(call test,vpp,test)
435
436 .PHONY: test-debug
437 test-debug:
438         $(call test,vpp_debug,test)
439
440 .PHONY: test-gcov
441 test-gcov:
442         $(call test,vpp_gcov,test)
443
444 .PHONY: test-all
445 test-all:
446         $(eval EXTENDED_TESTS=1)
447         $(call test,vpp,test)
448
449 .PHONY: test-all-debug
450 test-all-debug:
451         $(eval EXTENDED_TESTS=1)
452         $(call test,vpp_debug,test)
453
454 .PHONY: papi-wipe
455 papi-wipe: test-wipe-papi
456         $(call banner,"This command is deprecated. Please use 'test-wipe-papi'")
457
458 .PHONY: test-wipe-papi
459 test-wipe-papi:
460         @make -C test wipe-papi
461
462 .PHONY: test-help
463 test-help:
464         @make -C test help
465
466 .PHONY: test-wipe
467 test-wipe:
468         @make -C test wipe
469
470 .PHONY: test-shell
471 test-shell:
472         $(call test,vpp,shell)
473
474 .PHONY: test-shell-debug
475 test-shell-debug:
476         $(call test,vpp_debug,shell)
477
478 .PHONY: test-shell-gcov
479 test-shell-gcov:
480         $(call test,vpp_gcov,shell)
481
482 .PHONY: test-dep
483 test-dep:
484         @make -C test test-dep
485
486 .PHONY: test-doc
487 test-doc:
488         @echo "make test-doc is DEPRECATED: use 'make docs'"
489         sleep 300
490
491 .PHONY: test-wipe-doc
492 test-wipe-doc:
493         @echo "make test-wipe-doc is DEPRECATED"
494         sleep 300
495
496 .PHONY: test-cov
497 test-cov:
498         $(eval EXTENDED_TESTS=1)
499         $(call test,vpp_gcov,cov)
500
501 .PHONY: test-wipe-cov
502 test-wipe-cov:
503         @make -C test wipe-cov
504
505 .PHONY: test-wipe-all
506 test-wipe-all:
507         @make -C test wipe-all
508
509 .PHONY: test-checkstyle
510 test-checkstyle:
511         @make -C test checkstyle
512
513 .PHONY: test-checkstyle-diff
514 test-checkstyle-diff:
515         @make -C test checkstyle-diff
516
517 .PHONY: test-refresh-deps
518 test-refresh-deps:
519         @make -C test refresh-deps
520
521 .PHONY: retest
522 retest:
523         $(call test,vpp,retest)
524
525 .PHONY: retest-debug
526 retest-debug:
527         $(call test,vpp_debug,retest)
528
529 .PHONY: retest-all
530 retest-all:
531         $(eval EXTENDED_TESTS=1)
532         $(call test,vpp,retest)
533
534 .PHONY: retest-all-debug
535 retest-all-debug:
536         $(eval EXTENDED_TESTS=1)
537         $(call test,vpp_debug,retest)
538
539 .PHONY: test-start-vpp-in-gdb
540 test-start-vpp-in-gdb:
541         $(call test,vpp,start-gdb)
542
543 .PHONY: test-start-vpp-debug-in-gdb
544 test-start-vpp-debug-in-gdb:
545         $(call test,vpp_debug,start-gdb)
546
547 ifeq ("$(wildcard $(STARTUP_CONF))","")
548 define run
549         @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
550         @echo "         Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
551         @cd $(STARTUP_DIR) && \
552           $(SUDO) $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF)
553 endef
554 else
555 define run
556         @cd $(STARTUP_DIR) && \
557           $(SUDO) $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//')
558 endef
559 endif
560
561 %.files: .FORCE
562         @find src -name '*.[chS]' > $@
563
564 .FORCE:
565
566 .PHONY: run
567 run:
568         $(call run, $(BR)/install-$(PLATFORM)_debug-native)
569
570 .PHONY: run-release
571 run-release:
572         $(call run, $(BR)/install-$(PLATFORM)-native)
573
574 .PHONY: debug
575 debug:
576         $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
577
578 .PHONY: build-coverity
579 build-coverity:
580         $(call make,$(PLATFORM)_coverity,install-packages)
581         @make -C build-root PLATFORM=vpp TAG=vpp_coverity libmemif-install
582
583 .PHONY: debug-release
584 debug-release:
585         $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
586
587 .PHONY: build-vat
588 build-vat:
589         $(call make,$(PLATFORM)_debug,vpp-api-test-install)
590
591 .PHONY: run-vat
592 run-vat:
593         @$(SUDO) $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test
594
595 .PHONY: pkg-deb
596 pkg-deb:
597         $(call make,$(PLATFORM),vpp-package-deb)
598
599 .PHONY: pkg-snap
600 pkg-snap:
601         cd extras/snap ;                        \
602         ./prep ;                                \
603         SNAPCRAFT_BUILD_ENVIRONMENT_MEMORY=8G   \
604         SNAPCRAFT_BUILD_ENVIRONMENT_CPU=6       \
605         snapcraft --debug
606
607 .PHONY: snap-clean
608 snap-clean:
609         cd extras/snap ;                        \
610         snapcraft clean ;                       \
611         rm -f *.snap *.tgz
612
613 .PHONY: pkg-deb-debug
614 pkg-deb-debug:
615         $(call make,$(PLATFORM)_debug,vpp-package-deb)
616
617 .PHONY: pkg-rpm
618 pkg-rpm: dist
619         make -C extras/rpm
620
621 .PHONY: pkg-srpm
622 pkg-srpm: dist
623         make -C extras/rpm srpm
624
625 .PHONY: install-ext-deps
626 install-ext-deps:
627         make -C build/external install-$(PKG)
628
629 .PHONY: install-ext-dep
630 install-ext-dep: install-ext-deps
631
632 .PHONY: json-api-files
633 json-api-files:
634         $(WS_ROOT)/src/tools/vppapigen/generate_json.py
635
636 .PHONY: json-api-files-debug
637 json-api-files-debug:
638         $(WS_ROOT)/src/tools/vppapigen/generate_json.py --debug-target
639
640 .PHONY: go-api-files
641 go-api-files: json-api-files
642         $(WS_ROOT)/src/tools/vppapigen/generate_go.py
643
644 .PHONY: ctags
645 ctags: ctags.files
646         @ctags --totals --tag-relative=yes -L $<
647         @rm $<
648
649 .PHONY: gtags
650 gtags: ctags
651         @gtags --gtagslabel=ctags
652
653 .PHONY: cscope
654 cscope: cscope.files
655         @cscope -b -q -v
656
657 .PHONY: compdb
658 compdb:
659         @ninja -C build-root/build-vpp_debug-native/vpp build.ninja
660         @ninja -C build-root/build-vpp_debug-native/vpp -t compdb | \
661           src/scripts/compdb_cleanup.py > compile_commands.json
662
663 .PHONY: checkstyle
664 checkstyle: checkfeaturelist
665         @extras/scripts/checkstyle.sh
666
667 .PHONY: checkstyle-commit
668 checkstyle-commit:
669         @extras/scripts/check_commit_msg.sh
670
671 .PHONY: checkstyle-test
672 checkstyle-test: test-checkstyle
673
674 .PHONY: checkstyle-all
675 checkstyle-all: checkstyle-commit checkstyle checkstyle-test
676
677 .PHONY: fixstyle
678 fixstyle:
679         @extras/scripts/checkstyle.sh --fix
680
681 .PHONY: checkstyle-api
682 checkstyle-api:
683         @extras/scripts/crcchecker.py --check-patchset
684
685 # necessary because Bug 1696324 - Update to python3.6 breaks PyYAML dependencies
686 # Status:       CLOSED CANTFIX
687 # https://bugzilla.redhat.com/show_bug.cgi?id=1696324
688 .PHONY: centos-pyyaml
689 centos-pyyaml:
690 ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
691         @sudo -E yum install $(CONFIRM) python3-pyyaml
692 endif
693
694 .PHONY: featurelist
695 featurelist: centos-pyyaml
696         @extras/scripts/fts.py --all --markdown
697
698 .PHONY: checkfeaturelist
699 checkfeaturelist: centos-pyyaml
700         @extras/scripts/fts.py --validate --all
701
702 #
703 # Build the documentation
704 #
705
706 .PHONY: bootstrap-doxygen
707 bootstrap-doxygen:
708         @echo "make bootstrap-doxygen is DEPRECATED"
709         sleep 300
710
711 .PHONY: doxygen
712 doxygen: docs
713         @echo "make doxygen is DEPRECATED: use 'make docs'"
714         sleep 300
715
716 .PHONY: wipe-doxygen
717 wipe-doxygen:
718         @echo "make wipe-doxygen is DEPRECATED"
719         sleep 300
720
721 .PHONY: docs-%
722 docs-%:
723         @make -C $(WS_ROOT)/docs $*
724
725 .PHONY: docs
726 docs:
727         @make -C $(WS_ROOT)/docs docs
728
729 .PHONY: pkg-verify
730 pkg-verify: install-dep $(BR)/.deps.ok install-ext-deps
731         $(call banner,"Building for PLATFORM=vpp using gcc")
732         @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
733         $(call banner,"Building sample-plugin")
734         @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install
735         $(call banner,"Building libmemif")
736         @make -C build-root PLATFORM=vpp TAG=vpp libmemif-install
737         $(call banner,"Building $(PKG) packages")
738         @make pkg-$(PKG)
739
740 MAKE_VERIFY_GATE_OS ?= ubuntu-20.04
741 .PHONY: verify
742 verify: pkg-verify
743 ifeq ($(OS_ID)-$(OS_VERSION_ID),$(MAKE_VERIFY_GATE_OS))
744         $(call banner,"Testing vppapigen")
745         @src/tools/vppapigen/test_vppapigen.py
746         $(call banner,"Running tests")
747         @make COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test
748 else
749         $(call banner,"Skipping tests. Tests under 'make verify' supported on $(MAKE_VERIFY_GATE_OS)")
750 endif