File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -946,7 +946,8 @@ The ``--enable-experimental-jit`` flag has the following optional values:
946
946
The interpreter can be disabled by running with
947
947
``PYTHON_JIT=0 ``.
948
948
949
- (On Windows, use ``PCbuild/build.bat --enable-jit `` to enable the JIT.)
949
+ (On Windows, use ``PCbuild/build.bat --experimental-jit `` to enable the JIT
950
+ or ``--experimental-jit-interpreter `` to enable the Tier 2 interpreter.)
950
951
951
952
See :pep: `744 ` for more details.
952
953
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ echo. --test-marker Enable the test marker within the build.
38
38
echo . --regen Regenerate all opcodes, grammar and tokens.
39
39
echo . --experimental-jit Enable the experimental just-in-time compiler.
40
40
echo . --experimental-jit-off Ditto but off by default (PYTHON_JIT=1 enables).
41
- echo . --experimental-interpreter Enable the experimental Tier 2 interpreter.
41
+ echo . --experimental-jit- interpreter Enable the experimental Tier 2 interpreter.
42
42
echo .
43
43
echo .Available flags to avoid building certain modules.
44
44
echo .These flags have no effect if '-e' is not given:
@@ -91,8 +91,8 @@ if "%~1"=="-V" shift & goto Version
91
91
if " %~1 " == " --regen" (set Regen=true) & shift & goto CheckOpts
92
92
if " %~1 " == " --experimental-jit" (set UseJIT=true) & (set UseTIER2=1) & shift & goto CheckOpts
93
93
if " %~1 " == " --experimental-jit-off" (set UseJIT=true) & (set UseTIER2=3) & shift & goto CheckOpts
94
- if " %~1 " == " --experimental-interpreter" (set UseTIER2=4) & shift & goto CheckOpts
95
- if " %~1 " == " --experimental-interpreter-off" (set UseTIER2=6) & shift & goto CheckOpts
94
+ if " %~1 " == " --experimental-jit- interpreter" (set UseTIER2=4) & shift & goto CheckOpts
95
+ if " %~1 " == " --experimental-jit- interpreter-off" (set UseTIER2=6) & shift & goto CheckOpts
96
96
rem These use the actual property names used by MSBuild. We could just let
97
97
rem them in through the environment, but we specify them on the command line
98
98
rem anyway for visibility so set defaults after this
You can’t perform that action at this time.
0 commit comments