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