VPPAPIGEN: Improve output module finding for out-of-tree builds.
[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 MACHINE=$(shell uname -m)
21
22 ,:=,
23 define disable_plugins
24 $(if $(1), \
25   "plugins {" \
26   $(patsubst %,"plugin %_plugin.so { disable }",$(subst $(,), ,$(1))) \
27   " }" \
28   ,)
29 endef
30
31 MINIMAL_STARTUP_CONF="                                                  \
32 unix {                                                                  \
33         interactive                                                     \
34         cli-listen /run/vpp/cli.sock                                    \
35         gid $(shell id -g)                                              \
36         $(if $(wildcard startup.vpp),"exec startup.vpp",)               \
37 }                                                                       \
38 $(if $(DPDK_CONFIG), "dpdk { $(DPDK_CONFIG) }",)                        \
39 $(call disable_plugins,$(DISABLED_PLUGINS))                             \
40 "
41
42 GDB_ARGS= -ex "handle SIGUSR1 noprint nostop"
43
44 #
45 # OS Detection
46 #
47 # We allow Darwin (MacOS) for docs generation; VPP build will still fail.
48 ifneq ($(shell uname),Darwin)
49 OS_ID        = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
50 OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
51 endif
52
53 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
54 PKG=deb
55 else ifeq ($(filter rhel centos fedora opensuse,$(OS_ID)),$(OS_ID))
56 PKG=rpm
57 endif
58
59 # +libganglia1-dev if building the gmond plugin
60
61 DEB_DEPENDS  = curl build-essential autoconf automake ccache
62 DEB_DEPENDS += debhelper dkms git libtool libapr1-dev dh-systemd
63 DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope pkg-config
64 DEB_DEPENDS += lcov chrpath autoconf indent clang-format libnuma-dev
65 DEB_DEPENDS += python-all python-dev python-virtualenv python-pip libffi6 check
66 DEB_DEPENDS += libboost-all-dev libffi-dev python-ply libmbedtls-dev
67 ifeq ($(OS_VERSION_ID),14.04)
68         DEB_DEPENDS += openjdk-8-jdk-headless
69         DEB_DEPENDS += libssl-dev
70 else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
71         DEB_DEPENDS += openjdk-8-jdk-headless
72         DEB_DEPENDS += libssl-dev
73         APT_ARGS = -t jessie-backports
74 else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-9)
75         DEB_DEPENDS += default-jdk-headless
76         DEB_DEPENDS += libssl1.0-dev
77 else 
78         DEB_DEPENDS += default-jdk-headless
79         DEB_DEPENDS += libssl-dev
80 endif
81
82 RPM_DEPENDS  = redhat-lsb glibc-static java-1.8.0-openjdk-devel yum-utils
83 RPM_DEPENDS += apr-devel
84 RPM_DEPENDS += numactl-devel
85 RPM_DEPENDS += check check-devel
86 RPM_DEPENDS += boost boost-devel
87 RPM_DEPENDS += subunit subunit-devel
88 RPM_DEPENDS += selinux-policy selinux-policy-devel
89 RPM_DEPENDS += mbedtls-devel
90
91 ifeq ($(OS_ID)-$(OS_VERSION_ID),fedora-25)
92         RPM_DEPENDS += openssl-devel
93         RPM_DEPENDS += python-devel python2-ply
94         RPM_DEPENDS += python2-virtualenv
95         RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
96 else ifeq ($(shell if [ "$(OS_ID)" = "fedora" ]; then test $(OS_VERSION_ID) -gt 25; echo $$?; fi),0)
97         RPM_DEPENDS += compat-openssl10-devel
98         RPM_DEPENDS += python2-devel python2-ply
99         RPM_DEPENDS += python2-virtualenv
100         RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
101 else
102         RPM_DEPENDS += openssl-devel
103         RPM_DEPENDS += python-devel python-ply
104         RPM_DEPENDS += python-virtualenv
105         RPM_DEPENDS_GROUPS = 'Development Tools'
106 endif
107
108 # +ganglia-devel if building the ganglia plugin
109
110 RPM_DEPENDS += chrpath libffi-devel rpm-build
111
112 SUSE_NAME= $(shell grep '^NAME=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g' | cut -d' ' -f2)
113 RPM_SUSE_BUILDTOOLS_DEPS = autoconf automake ccache check-devel chrpath
114 RPM_SUSE_BUILDTOOLS_DEPS += clang indent libtool make python-ply
115
116 RPM_SUSE_DEVEL_DEPS = glibc-devel-static java-1_8_0-openjdk-devel libnuma-devel
117 RPM_SUSE_DEVEL_DEPS += libopenssl-devel openssl-devel mbedtls-devel
118
119 RPM_SUSE_PYTHON_DEPS = python-devel python3-devel python-pip python3-pip
120 RPM_SUSE_PYTHON_DEPS += python-rpm-macros python3-rpm-macros
121
122 RPM_SUSE_PLATFORM_DEPS = distribution-release shadow rpm-build
123
124 ifeq ($(OS_ID),opensuse)
125 ifneq ($(SUSE_NAME),Tumbleweed)
126         RPM_SUSE_DEVEL_DEPS += boost_1_61-devel gcc6
127         RPM_SUSE_PYTHON_DEPS += python-virtualenv
128 else
129         RPM_SUSE_DEVEL_DEPS = libboost_headers-devel libboost_thread-devel gcc
130         RPM_SUSE_PYTHON_DEPS += python2-virtualenv
131 endif
132 endif
133
134 RPM_SUSE_DEPENDS += $(RPM_SUSE_BUILDTOOLS_DEPS) $(RPM_SUSE_DEVEL_DEPS) $(RPM_SUSE_PYTHON_DEPS) $(RPM_SUSE_PLATFORM_DEPS)
135
136 ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
137         STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
138 endif
139
140 ifeq ($(findstring y,$(UNATTENDED)),y)
141 CONFIRM=-y
142 FORCE=--force-yes
143 endif
144
145 TARGETS = vpp
146
147 ifneq ($(SAMPLE_PLUGIN),no)
148 TARGETS += sample-plugin
149 endif
150
151 .PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release
152 .PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
153 .PHONY: ctags cscope
154 .PHONY: test test-debug retest retest-debug test-doc test-wipe-doc test-help test-wipe
155 .PHONY: test-cov test-wipe-cov
156
157 help:
158         @echo "Make Targets:"
159         @echo " bootstrap           - prepare tree for build"
160         @echo " install-dep         - install software dependencies"
161         @echo " wipe                - wipe all products of debug build "
162         @echo " wipe-release        - wipe all products of release build "
163         @echo " build               - build debug binaries"
164         @echo " build-release       - build release binaries"
165         @echo " build-coverity      - build coverity artifacts"
166         @echo " rebuild             - wipe and build debug binares"
167         @echo " rebuild-release     - wipe and build release binares"
168         @echo " run                 - run debug binary"
169         @echo " run-release         - run release binary"
170         @echo " debug               - run debug binary with debugger"
171         @echo " debug-release       - run release binary with debugger"
172         @echo " test                - build and run (basic) functional tests"
173         @echo " test-debug          - build and run (basic) functional tests (debug build)"
174         @echo " test-all            - build and run (all) functional tests"
175         @echo " test-all-debug      - build and run (all) functional tests (debug build)"
176         @echo " test-shell          - enter shell with test environment"
177         @echo " test-shell-debug    - enter shell with test environment (debug build)"
178         @echo " test-wipe           - wipe files generated by unit tests"
179         @echo " retest              - run functional tests"
180         @echo " retest-debug        - run functional tests (debug build)"
181         @echo " test-help           - show help on test framework"
182         @echo " run-vat             - run vpp-api-test tool"
183         @echo " pkg-deb             - build DEB packages"
184         @echo " pkg-rpm             - build RPM packages"
185         @echo " dpdk-install-dev    - install DPDK development packages"
186         @echo " ctags               - (re)generate ctags database"
187         @echo " gtags               - (re)generate gtags database"
188         @echo " cscope              - (re)generate cscope database"
189         @echo " checkstyle          - check coding style"
190         @echo " fixstyle            - fix coding style"
191         @echo " doxygen             - (re)generate documentation"
192         @echo " bootstrap-doxygen   - setup Doxygen dependencies"
193         @echo " wipe-doxygen        - wipe all generated documentation"
194         @echo " test-doc            - generate documentation for test framework"
195         @echo " test-wipe-doc       - wipe documentation for test framework"
196         @echo " test-cov            - generate code coverage report for test framework"
197         @echo " test-wipe-cov       - wipe code coverage report for test framework"
198         @echo " test-checkstyle     - check PEP8 compliance for test framework"
199         @echo ""
200         @echo "Make Arguments:"
201         @echo " V=[0|1]                  - set build verbosity level"
202         @echo " STARTUP_CONF=<path>      - startup configuration file"
203         @echo "                            (e.g. /etc/vpp/startup.conf)"
204         @echo " STARTUP_DIR=<path>       - startup drectory (e.g. /etc/vpp)"
205         @echo "                            It also sets STARTUP_CONF if"
206         @echo "                            startup.conf file is present"
207         @echo " GDB=<path>               - gdb binary to use for debugging"
208         @echo " PLATFORM=<name>          - target platform. default is vpp"
209         @echo " TEST=<filter>            - apply filter to test set, see test-help"
210         @echo " DPDK_CONFIG=<conf>       - add specified dpdk config commands to"
211         @echo "                            autogenerated startup.conf"
212         @echo "                            (e.g. \"no-pci\" )"
213         @echo " SAMPLE_PLUGIN=yes        - in addition build/run/debug sample plugin"
214         @echo " DISABLED_PLUGINS=<list>  - comma separated list of plugins which"
215         @echo "                            should not be loaded"
216         @echo ""
217         @echo "Current Argument Values:"
218         @echo " V                 = $(V)"
219         @echo " STARTUP_CONF      = $(STARTUP_CONF)"
220         @echo " STARTUP_DIR       = $(STARTUP_DIR)"
221         @echo " GDB               = $(GDB)"
222         @echo " PLATFORM          = $(PLATFORM)"
223         @echo " DPDK_VERSION      = $(DPDK_VERSION)"
224         @echo " DPDK_CONFIG       = $(DPDK_CONFIG)"
225         @echo " SAMPLE_PLUGIN     = $(SAMPLE_PLUGIN)"
226         @echo " DISABLED_PLUGINS  = $(DISABLED_PLUGINS)"
227
228 $(BR)/.bootstrap.ok:
229 ifeq ($(findstring y,$(UNATTENDED)),y)
230         make install-dep
231 endif
232 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
233         @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
234         if [ -n "$$MISSING" ] ; then \
235           echo "\nPlease install missing packages: \n$$MISSING\n" ; \
236           echo "by executing \"make install-dep\"\n" ; \
237           exit 1 ; \
238         fi ; \
239         exit 0
240 else ifneq ("$(wildcard /etc/redhat-release)","")
241         @for i in $(RPM_DEPENDS) ; do \
242             RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3)  ;   \
243             MISSING+=$$(rpm -q $$RPM | grep "^package")    ;    \
244         done                                                       ;    \
245         if [ -n "$$MISSING" ] ; then \
246           echo "Please install missing RPMs: \n$$MISSING\n" ; \
247           echo "by executing \"make install-dep\"\n" ; \
248           exit 1 ; \
249         fi ; \
250         exit 0
251 endif
252         @echo "SOURCE_PATH = $(WS_ROOT)"                   > $(BR)/build-config.mk
253         @echo "#!/bin/bash\n"                              > $(BR)/path_setup
254         @echo 'export PATH=$(BR)/tools/ccache-bin:$$PATH' >> $(BR)/path_setup
255         @echo 'export PATH=$(BR)/tools/bin:$$PATH'        >> $(BR)/path_setup
256         @echo 'export CCACHE_DIR=$(CCACHE_DIR)'           >> $(BR)/path_setup
257
258 ifeq ("$(wildcard /usr/bin/ccache )","")
259         @echo "WARNING: Please install ccache AYEC and re-run this script"
260 else
261         @rm -rf $(BR)/tools/ccache-bin
262         @mkdir -p $(BR)/tools/ccache-bin
263         @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/gcc
264         @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/g++
265 endif
266         @make -C $(BR) V=$(V) is_build_tool=yes tools-install
267         @touch $@
268
269 bootstrap: $(BR)/.bootstrap.ok
270
271 install-dep:
272 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
273 ifeq ($(OS_VERSION_ID),14.04)
274         @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common
275         @sudo -E add-apt-repository ppa:openjdk-r/ppa $(CONFIRM)
276 endif
277 ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
278         @grep -q jessie-backports /etc/apt/sources.list /etc/apt/sources.list.d/* 2> /dev/null \
279            || ( echo "Please install jessie-backports" ; exit 1 )
280 endif
281         @sudo -E apt-get update
282         @sudo -E apt-get $(APT_ARGS) $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
283 else ifneq ("$(wildcard /etc/redhat-release)","")
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 ($(filter opensuse,$(OS_ID)),$(OS_ID))
288         @sudo -E zypper refresh
289         @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
290 else
291         $(error "This option currently works only on Ubuntu, Debian, Centos or openSUSE systems")
292 endif
293
294 define make
295         @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
296 endef
297
298 $(BR)/scripts/.version:
299 ifneq ("$(wildcard /etc/redhat-release)","")
300         $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version)
301 else
302         $(shell $(BR)/scripts/version > $(BR)/scripts/.version)
303 endif
304
305 DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar
306 DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-)
307
308 dist:
309         @if git rev-parse 2> /dev/null ; then \
310             git archive \
311               --prefix=$(DIST_SUBDIR)/ \
312               --format=tar \
313               -o $(DIST_FILE) \
314             HEAD ; \
315             git describe > $(BR)/.version ; \
316         else \
317             (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \
318             src/scripts/version > $(BR)/.version ; \
319         fi
320         @tar --append \
321           --file $(DIST_FILE) \
322           --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \
323           $(BR)/.version
324         @$(RM) $(BR)/.version $(DIST_FILE).xz
325         @xz -v --threads=0 $(DIST_FILE)
326         @$(RM) $(BR)/vpp-latest.tar.xz
327         @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz
328
329 build: $(BR)/.bootstrap.ok
330         $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS)))
331
332 wipedist:
333         @$(RM) $(BR)/*.tar.xz
334
335 wipe: wipedist test-wipe $(BR)/.bootstrap.ok
336         $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS)))
337
338 rebuild: wipe build
339
340 build-release: $(BR)/.bootstrap.ok
341         $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS)))
342
343 wipe-release: test-wipe $(BR)/.bootstrap.ok
344         $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS)))
345
346 rebuild-release: wipe-release build-release
347
348 export VPP_PYTHON_PREFIX=$(BR)/python
349
350 libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3)))
351
352 define test
353         $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install,)
354         $(eval libs:=lib lib64)
355         make -C test \
356           TEST_DIR=$(WS_ROOT)/test \
357           VPP_TEST_BUILD_DIR=$(BR)/build-$(2)-native \
358           VPP_TEST_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
359           VPP_TEST_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_plugins) \
360           VPP_TEST_INSTALL_PATH=$(BR)/install-$(2)-native/ \
361           LD_LIBRARY_PATH=$(call libexpand,$(libs),$(2),) \
362           EXTENDED_TESTS=$(EXTENDED_TESTS) \
363           PYTHON=$(PYTHON) \
364           OS_ID=$(OS_ID) \
365           CACHE_OUTPUT=$(CACHE_OUTPUT) \
366           $(3)
367 endef
368
369 test: bootstrap
370         $(call test,vpp,vpp,test)
371
372 test-debug: bootstrap
373         $(call test,vpp,vpp_debug,test)
374
375 test-all: bootstrap
376         $(eval EXTENDED_TESTS=yes)
377         $(call test,vpp,vpp,test)
378
379 test-all-debug: bootstrap
380         $(eval EXTENDED_TESTS=yes)
381         $(call test,vpp,vpp_debug,test)
382
383 test-help:
384         @make -C test help
385
386 test-wipe:
387         @make -C test wipe
388
389 test-shell: bootstrap
390         $(call test,vpp,vpp,shell)
391
392 test-shell-debug: bootstrap
393         $(call test,vpp,vpp_debug,shell)
394
395 test-doc:
396         @make -C test doc
397
398 test-wipe-doc:
399         @make -C test wipe-doc
400
401 test-cov: bootstrap
402         $(eval EXTENDED_TESTS=yes)
403         $(call test,vpp,vpp_gcov,cov)
404
405 test-wipe-cov:
406         @make -C test wipe-cov
407
408 test-checkstyle:
409         @make -C test checkstyle
410
411 retest:
412         $(call test,vpp,vpp,retest)
413
414 retest-debug:
415         $(call test,vpp,vpp_debug,retest)
416
417 STARTUP_DIR ?= $(PWD)
418 ifeq ("$(wildcard $(STARTUP_CONF))","")
419 define run
420         @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
421         @echo "         Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
422         @cd $(STARTUP_DIR) && \
423           sudo $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF) \
424             plugin_path $(subst $(subst ,, ),:,$(wildcard $(1)/*/lib*/vpp_plugins))
425 endef
426 else
427 define run
428         @cd $(STARTUP_DIR) && \
429           sudo $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//') \
430             plugin_path $(subst $(subst ,, ),:,$(wildcard $(1)/*/lib*/vpp_plugins))
431 endef
432 endif
433
434 %.files: .FORCE
435         @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
436                 \( -not -path './build-root*' -o -path \
437                 './build-root/build-vpp_debug-native/dpdk*' \) > $@
438
439 .FORCE:
440
441 run:
442         $(call run, $(BR)/install-$(PLATFORM)_debug-native)
443
444 run-release:
445         $(call run, $(BR)/install-$(PLATFORM)-native)
446
447 debug:
448         $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
449
450 build-coverity: 
451         $(call make,$(PLATFORM)_coverity,install-packages)
452
453 debug-release:
454         $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
455
456 build-vat:
457         $(call make,$(PLATFORM)_debug,vpp-api-test-install)
458
459 run-vat:
460         @sudo $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test
461
462 pkg-deb:
463         $(call make,$(PLATFORM),install-deb)
464
465 pkg-rpm: dist
466         make -C extras/rpm
467
468 pkg-srpm: dist
469         make -C extras/rpm srpm
470
471 dpdk-install-dev:
472         make -C dpdk install-$(PKG)
473
474 ctags: ctags.files
475         @ctags --totals --tag-relative -L $<
476         @rm $<
477
478 gtags: ctags
479         @gtags --gtagslabel=ctags
480
481 cscope: cscope.files
482         @cscope -b -q -v
483
484 checkstyle:
485         @build-root/scripts/checkstyle.sh
486
487 fixstyle:
488         @build-root/scripts/checkstyle.sh --fix
489
490 #
491 # Build the documentation
492 #
493
494 # Doxygen configuration and our utility scripts
495 export DOXY_DIR ?= $(WS_ROOT)/doxygen
496
497 define make-doxy
498         @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@
499 endef
500
501 .PHONY: bootstrap-doxygen doxygen wipe-doxygen
502
503 bootstrap-doxygen:
504         $(call make-doxy)
505
506 doxygen:
507         $(call make-doxy)
508
509 wipe-doxygen:
510         $(call make-doxy)
511
512 define banner
513         @echo "========================================================================"
514         @echo " $(1)"
515         @echo "========================================================================"
516         @echo " "
517 endef
518
519 verify: install-dep $(BR)/.bootstrap.ok dpdk-install-dev
520         $(call banner,"Building for PLATFORM=vpp using gcc")
521         @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
522 ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04)
523         $(call banner,"Installing dependencies")
524         @sudo -E apt-get update
525         @sudo -E apt-get $(CONFIRM) $(FORCE) install clang
526         $(call banner,"Building for PLATFORM=vpp using clang")
527         @make -C build-root CC=clang PLATFORM=vpp TAG=vpp_clang wipe-all install-packages
528 endif
529         $(call banner,"Building sample-plugin")
530         @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install
531         $(call banner,"Building $(PKG) packages")
532         @make pkg-$(PKG)
533 ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04)
534         @make COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test
535 endif
536
537