When building clang+compiler-rt verbosely, the build commands of compiler-rt are not output in the terminal as expected.
This patch fixes the issue by forwarding the VERBOSE flag to the compiler-rt make.
Details
Details
- Reviewers
Jean-Daniel
Diff Detail
Diff Detail
Event Timeline
Comment Actions
Why not just do:
VERBOSE ?= $(VERBOSE)
Wondering why a new variable needs to be created here.
Comment Actions
actually that doesn't make sense, why not just use $(VERBOSE) instead of $(RUNTIME_VERBOSE) in the make rule?
Comment Actions
Because I erroneously though that simply using "make VERBOSE=" was enough to enable verbose mode.