Pass through the VERBOSE flag to the compiler_rt makefile from clang's 
makefiles.

http://reviews.llvm.org/D3632

Files:
  clang/runtime/compiler-rt/Makefile

Index: clang/runtime/compiler-rt/Makefile
===================================================================
--- clang/runtime/compiler-rt/Makefile
+++ clang/runtime/compiler-rt/Makefile
@@ -170,6 +170,7 @@
          ProjObjRoot=$(PROJ_OBJ_DIR) \
          CC="$(ToolDir)/clang" \
          LLVM_ANDROID_TOOLCHAIN_DIR="$(LLVM_ANDROID_TOOLCHAIN_DIR)" \
+         VERBOSE=$(VERBOSE) \
          $(COMPILERRT_MAKE_FLAGS) \
          $(RuntimeDirs:%=clang_%)
 .PHONY: BuildRuntimeLibraries
@@ -177,6 +178,7 @@
        $(Verb) $(MAKE) -C $(COMPILERRT_SRC_ROOT) \
          ProjSrcRoot=$(COMPILERRT_SRC_ROOT) \
          ProjObjRoot=$(PROJ_OBJ_DIR) \
+         VERBOSE=$(VERBOSE) \
          $(COMPILERRT_MAKE_FLAGS) \
          clean
 .PHONY: CleanRuntimeLibraries
Index: clang/runtime/compiler-rt/Makefile
===================================================================
--- clang/runtime/compiler-rt/Makefile
+++ clang/runtime/compiler-rt/Makefile
@@ -170,6 +170,7 @@
 	  ProjObjRoot=$(PROJ_OBJ_DIR) \
 	  CC="$(ToolDir)/clang" \
 	  LLVM_ANDROID_TOOLCHAIN_DIR="$(LLVM_ANDROID_TOOLCHAIN_DIR)" \
+	  VERBOSE=$(VERBOSE) \
 	  $(COMPILERRT_MAKE_FLAGS) \
 	  $(RuntimeDirs:%=clang_%)
 .PHONY: BuildRuntimeLibraries
@@ -177,6 +178,7 @@
 	$(Verb) $(MAKE) -C $(COMPILERRT_SRC_ROOT) \
 	  ProjSrcRoot=$(COMPILERRT_SRC_ROOT) \
 	  ProjObjRoot=$(PROJ_OBJ_DIR) \
+	  VERBOSE=$(VERBOSE) \
 	  $(COMPILERRT_MAKE_FLAGS) \
 	  clean
 .PHONY: CleanRuntimeLibraries
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to