Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(192)

Side by Side Diff: tools/clang/scripts/update.sh

Issue 9007051: roll clang 146361:147225 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: -Wno-format on linux Created 8 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« build/common.gypi ('K') | « build/common.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env bash 1 #!/usr/bin/env bash
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # This script will check out llvm and clang into third_party/llvm and build it. 6 # This script will check out llvm and clang into third_party/llvm and build it.
7 7
8 # Do NOT CHANGE this if you don't know what you're doing -- see 8 # Do NOT CHANGE this if you don't know what you're doing -- see
9 # https://code.google.com/p/chromium/wiki/UpdatingClang 9 # https://code.google.com/p/chromium/wiki/UpdatingClang
10 # Reverting problematic clang rolls is safe, though. 10 # Reverting problematic clang rolls is safe, though.
11 CLANG_REVISION=146361 11 CLANG_REVISION=147225
12 12
13 THIS_DIR="$(dirname "${0}")" 13 THIS_DIR="$(dirname "${0}")"
14 LLVM_DIR="${THIS_DIR}/../../../third_party/llvm" 14 LLVM_DIR="${THIS_DIR}/../../../third_party/llvm"
15 LLVM_BUILD_DIR="${LLVM_DIR}/../llvm-build" 15 LLVM_BUILD_DIR="${LLVM_DIR}/../llvm-build"
16 CLANG_DIR="${LLVM_DIR}/tools/clang" 16 CLANG_DIR="${LLVM_DIR}/tools/clang"
17 COMPILER_RT_DIR="${LLVM_DIR}/projects/compiler-rt" 17 COMPILER_RT_DIR="${LLVM_DIR}/projects/compiler-rt"
18 STAMP_FILE="${LLVM_BUILD_DIR}/cr_build_revision" 18 STAMP_FILE="${LLVM_BUILD_DIR}/cr_build_revision"
19 19
20 # ${A:-a} returns $A if it's set, a else. 20 # ${A:-a} returns $A if it's set, a else.
21 LLVM_REPO_URL=${LLVM_URL:-https://llvm.org/svn/llvm-project} 21 LLVM_REPO_URL=${LLVM_URL:-https://llvm.org/svn/llvm-project}
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 if [[ -n "$run_tests" ]]; then 208 if [[ -n "$run_tests" ]]; then
209 # Run a few tests. 209 # Run a few tests.
210 "${PLUGIN_SRC_DIR}/tests/test.sh" "${LLVM_BUILD_DIR}/Release+Asserts" 210 "${PLUGIN_SRC_DIR}/tests/test.sh" "${LLVM_BUILD_DIR}/Release+Asserts"
211 cd "${LLVM_BUILD_DIR}" 211 cd "${LLVM_BUILD_DIR}"
212 make check-all 212 make check-all
213 cd - 213 cd -
214 fi 214 fi
215 215
216 # After everything is done, log success for this revision. 216 # After everything is done, log success for this revision.
217 echo "${CLANG_REVISION}" > "${STAMP_FILE}" 217 echo "${CLANG_REVISION}" > "${STAMP_FILE}"
OLDNEW
« build/common.gypi ('K') | « build/common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698