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