From c85839cf5e69572d949ee7795043ba03c3627451 Mon Sep 17 00:00:00 2001 From: Jonathan Roelofs <jonathan@codesourcery.com> Date: Wed, 14 May 2014 23:07:16 +0000 Subject: [PATCH] Make verbose clang builds also build compiler_rt verbosely git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@208821 91177308-0d34-0410-b5e6-96231b3b80d8 --- runtime/compiler-rt/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runtime/compiler-rt/Makefile b/runtime/compiler-rt/Makefile index 24efdf45b5a..9833eb901ab 100644 --- a/runtime/compiler-rt/Makefile +++ b/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 -- GitLab