Commit cfc5ec61 authored by hans@chromium.org's avatar hans@chromium.org

Clang update.py: check for LLVM_FORCE_HEAD_REVISION in the environment

The FYI builders will set this to enforce using the latest revision.

BUG=82385
NOTRY=true

Review URL: https://codereview.chromium.org/336163004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278500 0039d316-1c4b-4281-b951-d872f2087c98
parent 0b4fc6a0
...@@ -20,8 +20,8 @@ LLVM_WIN_REVISION = 'HEAD' ...@@ -20,8 +20,8 @@ LLVM_WIN_REVISION = 'HEAD'
# ASan on Windows is useful enough to use it even while the clang/win is still # ASan on Windows is useful enough to use it even while the clang/win is still
# in bringup. Use a pinned revision to make it slightly more stable. # in bringup. Use a pinned revision to make it slightly more stable.
if (sys.platform in ['win32', 'cygwin'] and if (re.search(r'\b(asan)=1', os.environ.get('GYP_DEFINES', '')) and
re.search(r'\b(asan)=1', os.environ.get('GYP_DEFINES', ''))): not 'LLVM_FORCE_HEAD_REVISION' in os.environ):
LLVM_WIN_REVISION = '210586' LLVM_WIN_REVISION = '210586'
# Path constants. (All of these should be absolute paths.) # Path constants. (All of these should be absolute paths.)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment