Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong documentation or wrong project.mk (IDFGH-1175) #3488

Closed
dsptech opened this issue May 16, 2019 · 1 comment
Closed

Wrong documentation or wrong project.mk (IDFGH-1175) #3488

dsptech opened this issue May 16, 2019 · 1 comment

Comments

@dsptech
Copy link

dsptech commented May 16, 2019

Hi,
in "https://docs.espressif.com/projects/esp-idf/en/latest/api-guides/build-system.html" is written:
"Verbose output (same as V=1, see below). If you don’t want verbose output, also set V=0".

However, the line 505 (current version) in project.mk is:
"$(if $(V),$$(info including $(1)/Makefile.projbuild...))"

but $(if $(V)... check for an empty string and not for a non zero value

I may be wrong, but V=0 cannot work. To avoid verbose output, V need to be unset or empty.

Regards.

@github-actions github-actions bot changed the title Wrong documentation or wrong project.mk Wrong documentation or wrong project.mk (IDFGH-1175) May 16, 2019
@projectgus
Copy link
Contributor

Hi @dsptech,

Thanks for point this out. It looks like V is checked in a couple of ways, so V=0 gives more output than V= but nowhere near as much as V=1. Will fix so that V=0 and V= are equivalent.

@igrr igrr closed this as completed in a60b142 Jun 30, 2019
trombik pushed a commit to trombik/esp-idf that referenced this issue Aug 9, 2019
Previously, V=0 would print some verbose lines but not most of them.

This meant that it was impossible to disable all verbose output
when BATCH_BUILD=1

Closes espressif#3488
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants