From b6ec7d71d89d6853291580b652a94e7a627bc340 Mon Sep 17 00:00:00 2001 From: "thakis@chromium.org" Date: Tue, 18 Sep 2012 08:54:32 +0000 Subject: roll clang 163126:163674, roll gyp 1492:1495 gyp changes: 1493: Fix ninja generator to recognize the 'default_target' flag. 1494, 1495: ninja: Survive case-only file renames on case-insensitive filesystems. 1494 requires a one-time clobber-build on OS X. Conveniently, clang rolls cause clobber builds, so roll gyp at the same time as clang. (Change the clobber logic to delete .d files too for this roll. I'll undo this at the next roll.) BUG=none TBR=hans Review URL: https://codereview.chromium.org/10939009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157318 0039d316-1c4b-4281-b951-d872f2087c98 --- tools/clang/scripts/update.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools/clang') diff --git a/tools/clang/scripts/update.sh b/tools/clang/scripts/update.sh index 0359306..b1947f5c 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=163126 +CLANG_REVISION=163674 THIS_DIR="$(dirname "${0}")" LLVM_DIR="${THIS_DIR}/../../../third_party/llvm" @@ -145,6 +145,7 @@ for CONFIG in Debug Release; do echo "Clobbering ${CONFIG} PCH and .o files for ninja build" find "${MAKE_DIR}/${CONFIG}/obj" -name '*.gch' -exec rm {} + find "${MAKE_DIR}/${CONFIG}/obj" -name '*.o' -exec rm {} + + find "${MAKE_DIR}/${CONFIG}/obj" -name '*.o.d' -exec rm {} + fi if [[ "${OS}" = "Darwin" ]]; then -- cgit v1.1