Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 436364c

Browse files
committed
Change the pragmas to use python16.lib instead of python15.lib. (Took
me half an hour to find why it was still linking with python15.dll!)
1 parent 21a50bd commit 436364c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PC/config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,9 @@ typedef int pid_t;
215215
#ifndef USE_DL_EXPORT
216216
/* So nobody needs to specify the .lib in their Makefile any more */
217217
#ifdef _DEBUG
218-
#pragma comment(lib,"python15_d.lib")
218+
#pragma comment(lib,"python16_d.lib")
219219
#else
220-
#pragma comment(lib,"python15.lib")
220+
#pragma comment(lib,"python16.lib")
221221
#endif
222222
#endif /* USE_DL_EXPORT */
223223

0 commit comments

Comments
 (0)