[Lldb-commits] [lldb] r178070 - Trim the output build folder a bit to it isn't so large.

Greg Clayton gclayton at apple.com
Tue Mar 26 14:00:56 PDT 2013


Author: gclayton
Date: Tue Mar 26 16:00:56 2013
New Revision: 178070

URL: http://llvm.org/viewvc/llvm-project?rev=178070&view=rev
Log:
Trim the output build folder a bit to it isn't so large.


Modified:
    lldb/trunk/tools/lldb-perf/common/clang/build-clang.sh

Modified: lldb/trunk/tools/lldb-perf/common/clang/build-clang.sh
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-perf/common/clang/build-clang.sh?rev=178070&r1=178069&r2=178070&view=diff
==============================================================================
--- lldb/trunk/tools/lldb-perf/common/clang/build-clang.sh (original)
+++ lldb/trunk/tools/lldb-perf/common/clang/build-clang.sh Tue Mar 26 16:00:56 2013
@@ -19,7 +19,12 @@ if [ ! -d "build" ]; then
     mkdir build
     cd build
     ../llvm/configure --enable-targets=x86_64,arm --build=x86_64-apple-darwin10 --disable-optimized --disable-assertions --enable-libcpp
-    make -j8 DEBUG_SYMBOLS=1
+    make -j8 clang-only DEBUG_SYMBOLS=1
+    rm -rf lib projects runtime unittests utils
+    ( cd ./Debug/bin ; rm -rf ll* clang-check clang-tblgen count diagtool fpcmp macho-dump not opt yaml2obj FileCheck FileUpdate arcmt-test c-arcmt-test c-index-test bugpoint )
+    ( cd ./tools ; rm -rf ll* clang-check clang-tblgen count diagtool fpcmp lto macho-dump not opt yaml2obj FileCheck FileUpdate arcmt-test c-arcmt-test c-index-test bugpoint )
+    ( cd ./tools/clang ; rm -rf lib unittests utils )
+    ( cd ./tools/clang/tools ; rm -rf arcmt-test c-arcmt-test c-index-test clang-check diagtool libclang )
 fi
 
 





More information about the lldb-commits mailing list