| OLD | NEW |
| 1 #!/usr/bin/env bash | 1 #!/usr/bin/env bash |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 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=170392 | 11 CLANG_REVISION=174491 |
| 12 # ASan Mac builders are pinned to this revision, see http://crbug.com/170629. | 12 # ASan Mac builders are pinned to this revision, see http://crbug.com/170629. |
| 13 CLANG_ASAN_MAC_REVISION=170392 | 13 CLANG_ASAN_MAC_REVISION=170392 |
| 14 | 14 |
| 15 THIS_DIR="$(dirname "${0}")" | 15 THIS_DIR="$(dirname "${0}")" |
| 16 LLVM_DIR="${THIS_DIR}/../../../third_party/llvm" | 16 LLVM_DIR="${THIS_DIR}/../../../third_party/llvm" |
| 17 LLVM_BUILD_DIR="${LLVM_DIR}/../llvm-build" | 17 LLVM_BUILD_DIR="${LLVM_DIR}/../llvm-build" |
| 18 LLVM_BOOTSTRAP_DIR="${LLVM_DIR}/../llvm-bootstrap" | 18 LLVM_BOOTSTRAP_DIR="${LLVM_DIR}/../llvm-bootstrap" |
| 19 CLANG_DIR="${LLVM_DIR}/tools/clang" | 19 CLANG_DIR="${LLVM_DIR}/tools/clang" |
| 20 COMPILER_RT_DIR="${LLVM_DIR}/projects/compiler-rt" | 20 COMPILER_RT_DIR="${LLVM_DIR}/projects/compiler-rt" |
| 21 ANDROID_NDK_DIR="${LLVM_DIR}/../android_tools/ndk" | 21 ANDROID_NDK_DIR="${LLVM_DIR}/../android_tools/ndk" |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 # Run a few tests. | 361 # Run a few tests. |
| 362 PLUGIN_SRC_DIR="${THIS_DIR}/../plugins" | 362 PLUGIN_SRC_DIR="${THIS_DIR}/../plugins" |
| 363 "${PLUGIN_SRC_DIR}/tests/test.sh" "${LLVM_BUILD_DIR}/Release+Asserts" | 363 "${PLUGIN_SRC_DIR}/tests/test.sh" "${LLVM_BUILD_DIR}/Release+Asserts" |
| 364 cd "${LLVM_BUILD_DIR}" | 364 cd "${LLVM_BUILD_DIR}" |
| 365 make check-all | 365 make check-all |
| 366 cd - | 366 cd - |
| 367 fi | 367 fi |
| 368 | 368 |
| 369 # After everything is done, log success for this revision. | 369 # After everything is done, log success for this revision. |
| 370 echo "${CLANG_REVISION}" > "${STAMP_FILE}" | 370 echo "${CLANG_REVISION}" > "${STAMP_FILE}" |
| OLD | NEW |