You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CFFI extensions compiled for PyPy do not export 'init' + modname nor 'PyInit_' + modname symbols but instead they export '_cffi_pypyinit_' + modname and thus they are skipped by auditwheel. However actually auditwheel can repair them. As an example one may take a look at python-snappy - it uses cffi for PyPy. And proof for using _cffi_pypyinit_ prefix may be found at cffi/recompiler.py.
The text was updated successfully, but these errors were encountered:
CFFI extensions compiled for PyPy do not export
'init' + modname
nor'PyInit_' + modname
symbols but instead they export'_cffi_pypyinit_' + modname
and thus they are skipped byauditwheel
. However actuallyauditwheel
can repair them. As an example one may take a look atpython-snappy
- it uses cffi for PyPy. And proof for using_cffi_pypyinit_
prefix may be found atcffi/recompiler.py
.The text was updated successfully, but these errors were encountered: