Skip to content

Commit 4705ad7

Browse files
Fix Windows
1 parent 4fa06bf commit 4705ad7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

PC/pyconfig.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -330,21 +330,21 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
330330
the linking is explicitly handled */
331331
# if defined(Py_GIL_DISABLED)
332332
# if defined(Py_DEBUG)
333-
# pragma comment(lib,"python315t_d.lib")
333+
# pragma comment(lib,"python316t_d.lib")
334334
# elif defined(Py_LIMITED_API) || defined(Py_TARGET_ABI3T)
335335
# pragma comment(lib,"python3t.lib")
336336
# else
337-
# pragma comment(lib,"python315t.lib")
337+
# pragma comment(lib,"python316t.lib")
338338
# endif /* Py_DEBUG */
339339
# else /* Py_GIL_DISABLED */
340340
# if defined(Py_DEBUG)
341-
# pragma comment(lib,"python315_d.lib")
341+
# pragma comment(lib,"python316_d.lib")
342342
# elif defined(Py_TARGET_ABI3T)
343343
# pragma comment(lib,"python3t.lib")
344344
# elif defined(Py_LIMITED_API)
345345
# pragma comment(lib,"python3.lib")
346346
# else
347-
# pragma comment(lib,"python315.lib")
347+
# pragma comment(lib,"python316.lib")
348348
# endif /* Py_DEBUG */
349349
# endif /* Py_GIL_DISABLED */
350350
# endif /* _MSC_VER && !Py_NO_LINK_LIB */

0 commit comments

Comments
 (0)