| Index: tools/clang/scripts/update.py
|
| diff --git a/tools/clang/scripts/update.py b/tools/clang/scripts/update.py
|
| index 473a43b588d29065fcd80c5f531291041003bc2e..49f4700d8a8ade4ca574041f34d531adb9afc238 100755
|
| --- a/tools/clang/scripts/update.py
|
| +++ b/tools/clang/scripts/update.py
|
| @@ -686,6 +686,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'),
|
|
|