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
First, thank you for milksnake, I found it very helpful in building external libraries with setuptools.
Here is a problem I've met: consider cffi module named p0.p1.modname, currently CffiModuleBuildStep determines module base as p0 and consequently puts compiled library and generated cffi module in build/lib/p0 directory instead of correct build/lib/p0/p1 and thus required module cannot be found and imported.
The text was updated successfully, but these errors were encountered:
First, thank you for milksnake, I found it very helpful in building external libraries with setuptools.
Here is a problem I've met: consider cffi module named
p0.p1.modname
, currentlyCffiModuleBuildStep
determines module base asp0
and consequently puts compiled library and generated cffi module inbuild/lib/p0
directory instead of correctbuild/lib/p0/p1
and thus required module cannot be found and imported.The text was updated successfully, but these errors were encountered: