diff options
author | Kirill Podoprigora <kirill.bast9@mail.ru> | 2024-05-08 16:00:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-08 16:00:38 (GMT) |
commit | ed2b0fb04474725a38312784e1695a1cd7c0cce1 (patch) | |
tree | dc70d62114e639b1553bfe30eb432d529a662f03 /PC/pyconfig.h.in | |
parent | 66f8bb76a15e64a1bb7688b177ed29e26230fdee (diff) | |
download | cpython-ed2b0fb04474725a38312784e1695a1cd7c0cce1.zip cpython-ed2b0fb04474725a38312784e1695a1cd7c0cce1.tar.gz cpython-ed2b0fb04474725a38312784e1695a1cd7c0cce1.tar.bz2 |
Update Windows library names for the Python version bump (#118766)
Diffstat (limited to 'PC/pyconfig.h.in')
-rw-r--r-- | PC/pyconfig.h.in | 8 |
1 files changed, 4 insertions, 4 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 */ |