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 8e0c293 commit f9f4ba8Copy full SHA for f9f4ba8
bench_runner/scripts/workflow.py
@@ -187,7 +187,7 @@ def compile_windows(
187
) -> None:
188
cpython = Path(cpython)
189
190
- args = []
+ args = ["--%"] # This is the PowerShell "stop parsing" flag
191
if force_32bit:
192
args.extend(["-p", "win32"])
193
args.extend(["-c", "Release"])
@@ -203,8 +203,8 @@ def compile_windows(
203
args.extend(
204
[
205
'"/p:PlatformToolset=clangcl"',
206
- "/p:LLVMInstallDir`=C:\\Program Files\\LLVM",
207
- "/p:LLVMToolsVersion`=19.1.6",
+ '"/p:LLVMInstallDir=C:\\Program Files\\LLVM"',
+ '"/p:LLVMToolsVersion=19.1.6"',
208
"--tail-call-interp",
209
]
210
)
0 commit comments