]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-118335: Rename --experimental-interpreter on Windows to --experimental-jit-interpr...
authorGuido van Rossum <guido@python.org>
Thu, 2 May 2024 00:48:34 +0000 (17:48 -0700)
committerGitHub <noreply@github.com>
Thu, 2 May 2024 00:48:34 +0000 (00:48 +0000)
Also fix docs for this in whatsnew.

Doc/whatsnew/3.13.rst
PCbuild/build.bat

index d67df8109a8ced383379f21776269e106c936c51..52fb9752cf413257d9ff1855c01507033f040734 100644 (file)
@@ -946,7 +946,8 @@ The ``--enable-experimental-jit`` flag has the following optional values:
   The interpreter can be disabled by running with
   ``PYTHON_JIT=0``.
 
-(On Windows, use ``PCbuild/build.bat --enable-jit`` to enable the JIT.)
+(On Windows, use ``PCbuild/build.bat --experimental-jit`` to enable the JIT
+or ``--experimental-jit-interpreter`` to enable the Tier 2 interpreter.)
 
 See :pep:`744` for more details.
 
index 43a99aa684483f3b250401437b6c0f4a23151dba..13bd895694f176b206b09cb4697f7134870637ee 100644 (file)
@@ -38,7 +38,7 @@ echo.  --test-marker  Enable the test marker within the build.
 echo.  --regen        Regenerate all opcodes, grammar and tokens.
 echo.  --experimental-jit          Enable the experimental just-in-time compiler.
 echo.  --experimental-jit-off      Ditto but off by default (PYTHON_JIT=1 enables).
-echo.  --experimental-interpreter  Enable the experimental Tier 2 interpreter.
+echo.  --experimental-jit-interpreter  Enable the experimental Tier 2 interpreter.
 echo.
 echo.Available flags to avoid building certain modules.
 echo.These flags have no effect if '-e' is not given:
@@ -91,8 +91,8 @@ if "%~1"=="-V" shift & goto Version
 if "%~1"=="--regen" (set Regen=true) & shift & goto CheckOpts
 if "%~1"=="--experimental-jit" (set UseJIT=true) & (set UseTIER2=1) & shift & goto CheckOpts
 if "%~1"=="--experimental-jit-off" (set UseJIT=true) & (set UseTIER2=3) & shift & goto CheckOpts
-if "%~1"=="--experimental-interpreter" (set UseTIER2=4) & shift & goto CheckOpts
-if "%~1"=="--experimental-interpreter-off" (set UseTIER2=6) & shift & goto CheckOpts
+if "%~1"=="--experimental-jit-interpreter" (set UseTIER2=4) & shift & goto CheckOpts
+if "%~1"=="--experimental-jit-interpreter-off" (set UseTIER2=6) & shift & goto CheckOpts
 rem These use the actual property names used by MSBuild.  We could just let
 rem them in through the environment, but we specify them on the command line
 rem anyway for visibility so set defaults after this