Skip to content

Commit 2fd3804

Browse files
committed
Try to get CLANG on Windows working
1 parent 68c07ab commit 2fd3804

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

bench_runner/scripts/workflow.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,9 @@ def compile_windows(
202202
if "CLANG" in flags:
203203
args.extend(
204204
[
205-
r'"/p:PlatformToolset=clangcl"',
206-
r'"/p:LLVMInstallDir=C:\Program Files\LLVM"',
207-
r'"/p:LLVMToolsVersion=19.1.6"',
205+
r"/p:PlatformToolset=clangcl",
206+
r"/p:LLVMInstallDir=C:\Program Files\LLVM",
207+
r"/p:LLVMToolsVersion=19.1.6",
208208
"--tail-call-interp",
209209
]
210210
)
@@ -214,7 +214,8 @@ def compile_windows(
214214
[
215215
Path("PCbuild") / "build.bat",
216216
*args,
217-
]
217+
],
218+
shell=True,
218219
)
219220
shutil.copytree(get_windows_build_dir(force_32bit), "libs", dirs_exist_ok=True)
220221

0 commit comments

Comments
 (0)