[pypy-commit] cffi default: Mention it's work in progress

arigo pypy.commits at gmail.com
Sat Feb 13 04:29:38 EST 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r2629:9fc77fff3e63
Date: 2016-02-13 10:29 +0100
http://bitbucket.org/cffi/cffi/changeset/9fc77fff3e63/

Log:	Mention it's work in progress

diff --git a/cffi/api.py b/cffi/api.py
--- a/cffi/api.py
+++ b/cffi/api.py
@@ -551,8 +551,10 @@
         #
         if '__pypy__' in sys.builtin_module_names:
             if sys.platform == "win32":
-                # we need 'libpypy-c.lib' (included with recent pypy distrib)
-                # in addition to the runtime 'libpypy-c.dll'
+                # we need 'libpypy-c.lib'.  Right now, distributions of
+                # pypy contain it as 'include/python27.lib'.  You need
+                # to manually copy it back to 'libpypy-c.lib'.  XXX Will
+                # be fixed in the next pypy release.
                 pythonlib = "libpypy-c"
                 if hasattr(sys, 'prefix'):
                     ensure('library_dirs', sys.prefix)


More information about the pypy-commit mailing list