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 9f84063 commit a9c1c71Copy full SHA for a9c1c71
master/custom/factories.py
@@ -666,6 +666,13 @@ class Windows64ReleaseBuild(Windows64Build):
666
factory_tags = ["win64", "nondebug"]
667
668
669
+class Windows64PGOBuild(Windows64ReleaseBuild):
670
+ buildersuffix = ".pgo"
671
+ buildFlags = Windows64Build.buildFlags + ["--pgo"]
672
+ testFlags = [*Windows64Build.testFlags, "+d"]
673
+ factory_tags = ["win64", "nondebug", "pgo"]
674
+
675
676
class Windows64NoGilBuild(Windows64Build):
677
buildersuffix = '.x64.nogil'
678
buildFlags = Windows64Build.buildFlags + ["--disable-gil"]
0 commit comments