Skip to content

Commit

Permalink
path escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
feisuzhu committed Jan 17, 2023
1 parent 7e30bd2 commit 966b26d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/scripts/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def setup_clang(as_compiler=True) -> None:
out = get_cache_home() / 'clang-15'
url = 'https://github.com/python3kgae/taichi_assets/releases/download/llvm15_vs2022_clang/clang-15.0.0-win.zip'
download_dep(url, out)
clang = out / 'bin' / 'clang++.exe'
clang = str(out / 'bin' / 'clang++.exe').replace('\\', '\\\\')
os.environ['TAICHI_CMAKE_ARGS'] += f' -DCLANG_EXECUTABLE={clang}'

if as_compiler:
Expand Down

0 comments on commit 966b26d

Please sign in to comment.