Index: runtime/compiler-rt/Makefile =================================================================== --- runtime/compiler-rt/Makefile +++ runtime/compiler-rt/Makefile @@ -121,6 +121,12 @@ # modified based on changes in the compiler-rt layout or build system. #### +ifdef VERBOSE + RUNTIME_VERBOSE := VERBOSE=$(VERBOSE) +else + RUNTIME_VERBOSE := +endif + # Rule to build the compiler-rt libraries we need. # # We build all the libraries in a single shot to avoid recursive make as much as @@ -130,12 +136,14 @@ ProjSrcRoot=$(COMPILERRT_SRC_ROOT) \ ProjObjRoot=$(PROJ_OBJ_DIR) \ CC="$(ToolDir)/clang" \ + $(RUNTIME_VERBOSE) \ $(RuntimeDirs:%=clang_%) .PHONY: BuildRuntimeLibraries CleanRuntimeLibraries: $(Verb) $(MAKE) -C $(COMPILERRT_SRC_ROOT) \ ProjSrcRoot=$(COMPILERRT_SRC_ROOT) \ ProjObjRoot=$(PROJ_OBJ_DIR) \ + $(RUNTIME_VERBOSE) \ clean .PHONY: CleanRuntimeLibraries