We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68c07ab commit 2fd3804Copy full SHA for 2fd3804
bench_runner/scripts/workflow.py
@@ -202,9 +202,9 @@ def compile_windows(
202
if "CLANG" in flags:
203
args.extend(
204
[
205
- r'"/p:PlatformToolset=clangcl"',
206
- r'"/p:LLVMInstallDir=C:\Program Files\LLVM"',
207
- r'"/p:LLVMToolsVersion=19.1.6"',
+ r"/p:PlatformToolset=clangcl",
+ r"/p:LLVMInstallDir=C:\Program Files\LLVM",
+ r"/p:LLVMToolsVersion=19.1.6",
208
"--tail-call-interp",
209
]
210
)
@@ -214,7 +214,8 @@ def compile_windows(
214
215
Path("PCbuild") / "build.bat",
216
*args,
217
- ]
+ ],
218
+ shell=True,
219
220
shutil.copytree(get_windows_build_dir(force_32bit), "libs", dirs_exist_ok=True)
221
0 commit comments