[pypy-commit] pypy py3.6: link to proper lib on win32

mattip pypy.commits at gmail.com
Fri Nov 23 17:02:25 EST 2018


Author: Matti Picus <matti.picus at gmail.com>
Branch: py3.6
Changeset: r95358:e428d9b17460
Date: 2018-11-23 15:46 -0600
http://bitbucket.org/pypy/pypy/changeset/e428d9b17460/

Log:	link to proper lib on win32

diff --git a/pypy/module/cpyext/include/pyconfig.h b/pypy/module/cpyext/include/pyconfig.h
--- a/pypy/module/cpyext/include/pyconfig.h
+++ b/pypy/module/cpyext/include/pyconfig.h
@@ -38,9 +38,9 @@
     */
 #    ifdef _DEBUG
 #      error("debug first with cpython")    
-#            pragma comment(lib,"python35.lib")
+#            pragma comment(lib,"python36.lib")
 #    else
-#            pragma comment(lib,"python35.lib")
+#            pragma comment(lib,"python36.lib")
 #    endif /* _DEBUG */
 #    define HAVE_COPYSIGN 1
 #    define copysign _copysign


More information about the pypy-commit mailing list