pyczmq icon indicating copy to clipboard operation
pyczmq copied to clipboard

Switch to cffi.verify()

Open michelp opened this issue 12 years ago • 0 comments

Currently using ABI level compatibility that opens the zmq and czmq libraries with dlopen(). CFFI provides an API level mode where a small stub python extension is built at initial import time to export the library APIs to Python. It has many portability and version management advantages but requires a compiler. Precompiled platform binaries can be optionally distributed.

Support for both is also possible and fairly trivial, any thoughts @claws or @hintjens?

michelp avatar Oct 16 '13 20:10 michelp