| Index: tools/clang/scripts/update.py
|
| diff --git a/tools/clang/scripts/update.py b/tools/clang/scripts/update.py
|
| index 45a3408a196118c41b0b87bb1be483c6d085ab00..a57bd0de67b72caca3f31a8deeb87b12969ad9a9 100755
|
| --- a/tools/clang/scripts/update.py
|
| +++ b/tools/clang/scripts/update.py
|
| @@ -139,10 +139,13 @@ def UpdateClang():
|
| ['&&', 'cmake', '-GNinja', '-DCMAKE_BUILD_TYPE=Release',
|
| '-DLLVM_ENABLE_ASSERTIONS=ON', LLVM_DIR])
|
| RunCommand(GetVSVersion().SetupScript('x86') + ['&&', 'ninja', 'compiler-rt'])
|
| +
|
| + # TODO(hans): Make this (and the .gypi file) version number independent.
|
| asan_rt_lib_src_dir = os.path.join(COMPILER_RT_BUILD_DIR, 'lib', 'clang',
|
| - '3.5', 'lib', 'windows')
|
| + '3.5.0', 'lib', 'windows')
|
| asan_rt_lib_dst_dir = os.path.join(LLVM_BUILD_DIR, 'lib', 'clang',
|
| - '3.5', 'lib', 'windows')
|
| + '3.5.0', 'lib', 'windows')
|
| +
|
| if not os.path.exists(asan_rt_lib_dst_dir):
|
| os.makedirs(asan_rt_lib_dst_dir)
|
| for root, _, files in os.walk(asan_rt_lib_src_dir):
|
|
|