make debugging: With V=1, output when including each Makefile.projbuild

also enable V=1 on CI builds
This commit is contained in:
Angus Gratton 2016-09-09 10:49:35 +10:00
parent 7c58c1e06b
commit f605e03344
2 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,7 @@ build_template_app:
# branch
- git checkout ${CI_BUILD_REF_NAME} || echo "Using esp-idf-template default branch..."
- make defconfig
- make all
- make all V=1
test_nvs_on_host:
stage: test

View File

@ -193,6 +193,7 @@ APP_BIN:=$(APP_ELF:.elf=.bin)
# Include any Makefile.projbuild file letting components add
# configuration at the project level
define includeProjBuildMakefile
$(if $(V),$(if $(wildcard $(1)/Makefile.projbuild),$(info including $(1)/Makefile.projbuild...)))
COMPONENT_PATH := $(1)
-include $(1)/Makefile.projbuild
endef