From: Lijian Zhang Date: Thu, 20 Sep 2018 10:40:56 +0000 (+0800) Subject: Enable verbose output during VPP cmake compiling X-Git-Tag: v18.10-rc1~127 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=2e08b1aa6a44c8346d9cbdc8acec55896327cc63;p=vpp.git Enable verbose output during VPP cmake compiling During VPP compiling, the command “make build-release V=1” gives verbose output on dpdk part. This is to enable verbose output on vpp part, with CMAKE_VERBOSE_MAKEFILE:BOOL=ON passed to cmake. It would help to get more cmake compiling information. Change-Id: I2b01c8e234beb3189fe401801ff339f224c14470 Signed-off-by: Lijian Zhang Reviewed-by: Honnappa Nagarahalli Reviewed-by: Sirshak Das --- diff --git a/build-data/packages/vpp.mk b/build-data/packages/vpp.mk index 185a4efc511..2a1b9a77de9 100644 --- a/build-data/packages/vpp.mk +++ b/build-data/packages/vpp.mk @@ -28,6 +28,9 @@ vpp_cmake_args += -DCMAKE_INSTALL_PREFIX:PATH=$(PACKAGE_INSTALL_DIR) vpp_cmake_args += -DCMAKE_C_FLAGS="$($(TAG)_TAG_CFLAGS)" vpp_cmake_args += -DCMAKE_LINKER_FLAGS="$($(TAG)_TAG_LDFLAGS)" vpp_cmake_args += -DCMAKE_PREFIX_PATH:PATH="$(vpp_cmake_prefix_path)" +ifeq ("$(V)","1") +vpp_cmake_args += -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON +endif # Use devtoolset on centos 7 ifneq ($(wildcard /opt/rh/devtoolset-7/enable),)