diff options
author | Jonathan Roelofs <jonathan@codesourcery.com> | 2014-05-14 23:07:16 +0000 |
---|---|---|
committer | Jonathan Roelofs <jonathan@codesourcery.com> | 2014-05-14 23:07:16 +0000 |
commit | becce11112f65f0de12ece4fa6fe6435f72b7d3e (patch) | |
tree | c559a50475095b20f84d6d4cf40aa074618dada7 /clang/runtime | |
parent | 91e81046223483d9639c9c51d0adf8f322da0b75 (diff) | |
download | bcm5719-llvm-becce11112f65f0de12ece4fa6fe6435f72b7d3e.tar.gz bcm5719-llvm-becce11112f65f0de12ece4fa6fe6435f72b7d3e.zip |
Make verbose clang builds also build compiler_rt verbosely
llvm-svn: 208821
Diffstat (limited to 'clang/runtime')
-rw-r--r-- | clang/runtime/compiler-rt/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/runtime/compiler-rt/Makefile b/clang/runtime/compiler-rt/Makefile index 24efdf45b5a..9833eb901ab 100644 --- a/clang/runtime/compiler-rt/Makefile +++ b/clang/runtime/compiler-rt/Makefile @@ -169,6 +169,7 @@ BuildRuntimeLibraries: ProjSrcRoot=$(COMPILERRT_SRC_ROOT) \ ProjObjRoot=$(PROJ_OBJ_DIR) \ CC="$(ToolDir)/clang" \ + VERBOSE=$(VERBOSE) \ LLVM_ANDROID_TOOLCHAIN_DIR="$(LLVM_ANDROID_TOOLCHAIN_DIR)" \ $(COMPILERRT_MAKE_FLAGS) \ $(RuntimeDirs:%=clang_%) @@ -177,6 +178,7 @@ CleanRuntimeLibraries: $(Verb) $(MAKE) -C $(COMPILERRT_SRC_ROOT) \ ProjSrcRoot=$(COMPILERRT_SRC_ROOT) \ ProjObjRoot=$(PROJ_OBJ_DIR) \ + VERBOSE=$(VERBOSE) \ $(COMPILERRT_MAKE_FLAGS) \ clean .PHONY: CleanRuntimeLibraries |