Author: Matti Picus <[email protected]>
Branch: py3k
Changeset: r70613:b8262e67caef
Date: 2014-04-13 17:29 +0300
http://bitbucket.org/pypy/pypy/changeset/b8262e67caef/
Log: update import library name on windows
diff --git a/lib_pypy/_pypy_testcapi.py b/lib_pypy/_pypy_testcapi.py
--- a/lib_pypy/_pypy_testcapi.py
+++ b/lib_pypy/_pypy_testcapi.py
@@ -53,10 +53,10 @@
if sys.platform == 'win32':
# XXX pyconfig.h uses a pragma to link to the import library,
# which is currently python3.lib
- library = os.path.join(thisdir, '..', 'include', 'python3')
+ library = os.path.join(thisdir, '..', 'include', 'python32')
if not os.path.exists(library + '.lib'):
# For a local translation or nightly build
- library = os.path.join(thisdir, '..', 'pypy', 'goal', 'python3')
+ library = os.path.join(thisdir, '..', 'pypy', 'goal', 'python32')
assert os.path.exists(library + '.lib'),'Could not find import library
"%s"' % library
libraries = [library, 'oleaut32']
extra_ldargs = ['/MANIFEST', # needed for VC10
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit