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:
6 # http://www.apache.org/licenses/LICENSE-2.0
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.
14 export WS_ROOT=$(CURDIR)
15 export BR=$(WS_ROOT)/build-root
16 CCACHE_DIR?=$(BR)/.ccache
21 MACHINE=$(shell uname -m)
26 define disable_plugins
29 $(patsubst %,"plugin %_plugin.so { disable }",$(subst $(,), ,$(1))) \
34 MINIMAL_STARTUP_CONF=" \
37 cli-listen /run/vpp/cli.sock \
39 $(if $(wildcard startup.vpp),"exec startup.vpp",) \
41 $(if $(DPDK_CONFIG), "dpdk { $(DPDK_CONFIG) }",) \
42 $(call disable_plugins,$(DISABLED_PLUGINS)) \
45 GDB_ARGS= -ex "handle SIGUSR1 noprint nostop"
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')
56 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
58 else ifeq ($(filter rhel centos fedora opensuse opensuse-leap opensuse-tumbleweed,$(OS_ID)),$(OS_ID))
62 # +libganglia1-dev if building the gmond plugin
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
75 LIBFFI=libffi6 # works on all but 20.04
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)
86 else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
87 DEB_DEPENDS += libssl-dev
88 DEB_DEPENDS += python-dev python-all python-pip python-virtualenv
89 APT_ARGS = -t jessie-backports
90 else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-9)
91 DEB_DEPENDS += libssl1.0-dev
92 DEB_DEPENDS += python-all python-pip
93 DEB_DEPENDS += python-dev python-all python-pip python-virtualenv
94 else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-10)
95 DEB_DEPENDS += libelf-dev # for libbpf (af_xdp)
97 DEB_DEPENDS += libssl-dev
100 DEB_DEPENDS += $(LIBFFI)
102 RPM_DEPENDS = redhat-lsb glibc-static
103 RPM_DEPENDS += apr-devel
104 RPM_DEPENDS += numactl-devel
105 RPM_DEPENDS += check check-devel
106 RPM_DEPENDS += boost boost-devel
107 RPM_DEPENDS += selinux-policy selinux-policy-devel
108 RPM_DEPENDS += ninja-build
109 RPM_DEPENDS += libuuid-devel
110 RPM_DEPENDS += mbedtls-devel
111 RPM_DEPENDS += ccache
113 RPM_DEPENDS += elfutils-libelf-devel
115 ifeq ($(OS_ID),fedora)
116 RPM_DEPENDS += dnf-utils
117 RPM_DEPENDS += subunit subunit-devel
118 RPM_DEPENDS += compat-openssl10-devel
119 RPM_DEPENDS += python3-devel # needed for python3 -m pip install psutil
120 RPM_DEPENDS += python3-ply # for vppapigen
121 RPM_DEPENDS += python3-virtualenv python3-jsonschema
123 RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
124 else ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
125 RPM_DEPENDS += yum-utils
126 RPM_DEPENDS += compat-openssl10
127 RPM_DEPENDS += python2-devel python36-devel python3-ply
128 RPM_DEPENDS += python3-virtualenv python3-jsonschema
130 RPM_DEPENDS_GROUPS = 'Development Tools'
132 RPM_DEPENDS += yum-utils
133 RPM_DEPENDS += openssl-devel
134 RPM_DEPENDS += python36-ply # for vppapigen
135 RPM_DEPENDS += python3-devel python3-pip
136 RPM_DEPENDS += python-virtualenv python36-jsonschema
137 RPM_DEPENDS += devtoolset-9 devtoolset-9-libasan-devel
138 RPM_DEPENDS += cmake3
139 RPM_DEPENDS_GROUPS = 'Development Tools'
142 # +ganglia-devel if building the ganglia plugin
144 RPM_DEPENDS += chrpath libffi-devel rpm-build
146 RPM_DEPENDS_DEBUG = glibc-debuginfo e2fsprogs-debuginfo
147 RPM_DEPENDS_DEBUG += krb5-debuginfo openssl-debuginfo
148 RPM_DEPENDS_DEBUG += zlib-debuginfo nss-softokn-debuginfo
149 RPM_DEPENDS_DEBUG += yum-plugin-auto-update-debug-info
150 # lowercase- replace spaces with dashes.
151 SUSE_NAME= $(shell grep '^NAME=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g' | sed -e 's/ /-/' | awk '{print tolower($$0)}')
152 SUSE_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g' | cut -d' ' -f2)
153 RPM_SUSE_BUILDTOOLS_DEPS = autoconf automake ccache check-devel chrpath
154 RPM_SUSE_BUILDTOOLS_DEPS += clang cmake indent libtool make ninja python3-ply
156 RPM_SUSE_DEVEL_DEPS = glibc-devel-static libnuma-devel
157 RPM_SUSE_DEVEL_DEPS += libopenssl-devel openssl-devel mbedtls-devel libuuid-devel
159 RPM_SUSE_PYTHON_DEPS = python-devel python3-devel python-pip python3-pip
160 RPM_SUSE_PYTHON_DEPS += python-rpm-macros python3-rpm-macros
162 RPM_SUSE_PLATFORM_DEPS = distribution-release shadow rpm-build
164 ifeq ($(OS_ID),opensuse)
165 ifeq ($(SUSE_NAME),tumbleweed)
166 RPM_SUSE_DEVEL_DEPS = libboost_headers1_68_0-devel-1.68.0 libboost_thread1_68_0-devel-1.68.0 gcc
167 RPM_SUSE_PYTHON_DEPS += python3-ply python2-virtualenv
169 ifeq ($(SUSE_ID),15.0)
170 RPM_SUSE_DEVEL_DEPS += libboost_headers-devel libboost_thread-devel gcc
171 RPM_SUSE_PYTHON_DEPS += python3-ply python2-virtualenv
173 RPM_SUSE_DEVEL_DEPS += libboost_headers1_68_0-devel-1.68.0 gcc6
174 RPM_SUSE_PYTHON_DEPS += python-virtualenv
178 ifeq ($(OS_ID),opensuse-leap)
179 ifeq ($(SUSE_ID),15.0)
180 RPM_SUSE_DEVEL_DEPS += libboost_headers-devel libboost_thread-devel gcc git curl
181 RPM_SUSE_PYTHON_DEPS += python3-ply python2-virtualenv
185 RPM_SUSE_DEPENDS += $(RPM_SUSE_BUILDTOOLS_DEPS) $(RPM_SUSE_DEVEL_DEPS) $(RPM_SUSE_PYTHON_DEPS) $(RPM_SUSE_PLATFORM_DEPS)
187 ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
188 STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
191 ifeq ($(findstring y,$(UNATTENDED)),y)
198 ifneq ($(SAMPLE_PLUGIN),no)
199 TARGETS += sample-plugin
203 @echo "========================================================================"
205 @echo "========================================================================"
211 @echo "Make Targets:"
212 @echo " install-dep[s] - install software dependencies"
213 @echo " wipe - wipe all products of debug build "
214 @echo " wipe-release - wipe all products of release build "
215 @echo " build - build debug binaries"
216 @echo " build-release - build release binaries"
217 @echo " build-coverity - build coverity artifacts"
218 @echo " rebuild - wipe and build debug binaries"
219 @echo " rebuild-release - wipe and build release binaries"
220 @echo " run - run debug binary"
221 @echo " run-release - run release binary"
222 @echo " debug - run debug binary with debugger"
223 @echo " debug-release - run release binary with debugger"
224 @echo " test - build and run tests"
225 @echo " test-help - show help on test framework"
226 @echo " run-vat - run vpp-api-test tool"
227 @echo " pkg-deb - build DEB packages"
228 @echo " pkg-deb-debug - build DEB debug packages"
229 @echo " pkg-snap - build SNAP package"
230 @echo " snap-clean - clean up snap build environment"
231 @echo " vom-pkg-deb - build vom DEB packages"
232 @echo " vom-pkg-deb-debug - build vom DEB debug packages"
233 @echo " pkg-rpm - build RPM packages"
234 @echo " install-ext-dep[s] - install external development dependencies"
235 @echo " ctags - (re)generate ctags database"
236 @echo " gtags - (re)generate gtags database"
237 @echo " cscope - (re)generate cscope database"
238 @echo " compdb - (re)generate compile_commands.json"
239 @echo " checkstyle - check coding style"
240 @echo " checkstyle-commit - check commit message format"
241 @echo " checkstyle-test - check test framework coding style"
242 @echo " checkstyle-api - check api for incompatible changes"
243 @echo " fixstyle - fix coding style"
244 @echo " doxygen - (re)generate documentation"
245 @echo " bootstrap-doxygen - setup Doxygen dependencies"
246 @echo " wipe-doxygen - wipe all generated documentation"
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 " docs - Build the Sphinx documentation"
252 @echo " docs-venv - Build the virtual environment for the Sphinx docs"
253 @echo " docs-clean - Remove the generated files from the Sphinx docs"
255 @echo "Make Arguments:"
256 @echo " V=[0|1] - set build verbosity level"
257 @echo " STARTUP_CONF=<path> - startup configuration file"
258 @echo " (e.g. /etc/vpp/startup.conf)"
259 @echo " STARTUP_DIR=<path> - startup directory (e.g. /etc/vpp)"
260 @echo " It also sets STARTUP_CONF if"
261 @echo " startup.conf file is present"
262 @echo " GDB=<path> - gdb binary to use for debugging"
263 @echo " PLATFORM=<name> - target platform. default is vpp"
264 @echo " TEST=<filter> - apply filter to test set, see test-help"
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"
272 @echo "Current Argument Values:"
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)"
284 ifeq ($(findstring y,$(UNATTENDED)),y)
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" ; \
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") ; \
300 if [ -n "$$MISSING" ] ; then \
301 echo "Please install missing RPMs: \n$$MISSING\n" ; \
302 echo "by executing \"make install-dep\"\n" ; \
311 @echo "'make bootstrap' is not needed anymore"
315 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
316 ifeq ($(OS_VERSION_ID),14.04)
317 @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common
319 ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
320 @grep -q jessie-backports /etc/apt/sources.list /etc/apt/sources.list.d/* 2> /dev/null \
321 || ( echo "Please install jessie-backports" ; exit 1 )
323 @sudo -E apt-get update
324 @sudo -E apt-get $(APT_ARGS) $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
325 else ifneq ("$(wildcard /etc/redhat-release)","")
327 @sudo -E yum-config-manager --enable rhel-server-rhscl-7-rpms
328 @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
329 @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
330 @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
331 else ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
332 @sudo -E dnf install $(CONFIRM) epel-release
333 @sudo -E dnf config-manager --set-enabled PowerTools
334 @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
335 @sudo -E dnf install $(CONFIRM) $(RPM_DEPENDS)
336 else ifeq ($(OS_ID),centos)
337 @sudo -E yum install $(CONFIRM) centos-release-scl-rh epel-release
338 @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
339 @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
340 @sudo -E yum install $(CONFIRM) --enablerepo=base-debuginfo $(RPM_DEPENDS_DEBUG)
341 else ifeq ($(OS_ID),fedora)
342 @sudo -E dnf groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
343 @sudo -E dnf install $(CONFIRM) $(RPM_DEPENDS)
344 @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs mbedtls-devel zlib
346 else ifeq ($(filter opensuse-tumbleweed,$(OS_ID)),$(OS_ID))
347 @sudo -E zypper refresh
348 @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
349 else ifeq ($(filter opensuse-leap,$(OS_ID)),$(OS_ID))
350 @sudo -E zypper refresh
351 @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
352 else ifeq ($(filter opensuse,$(OS_ID)),$(OS_ID))
353 @sudo -E zypper refresh
354 @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
356 $(error "This option currently works only on Ubuntu, Debian, RHEL, CentOS or openSUSE systems")
358 git config commit.template .git_commit_template.txt
361 install-deps: install-dep
364 @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
367 $(BR)/scripts/.version:
368 ifneq ("$(wildcard /etc/redhat-release)","")
369 $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version)
371 $(shell $(BR)/scripts/version > $(BR)/scripts/.version)
374 DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar
375 DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-)
379 @if git rev-parse 2> /dev/null ; then \
381 --prefix=$(DIST_SUBDIR)/ \
385 git describe > $(BR)/.version ; \
387 (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \
388 src/scripts/version > $(BR)/.version ; \
391 --file $(DIST_FILE) \
392 --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \
394 @$(RM) $(BR)/.version $(DIST_FILE).xz
395 @xz -v --threads=0 $(DIST_FILE)
396 @$(RM) $(BR)/vpp-latest.tar.xz
397 @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz
400 build: $(BR)/.deps.ok
401 $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS)))
405 @$(RM) $(BR)/*.tar.xz
408 wipe: wipedist test-wipe $(BR)/.deps.ok
409 $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS)))
410 @find . -type f -name "*.api.json" ! -path "./test/*" -exec rm {} \;
415 .PHONY: build-release
416 build-release: $(BR)/.deps.ok
417 $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS)))
420 wipe-release: test-wipe $(BR)/.deps.ok
421 $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS)))
423 .PHONY: rebuild-release
424 rebuild-release: wipe-release build-release
426 libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3)))
428 export TEST_DIR ?= $(WS_ROOT)/test
429 export RND_SEED ?= $(shell python3 -c 'import time; print(time.time())')
432 $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install,)
433 $(eval libs:=lib lib64)
435 VPP_BUILD_DIR=$(BR)/build-$(2)-native \
436 VPP_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
437 VPP_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_plugins) \
438 VPP_TEST_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_api_test_plugins) \
439 VPP_INSTALL_PATH=$(BR)/install-$(2)-native/ \
440 LD_LIBRARY_PATH=$(call libexpand,$(libs),$(2),) \
441 EXTENDED_TESTS=$(EXTENDED_TESTS) \
444 RND_SEED=$(RND_SEED) \
445 CACHE_OUTPUT=$(CACHE_OUTPUT) \
451 $(call test,vpp,vpp,test)
455 $(call test,vpp,vpp_debug,test)
459 $(call test,vpp,vpp_gcov,test)
463 $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=vpp TAG=vpp vom-install,)
464 $(eval EXTENDED_TESTS=yes)
465 $(call test,vpp,vpp,test)
467 .PHONY: test-all-debug
469 $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=vpp TAG=vpp_debug vom-install,)
470 $(eval EXTENDED_TESTS=yes)
471 $(call test,vpp,vpp_debug,test)
474 papi-wipe: test-wipe-papi
475 $(call banner,"This command is deprecated. Please use 'test-wipe-papi'")
477 .PHONY: test-wipe-papi
479 @make -C test wipe-papi
491 $(call test,vpp,vpp,shell)
493 .PHONY: test-shell-debug
495 $(call test,vpp,vpp_debug,shell)
497 .PHONY: test-shell-gcov
499 $(call test,vpp,vpp_gcov,shell)
503 @make -C test test-dep
509 .PHONY: test-wipe-doc
511 @make -C test wipe-doc
515 @make -C $(BR) PLATFORM=vpp TAG=vpp_gcov vom-install
516 $(eval EXTENDED_TESTS=yes)
517 $(call test,vpp,vpp_gcov,cov)
519 .PHONY: test-wipe-cov
521 @make -C test wipe-cov
523 .PHONY: test-wipe-all
525 @make -C test wipe-all
527 .PHONY: test-checkstyle
529 @make -C test checkstyle
531 .PHONY: test-refresh-deps
533 @make -C test refresh-deps
537 $(call test,vpp,vpp,retest)
541 $(call test,vpp,vpp_debug,retest)
545 $(eval EXTENDED_TESTS=yes)
546 $(call test,vpp,vpp,retest)
548 .PHONY: retest-all-debug
550 $(eval EXTENDED_TESTS=yes)
551 $(call test,vpp,vpp_debug,retest)
553 ifeq ("$(wildcard $(STARTUP_CONF))","")
555 @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
556 @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
557 @cd $(STARTUP_DIR) && \
558 $(SUDO) $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF)
562 @cd $(STARTUP_DIR) && \
563 $(SUDO) $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//')
568 @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
569 \( -not -path './build-root*' -o -path \
570 './build-root/build-vpp_debug-native/dpdk*' \) > $@
576 $(call run, $(BR)/install-$(PLATFORM)_debug-native)
580 $(call run, $(BR)/install-$(PLATFORM)-native)
584 $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
586 .PHONY: build-coverity
588 $(call make,$(PLATFORM)_coverity,install-packages)
590 .PHONY: debug-release
592 $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
596 $(call make,$(PLATFORM)_debug,vpp-api-test-install)
600 @$(SUDO) $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test
604 $(call make,$(PLATFORM),vpp-package-deb)
610 SNAPCRAFT_BUILD_ENVIRONMENT_MEMORY=8G \
611 SNAPCRAFT_BUILD_ENVIRONMENT_CPU=6 \
622 $(call make,$(PLATFORM),vom-package-deb)
624 .PHONY: pkg-deb-debug
626 $(call make,$(PLATFORM)_debug,vpp-package-deb)
628 .PHONY: vom-pkg-deb-debug
629 vom-pkg-deb-debug: pkg-deb-debug
630 $(call make,$(PLATFORM)_debug,vom-package-deb)
638 make -C extras/rpm srpm
640 .PHONY: dpdk-install-dev
642 $(call banner,"This command is deprecated. Please use 'make install-ext-deps'")
643 make -C build/external install-$(PKG)
645 .PHONY: install-ext-deps
647 make -C build/external install-$(PKG)
649 .PHONY: install-ext-dep
650 install-ext-dep: install-ext-deps
652 .PHONY: json-api-files
654 $(WS_ROOT)/src/tools/vppapigen/generate_json.py
656 .PHONY: json-api-files-debug
657 json-api-files-debug:
658 $(WS_ROOT)/src/tools/vppapigen/generate_json.py --debug-target
662 @ctags --totals --tag-relative -L $<
667 @gtags --gtagslabel=ctags
675 @ninja -C build-root/build-vpp_debug-native/vpp -t compdb > compile_commands.json
678 checkstyle: checkfeaturelist
679 @build-root/scripts/checkstyle.sh
681 .PHONY: checkstyle-commit
683 @extras/scripts/check_commit_msg.sh
685 .PHONY: checkstyle-test
686 checkstyle-test: test-checkstyle
688 .PHONY: checkstyle-all
689 checkstyle-all: checkstyle-commit checkstyle checkstyle-test
693 @build-root/scripts/checkstyle.sh --fix
695 .PHONY: checkstyle-api
697 @extras/scripts/crcchecker.py --check-patch
699 # necessary because Bug 1696324 - Update to python3.6 breaks PyYAML dependencies
700 # Status: CLOSED CANTFIX
701 # https://bugzilla.redhat.com/show_bug.cgi?id=1696324
702 .PHONY: centos-pyyaml
704 ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-7)
705 @python3 -m pip install pyyaml
707 ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
708 @sudo -E yum install $(CONFIRM) python3-pyyaml
712 featurelist: centos-pyyaml
713 @build-root/scripts/fts.py --all --markdown
715 .PHONY: checkfeaturelist
716 checkfeaturelist: centos-pyyaml
717 @build-root/scripts/fts.py --validate --all
720 # Build the documentation
723 # Doxygen configuration and our utility scripts
724 export DOXY_DIR ?= $(WS_ROOT)/doxygen
727 @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@
730 .PHONY: bootstrap-doxygen
735 doxygen: bootstrap-doxygen
743 export DOCS_DIR = $(WS_ROOT)/docs
744 export VENV_DIR = $(WS_ROOT)/sphinx_venv
745 export SPHINX_SCRIPTS_DIR = $(WS_ROOT)/docs/scripts
749 @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh venv)
753 @($(SPHINX_SCRIPTS_DIR)/sphinx-make.sh html)
757 @rm -rf $(DOCS_DIR)/_build
761 pkg-verify: install-dep $(BR)/.deps.ok install-ext-deps
762 $(call banner,"Building for PLATFORM=vpp using gcc")
763 @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
764 $(call banner,"Building sample-plugin")
765 @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install
766 $(call banner,"Building libmemif")
767 @make -C build-root PLATFORM=vpp TAG=vpp libmemif-install
768 $(call banner,"Building VOM")
769 @make -C build-root PLATFORM=vpp TAG=vpp vom-install
770 $(call banner,"Building $(PKG) packages")
772 ifeq ($(OS_ID),ubuntu)
773 $(call banner,"Building VOM $(PKG) package")
777 MAKE_VERIFY_GATE_OS ?= ubuntu-18.04
780 ifeq ($(OS_ID)-$(OS_VERSION_ID),$(MAKE_VERIFY_GATE_OS))
781 $(call banner,"Testing vppapigen")
782 @src/tools/vppapigen/test_vppapigen.py
783 $(call banner,"Running tests")
784 @make COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test
786 $(call banner,"Skipping tests. Tests under 'make verify' supported on $(MAKE_VERIFY_GATE_OS)")