Do not download clang on Windows
This commit is contained in:
parent
49eed1ebb9
commit
67a768fc77
1 changed files with 6 additions and 5 deletions
|
@ -49,9 +49,10 @@ def main():
|
||||||
libcc_shared_library_path = os.path.join(dist_dir, 'shared_library')
|
libcc_shared_library_path = os.path.join(dist_dir, 'shared_library')
|
||||||
libcc_static_library_path = os.path.join(dist_dir, 'static_library')
|
libcc_static_library_path = os.path.join(dist_dir, 'static_library')
|
||||||
|
|
||||||
|
if PLATFORM != 'win32':
|
||||||
|
# Download prebuilt clang binaries.
|
||||||
update_clang()
|
update_clang()
|
||||||
|
if not args.disable_clang and args.clang_dir == '':
|
||||||
if PLATFORM != 'win32' and not args.disable_clang and args.clang_dir == '':
|
|
||||||
# Build with prebuilt clang.
|
# Build with prebuilt clang.
|
||||||
set_clang_env(os.environ)
|
set_clang_env(os.environ)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue