diff --git a/runtime/compiler-rt/Makefile b/runtime/compiler-rt/Makefile
index 0336c01..b730b34 100644
--- a/runtime/compiler-rt/Makefile
+++ b/runtime/compiler-rt/Makefile
@@ -121,6 +121,12 @@ endif
 # 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 @@ BuildRuntimeLibraries:
 	  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
 
