| Index: tools/clang/scripts/update.py
|
| diff --git a/tools/clang/scripts/update.py b/tools/clang/scripts/update.py
|
| index dc54f511f8f94edc865cb312e03c3ba09a5c620d..84ce99317e36fdb73e0c0fba8d00de04e07efb8d 100755
|
| --- a/tools/clang/scripts/update.py
|
| +++ b/tools/clang/scripts/update.py
|
| @@ -652,6 +652,8 @@ def UpdateClang(args):
|
| compiler_rt_args = base_cmake_args + [
|
| '-DCMAKE_C_FLAGS=' + ' '.join(cflags),
|
| '-DCMAKE_CXX_FLAGS=' + ' '.join(cxxflags)]
|
| + if sys.platform == 'darwin':
|
| + compiler_rt_args += ['-DCOMPILER_RT_ENABLE_IOS=ON']
|
| if sys.platform != 'win32':
|
| compiler_rt_args += ['-DLLVM_CONFIG_PATH=' +
|
| os.path.join(LLVM_BUILD_DIR, 'bin', 'llvm-config'),
|
|
|