diff options
-rwxr-xr-x | tools/clang/scripts/update.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/clang/scripts/update.sh b/tools/clang/scripts/update.sh index b0a1a68..aef39e8 100755 --- a/tools/clang/scripts/update.sh +++ b/tools/clang/scripts/update.sh @@ -8,7 +8,7 @@ # Do NOT CHANGE this if you don't know what you're doing -- see # https://code.google.com/p/chromium/wiki/UpdatingClang # Reverting problematic clang rolls is safe, though. -CLANG_REVISION=192869 +CLANG_REVISION=193323 THIS_DIR="$(dirname "${0}")" LLVM_DIR="${THIS_DIR}/../../../third_party/llvm" @@ -141,7 +141,7 @@ for DIR in "${XCODEBUILD_DIR}" "${MAKE_DIR}/Debug" "${MAKE_DIR}/Release"; do find "${DIR}" -name '*.o' -exec rm {} + find "${DIR}" -name '*.o.d' -exec rm {} + find "${DIR}" -name '*.gch' -exec rm {} + - find "${DIR}" -name '*.dylib' -exec rm {} + + find "${DIR}" -name '*.dylib' -exec rm -rf {} + find "${DIR}" -name 'SharedPrecompiledHeaders' -exec rm -rf {} + fi done |