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