From e30872e6606b4ce6fe1d6ff44be69e590427e45f Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Sat, 12 Nov 2016 01:23:55 +0100 Subject: Add clang to 'make verify' Change-Id: I9ba84632da93ffb7713064db51f2888fc212713a Signed-off-by: Damjan Marion --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5d20bd23350..41a45c88beb 100644 --- a/Makefile +++ b/Makefile @@ -329,6 +329,24 @@ doxygen: wipe-doxygen: $(call make-doxy) +define banner + @echo "========================================================================" + @echo " $(1)" + @echo "========================================================================" + @echo " " +endef + verify: $(BR)/.bootstrap.ok +ifeq ($(OS_ID),ubuntu) +ifeq ($(OS_VERSION_ID),16.04) + $(call banner,"Installing dependencies") + @sudo -E apt-get update + @sudo -E apt-get $(CONFIRM) $(FORCE) install clang + $(call banner,"Building for PLATFORM=vpp using clang") + @make -C build-root CC=clang PLATFORM=vpp TAG=vpp_clang wipe-all install-packages +endif +endif + $(call banner,"Building for PLATFORM=vpp using gcc") @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages + $(call banner,"Building for PLATFORM=vpp_lite using gcc") @make -C build-root PLATFORM=vpp_lite TAG=vpp_lite wipe-all install-packages -- cgit 1.2.3-korg