We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7f5040e + bb750bb commit 9686261Copy full SHA for 9686261
1 file changed
bench_runner/scripts/workflow.py
@@ -185,9 +185,10 @@ def compile_windows(
185
args = ["--%"] # This is the PowerShell "stop parsing" flag
186
if force_32bit:
187
args.extend(["-p", "win32"])
188
- args.extend(["-c", "Release"])
189
if pgo:
190
args.append("--pgo")
+ else:
191
+ args.extend(["-c", "Release"])
192
if "JIT" in flags:
193
args.append("--experimental-jit")
194
if "PYTHON_UOPS" in flags:
0 commit comments