diff options
author | Guido van Rossum <guido@python.org> | 2024-05-02 00:48:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-02 00:48:34 (GMT) |
commit | a37b0932285b5e883b13a46ff2a32f15d7339894 (patch) | |
tree | 3c66cb373d20775593120471bfe1a4be12f8f634 /PCbuild | |
parent | 526ca4c09eed63e19ea5ffc46a76c5d8077a8bc9 (diff) | |
download | cpython-a37b0932285b5e883b13a46ff2a32f15d7339894.zip cpython-a37b0932285b5e883b13a46ff2a32f15d7339894.tar.gz cpython-a37b0932285b5e883b13a46ff2a32f15d7339894.tar.bz2 |
gh-118335: Rename --experimental-interpreter on Windows to --experimental-jit-interpreter (#118497)
Also fix docs for this in whatsnew.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/build.bat | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/PCbuild/build.bat b/PCbuild/build.bat index 43a99aa..13bd895 100644 --- a/PCbuild/build.bat +++ b/PCbuild/build.bat @@ -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 |