summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKirill Podoprigora <kirill.bast9@mail.ru>2024-05-08 16:00:38 (GMT)
committerGitHub <noreply@github.com>2024-05-08 16:00:38 (GMT)
commited2b0fb04474725a38312784e1695a1cd7c0cce1 (patch)
treedc70d62114e639b1553bfe30eb432d529a662f03
parent66f8bb76a15e64a1bb7688b177ed29e26230fdee (diff)
downloadcpython-ed2b0fb04474725a38312784e1695a1cd7c0cce1.zip
cpython-ed2b0fb04474725a38312784e1695a1cd7c0cce1.tar.gz
cpython-ed2b0fb04474725a38312784e1695a1cd7c0cce1.tar.bz2
Update Windows library names for the Python version bump (#118766)
-rw-r--r--PC/pyconfig.h.in8
-rw-r--r--PCbuild/rt.bat2
2 files changed, 5 insertions, 5 deletions
diff --git a/PC/pyconfig.h.in b/PC/pyconfig.h.in
index d72d628..f44e41c 100644
--- a/PC/pyconfig.h.in
+++ b/PC/pyconfig.h.in
@@ -316,19 +316,19 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
file in their Makefile */
# if defined(Py_GIL_DISABLED)
# if defined(_DEBUG)
-# pragma comment(lib,"python313t_d.lib")
+# pragma comment(lib,"python314t_d.lib")
# elif defined(Py_LIMITED_API)
# pragma comment(lib,"python3t.lib")
# else
-# pragma comment(lib,"python313t.lib")
+# pragma comment(lib,"python314t.lib")
# endif /* _DEBUG */
# else /* Py_GIL_DISABLED */
# if defined(_DEBUG)
-# pragma comment(lib,"python313_d.lib")
+# pragma comment(lib,"python314_d.lib")
# elif defined(Py_LIMITED_API)
# pragma comment(lib,"python3.lib")
# else
-# pragma comment(lib,"python313.lib")
+# pragma comment(lib,"python314.lib")
# endif /* _DEBUG */
# endif /* Py_GIL_DISABLED */
# endif /* _MSC_VER */
diff --git a/PCbuild/rt.bat b/PCbuild/rt.bat
index ac530a5..c436215 100644
--- a/PCbuild/rt.bat
+++ b/PCbuild/rt.bat
@@ -42,7 +42,7 @@ if "%~1"=="-O" (set dashO=-O) & shift & goto CheckOpts
if "%~1"=="-q" (set qmode=yes) & 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
-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"=="-x64" (set prefix=%pcbuild%amd64) & shift & goto CheckOpts
if "%~1"=="-amd64" (set prefix=%pcbuild%amd64) & shift & goto CheckOpts