summaryrefslogtreecommitdiff
path: root/cffi/api.py
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2016-02-13 10:29:12 +0100
committerArmin Rigo <arigo@tunes.org>2016-02-13 10:29:12 +0100
commiteb28ab46822b44cda71493d405e294a215b193ce (patch)
tree5503509652b316fa10351088974e12c76fa413c0 /cffi/api.py
parent69d3afc8e54f76a5aaf144479ca93a31c3355925 (diff)
downloadcffi-eb28ab46822b44cda71493d405e294a215b193ce.tar.gz
Mention it's work in progress
Diffstat (limited to 'cffi/api.py')
-rw-r--r--cffi/api.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/cffi/api.py b/cffi/api.py
index 33d02c6..420edd8 100644
--- a/cffi/api.py
+++ b/cffi/api.py
@@ -551,8 +551,10 @@ class FFI(object):
#
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)