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