| Index: tools/clang/scripts/update.py
|
| diff --git a/tools/clang/scripts/update.py b/tools/clang/scripts/update.py
|
| index 3db8a58eb7204ef8fbfc9b9b18270d9fb3629eda..ec8c8be247713ca2623458c0f3d67faf9e523b9f 100755
|
| --- a/tools/clang/scripts/update.py
|
| +++ b/tools/clang/scripts/update.py
|
| @@ -315,13 +315,13 @@ def DownloadHostGcc(args):
|
| def AddCMakeToPath():
|
| """Download CMake and add it to PATH."""
|
| if sys.platform == 'win32':
|
| - zip_name = 'cmake-3.2.2-win32-x86.zip'
|
| + zip_name = 'cmake-3.4.3-win32-x86.zip'
|
| cmake_dir = os.path.join(LLVM_BUILD_TOOLS_DIR,
|
| - 'cmake-3.2.2-win32-x86', 'bin')
|
| + 'cmake-3.4.3-win32-x86', 'bin')
|
| else:
|
| suffix = 'Darwin' if sys.platform == 'darwin' else 'Linux'
|
| - zip_name = 'cmake322_%s.tgz' % suffix
|
| - cmake_dir = os.path.join(LLVM_BUILD_TOOLS_DIR, 'cmake322', 'bin')
|
| + zip_name = 'cmake343_%s.tgz' % suffix
|
| + cmake_dir = os.path.join(LLVM_BUILD_TOOLS_DIR, 'cmake343', 'bin')
|
| if not os.path.exists(cmake_dir):
|
| DownloadAndUnpack(CDS_URL + '/tools/' + zip_name, LLVM_BUILD_TOOLS_DIR)
|
| os.environ['PATH'] = cmake_dir + os.pathsep + os.environ.get('PATH', '')
|
|
|