On Sat, 10 Jul 2021, Dan Stromberg wrote:
On Sat, Jul 10, 2021 at 7:18 AM Roland Lutz wrote:
I've been moving the extensions from the CPython API to PyPy/CFFI
CFFI is probably good, but did you evaluate HPY?
HPy looks like it may be exactly what I've been looking for, but
unf
On Sat, 10 Jul 2021, Matti Picus wrote:
The canonical way is to use sysconfig
pypy -c "import sysconfig;print(sysconfig.get_config_var('EXT_SUFFIX'))"
.pypy37-pp73-x86_64-linux-gnu.so
On python2.7 use 'SO'
~/oss/pypy2.7-HEAD/bin/pypy -c "import
sysconfig;print(sysconfig.get_config_var('SO')
Hi,
I am currently using CPython 2 extensions and code in a project that's
mostly written in C. I've been moving the extensions from the CPython API
to PyPy/CFFI; but now I'm struggling with integrating the CFFI extensions
into the Autotools build process.
With CPython, there is the autocon