Update Windows library names for the Python version bump (#118766)

This commit is contained in:
Kirill Podoprigora 2024-05-08 19:00:38 +03:00 committed by GitHub
parent 66f8bb76a1
commit ed2b0fb044
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -316,19 +316,19 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
file in their Makefile */ file in their Makefile */
# if defined(Py_GIL_DISABLED) # if defined(Py_GIL_DISABLED)
# if defined(_DEBUG) # if defined(_DEBUG)
# pragma comment(lib,"python313t_d.lib") # pragma comment(lib,"python314t_d.lib")
# elif defined(Py_LIMITED_API) # elif defined(Py_LIMITED_API)
# pragma comment(lib,"python3t.lib") # pragma comment(lib,"python3t.lib")
# else # else
# pragma comment(lib,"python313t.lib") # pragma comment(lib,"python314t.lib")
# endif /* _DEBUG */ # endif /* _DEBUG */
# else /* Py_GIL_DISABLED */ # else /* Py_GIL_DISABLED */
# if defined(_DEBUG) # if defined(_DEBUG)
# pragma comment(lib,"python313_d.lib") # pragma comment(lib,"python314_d.lib")
# elif defined(Py_LIMITED_API) # elif defined(Py_LIMITED_API)
# pragma comment(lib,"python3.lib") # pragma comment(lib,"python3.lib")
# else # else
# pragma comment(lib,"python313.lib") # pragma comment(lib,"python314.lib")
# endif /* _DEBUG */ # endif /* _DEBUG */
# endif /* Py_GIL_DISABLED */ # endif /* Py_GIL_DISABLED */
# endif /* _MSC_VER */ # endif /* _MSC_VER */

View file

@ -42,7 +42,7 @@ if "%~1"=="-O" (set dashO=-O) & shift & goto CheckOpts
if "%~1"=="-q" (set qmode=yes) & shift & goto CheckOpts if "%~1"=="-q" (set qmode=yes) & shift & goto CheckOpts
if "%~1"=="-d" (set suffix=_d) & shift & goto CheckOpts if "%~1"=="-d" (set suffix=_d) & shift & goto CheckOpts
rem HACK: Need some way to infer the version number in this script rem HACK: Need some way to infer the version number in this script
if "%~1"=="--disable-gil" (set pyname=python3.13t) & shift & goto CheckOpts if "%~1"=="--disable-gil" (set pyname=python3.14t) & shift & goto CheckOpts
if "%~1"=="-win32" (set prefix=%pcbuild%win32) & shift & goto CheckOpts if "%~1"=="-win32" (set prefix=%pcbuild%win32) & shift & goto CheckOpts
if "%~1"=="-x64" (set prefix=%pcbuild%amd64) & shift & goto CheckOpts if "%~1"=="-x64" (set prefix=%pcbuild%amd64) & shift & goto CheckOpts
if "%~1"=="-amd64" (set prefix=%pcbuild%amd64) & shift & goto CheckOpts if "%~1"=="-amd64" (set prefix=%pcbuild%amd64) & shift & goto CheckOpts