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
20 MACHINE=$(shell uname -m)
23 define disable_plugins
26 $(patsubst %,"plugin %_plugin.so { disable }",$(subst $(,), ,$(1))) \
31 MINIMAL_STARTUP_CONF=" \
34 cli-listen /run/vpp/cli.sock \
36 $(if $(wildcard startup.vpp),"exec startup.vpp",) \
38 $(if $(DPDK_CONFIG), "dpdk { $(DPDK_CONFIG) }",) \
39 $(call disable_plugins,$(DISABLED_PLUGINS)) \
42 GDB_ARGS= -ex "handle SIGUSR1 noprint nostop"
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')
53 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
55 else ifeq ($(filter rhel centos fedora opensuse,$(OS_ID)),$(OS_ID))
59 # +libganglia1-dev if building the gmond plugin
61 DEB_DEPENDS = curl build-essential autoconf automake bison 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
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
78 DEB_DEPENDS += default-jdk-headless
79 DEB_DEPENDS += libssl-dev
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
89 ifeq ($(OS_ID)-$(OS_VERSION_ID),fedora-25)
90 RPM_DEPENDS += openssl-devel
91 RPM_DEPENDS += python-devel
92 RPM_DEPENDS += python2-virtualenv
93 RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
94 else ifeq ($(shell if [ "$(OS_ID)" = "fedora" ]; then test $(OS_VERSION_ID) -gt 25; echo $$?; fi),0)
95 RPM_DEPENDS += compat-openssl10-devel
96 RPM_DEPENDS += python2-devel
97 RPM_DEPENDS += python2-virtualenv
98 RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
100 RPM_DEPENDS += openssl-devel
101 RPM_DEPENDS += python-devel
102 RPM_DEPENDS += python-virtualenv
103 RPM_DEPENDS_GROUPS = 'Development Tools'
106 # +ganglia-devel if building the ganglia plugin
108 RPM_DEPENDS += chrpath libffi-devel rpm-build
110 SUSE_NAME= $(shell grep '^NAME=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g' | cut -d' ' -f2)
111 RPM_SUSE_BUILDTOOLS_DEPS = autoconf automake bison ccache check-devel chrpath clang indent libtool make
112 RPM_SUSE_DEVEL_DEPS = glibc-devel-static java-1_8_0-openjdk-devel libnuma-devel libopenssl-devel openssl-devel
113 RPM_SUSE_PYTHON_DEPS = python-devel python3-devel python-pip python3-pip python-rpm-macros python3-rpm-macros
114 RPM_SUSE_PLATFORM_DEPS = distribution-release shadow rpm-build
116 ifeq ($(OS_ID),opensuse)
117 ifneq ($(SUSE_NAME),Tumbleweed)
118 RPM_SUSE_DEVEL_DEPS += boost_1_61-devel gcc6
119 RPM_SUSE_PYTHON_DEPS += python-virtualenv
121 RPM_SUSE_DEVEL_DEPS += boost_1_65-devel gcc
122 RPM_SUSE_PYTHON_DEPS += python2-virtualenv
126 RPM_SUSE_DEPENDS += $(RPM_SUSE_BUILDTOOLS_DEPS) $(RPM_SUSE_DEVEL_DEPS) $(RPM_SUSE_PYTHON_DEPS) $(RPM_SUSE_PLATFORM_DEPS)
128 ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
129 STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
132 ifeq ($(findstring y,$(UNATTENDED)),y)
139 ifneq ($(SAMPLE_PLUGIN),no)
140 TARGETS += sample-plugin
143 .PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release
144 .PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
146 .PHONY: test test-debug retest retest-debug test-doc test-wipe-doc test-help test-wipe
147 .PHONY: test-cov test-wipe-cov
150 @echo "Make Targets:"
151 @echo " bootstrap - prepare tree for build"
152 @echo " install-dep - install software dependencies"
153 @echo " wipe - wipe all products of debug build "
154 @echo " wipe-release - wipe all products of release build "
155 @echo " build - build debug binaries"
156 @echo " build-release - build release binaries"
157 @echo " build-coverity - build coverity artifacts"
158 @echo " rebuild - wipe and build debug binares"
159 @echo " rebuild-release - wipe and build release binares"
160 @echo " run - run debug binary"
161 @echo " run-release - run release binary"
162 @echo " debug - run debug binary with debugger"
163 @echo " debug-release - run release binary with debugger"
164 @echo " test - build and run (basic) functional tests"
165 @echo " test-debug - build and run (basic) functional tests (debug build)"
166 @echo " test-all - build and run (all) functional tests"
167 @echo " test-all-debug - build and run (all) functional tests (debug build)"
168 @echo " test-shell - enter shell with test environment"
169 @echo " test-shell-debug - enter shell with test environment (debug build)"
170 @echo " test-wipe - wipe files generated by unit tests"
171 @echo " retest - run functional tests"
172 @echo " retest-debug - run functional tests (debug build)"
173 @echo " test-help - show help on test framework"
174 @echo " run-vat - run vpp-api-test tool"
175 @echo " pkg-deb - build DEB packages"
176 @echo " pkg-rpm - build RPM packages"
177 @echo " dpdk-install-dev - install DPDK development packages"
178 @echo " ctags - (re)generate ctags database"
179 @echo " gtags - (re)generate gtags database"
180 @echo " cscope - (re)generate cscope database"
181 @echo " checkstyle - check coding style"
182 @echo " fixstyle - fix coding style"
183 @echo " doxygen - (re)generate documentation"
184 @echo " bootstrap-doxygen - setup Doxygen dependencies"
185 @echo " wipe-doxygen - wipe all generated documentation"
186 @echo " test-doc - generate documentation for test framework"
187 @echo " test-wipe-doc - wipe documentation for test framework"
188 @echo " test-cov - generate code coverage report for test framework"
189 @echo " test-wipe-cov - wipe code coverage report for test framework"
190 @echo " test-checkstyle - check PEP8 compliance for test framework"
192 @echo "Make Arguments:"
193 @echo " V=[0|1] - set build verbosity level"
194 @echo " STARTUP_CONF=<path> - startup configuration file"
195 @echo " (e.g. /etc/vpp/startup.conf)"
196 @echo " STARTUP_DIR=<path> - startup drectory (e.g. /etc/vpp)"
197 @echo " It also sets STARTUP_CONF if"
198 @echo " startup.conf file is present"
199 @echo " GDB=<path> - gdb binary to use for debugging"
200 @echo " PLATFORM=<name> - target platform. default is vpp"
201 @echo " TEST=<filter> - apply filter to test set, see test-help"
202 @echo " DPDK_CONFIG=<conf> - add specified dpdk config commands to"
203 @echo " autogenerated startup.conf"
204 @echo " (e.g. \"no-pci\" )"
205 @echo " SAMPLE_PLUGIN=yes - in addition build/run/debug sample plugin"
206 @echo " DISABLED_PLUGINS=<list> - comma separated list of plugins which"
207 @echo " should not be loaded"
209 @echo "Current Argument Values:"
211 @echo " STARTUP_CONF = $(STARTUP_CONF)"
212 @echo " STARTUP_DIR = $(STARTUP_DIR)"
213 @echo " GDB = $(GDB)"
214 @echo " PLATFORM = $(PLATFORM)"
215 @echo " DPDK_VERSION = $(DPDK_VERSION)"
216 @echo " DPDK_CONFIG = $(DPDK_CONFIG)"
217 @echo " SAMPLE_PLUGIN = $(SAMPLE_PLUGIN)"
218 @echo " DISABLED_PLUGINS = $(DISABLED_PLUGINS)"
221 ifeq ($(findstring y,$(UNATTENDED)),y)
224 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
225 @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
226 if [ -n "$$MISSING" ] ; then \
227 echo "\nPlease install missing packages: \n$$MISSING\n" ; \
228 echo "by executing \"make install-dep\"\n" ; \
232 else ifneq ("$(wildcard /etc/redhat-release)","")
233 @for i in $(RPM_DEPENDS) ; do \
234 RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3) ; \
235 MISSING+=$$(rpm -q $$RPM | grep "^package") ; \
237 if [ -n "$$MISSING" ] ; then \
238 echo "Please install missing RPMs: \n$$MISSING\n" ; \
239 echo "by executing \"make install-dep\"\n" ; \
244 @echo "SOURCE_PATH = $(WS_ROOT)" > $(BR)/build-config.mk
245 @echo "#!/bin/bash\n" > $(BR)/path_setup
246 @echo 'export PATH=$(BR)/tools/ccache-bin:$$PATH' >> $(BR)/path_setup
247 @echo 'export PATH=$(BR)/tools/bin:$$PATH' >> $(BR)/path_setup
248 @echo 'export CCACHE_DIR=$(CCACHE_DIR)' >> $(BR)/path_setup
250 ifeq ("$(wildcard /usr/bin/ccache )","")
251 @echo "WARNING: Please install ccache AYEC and re-run this script"
253 @rm -rf $(BR)/tools/ccache-bin
254 @mkdir -p $(BR)/tools/ccache-bin
255 @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/gcc
256 @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/g++
258 @make -C $(BR) V=$(V) is_build_tool=yes tools-install
261 bootstrap: $(BR)/.bootstrap.ok
264 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
265 ifeq ($(OS_VERSION_ID),14.04)
266 @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common
267 @sudo -E add-apt-repository ppa:openjdk-r/ppa $(CONFIRM)
269 ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8)
270 @grep -q jessie-backports /etc/apt/sources.list /etc/apt/sources.list.d/* 2> /dev/null \
271 || ( echo "Please install jessie-backports" ; exit 1 )
273 @sudo -E apt-get update
274 @sudo -E apt-get $(APT_ARGS) $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
275 else ifneq ("$(wildcard /etc/redhat-release)","")
276 @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
277 @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
278 @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs zlib
279 else ifeq ($(filter opensuse,$(OS_ID)),$(OS_ID))
280 @sudo -E zypper refresh
281 @sudo -E zypper install -y $(RPM_SUSE_DEPENDS)
283 $(error "This option currently works only on Ubuntu, Debian, Centos or openSUSE systems")
287 @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
290 $(BR)/scripts/.version:
291 ifneq ("$(wildcard /etc/redhat-release)","")
292 $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version)
294 $(shell $(BR)/scripts/version > $(BR)/scripts/.version)
297 DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar
298 DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-)
301 @if git rev-parse 2> /dev/null ; then \
303 --prefix=$(DIST_SUBDIR)/ \
307 git describe > $(BR)/.version ; \
309 (cd .. ; tar -cf $(DIST_FILE) $(DIST_SUBDIR) --exclude=*.tar) ; \
310 src/scripts/version > $(BR)/.version ; \
313 --file $(DIST_FILE) \
314 --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \
316 @$(RM) $(BR)/.version $(DIST_FILE).xz
317 @xz -v --threads=0 $(DIST_FILE)
318 @$(RM) $(BR)/vpp-latest.tar.xz
319 @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz
321 build: $(BR)/.bootstrap.ok
322 $(call make,$(PLATFORM)_debug,$(addsuffix -install,$(TARGETS)))
325 @$(RM) $(BR)/*.tar.xz
327 wipe: wipedist $(BR)/.bootstrap.ok
328 $(call make,$(PLATFORM)_debug,$(addsuffix -wipe,$(TARGETS)))
332 build-release: $(BR)/.bootstrap.ok
333 $(call make,$(PLATFORM),$(addsuffix -install,$(TARGETS)))
335 wipe-release: $(BR)/.bootstrap.ok
336 $(call make,$(PLATFORM),$(addsuffix -wipe,$(TARGETS)))
338 rebuild-release: wipe-release build-release
340 export VPP_PYTHON_PREFIX=$(BR)/python
342 libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3)))
345 $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install,)
346 $(eval libs:=lib lib64)
348 TEST_DIR=$(WS_ROOT)/test \
349 VPP_TEST_BUILD_DIR=$(BR)/build-$(2)-native \
350 VPP_TEST_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
351 VPP_TEST_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_plugins) \
352 VPP_TEST_INSTALL_PATH=$(BR)/install-$(2)-native/ \
353 LD_LIBRARY_PATH=$(call libexpand,$(libs),$(2),) \
354 EXTENDED_TESTS=$(EXTENDED_TESTS) \
357 CACHE_OUTPUT=$(CACHE_OUTPUT) \
362 $(call test,vpp,vpp,test)
364 test-debug: bootstrap
365 $(call test,vpp,vpp_debug,test)
368 $(eval EXTENDED_TESTS=yes)
369 $(call test,vpp,vpp,test)
371 test-all-debug: bootstrap
372 $(eval EXTENDED_TESTS=yes)
373 $(call test,vpp,vpp_debug,test)
381 test-shell: bootstrap
382 $(call test,vpp,vpp,shell)
384 test-shell-debug: bootstrap
385 $(call test,vpp,vpp_debug,shell)
391 @make -C test wipe-doc
394 $(eval EXTENDED_TESTS=yes)
395 $(call test,vpp,vpp_gcov,cov)
398 @make -C test wipe-cov
401 @make -C test checkstyle
404 $(call test,vpp,vpp,retest)
407 $(call test,vpp,vpp_debug,retest)
409 STARTUP_DIR ?= $(PWD)
410 ifeq ("$(wildcard $(STARTUP_CONF))","")
412 @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
413 @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
414 @cd $(STARTUP_DIR) && \
415 sudo $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF) \
416 plugin_path $(subst $(subst ,, ),:,$(wildcard $(1)/*/lib*/vpp_plugins))
420 @cd $(STARTUP_DIR) && \
421 sudo $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//') \
422 plugin_path $(subst $(subst ,, ),:,$(wildcard $(1)/*/lib*/vpp_plugins))
427 @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
428 \( -not -path './build-root*' -o -path \
429 './build-root/build-vpp_debug-native/dpdk*' \) > $@
434 $(call run, $(BR)/install-$(PLATFORM)_debug-native)
437 $(call run, $(BR)/install-$(PLATFORM)-native)
440 $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
443 $(call make,$(PLATFORM)_coverity,install-packages)
446 $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
449 $(call make,$(PLATFORM)_debug,vpp-api-test-install)
452 @sudo $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test
455 $(call make,$(PLATFORM),install-deb)
461 make -C extras/rpm srpm
464 make -C dpdk install-$(PKG)
467 @ctags --totals --tag-relative -L $<
471 @gtags --gtagslabel=ctags
477 @build-root/scripts/checkstyle.sh
480 @build-root/scripts/checkstyle.sh --fix
483 # Build the documentation
486 # Doxygen configuration and our utility scripts
487 export DOXY_DIR ?= $(WS_ROOT)/doxygen
490 @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@
493 .PHONY: bootstrap-doxygen doxygen wipe-doxygen
505 @echo "========================================================================"
507 @echo "========================================================================"
511 verify: install-dep $(BR)/.bootstrap.ok dpdk-install-dev
512 $(call banner,"Building for PLATFORM=vpp using gcc")
513 @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
514 ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04)
515 $(call banner,"Installing dependencies")
516 @sudo -E apt-get update
517 @sudo -E apt-get $(CONFIRM) $(FORCE) install clang
518 $(call banner,"Building for PLATFORM=vpp using clang")
519 @make -C build-root CC=clang PLATFORM=vpp TAG=vpp_clang wipe-all install-packages
521 $(call banner,"Building sample-plugin")
522 @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install
523 $(call banner,"Building $(PKG) packages")
525 ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04)
526 @make COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test