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
Thanks for this tool, it's a great share. I can compile a static version of python 2.7.13 with static builtin modules.
However, I need to compile the builtin _ctypes module too. It works but I have an issue when I try to import ctypes.
import ctypes # builtin
'module' object has no attribute 'dllhandle'
Uh oh!
There was an error while loading. Please reload this page.
Hi guys,
Thanks for this tool, it's a great share. I can compile a static version of python 2.7.13 with static builtin modules.
However, I need to compile the builtin _ctypes module too. It works but I have an issue when I try to import ctypes.
According to your CMakeLists.txt,
We need to compile a shared lib version of python instead of a static lib (REQUIRES BUILD_LIBPYTHON_SHARED) but I do need to compile a static one.
Do you have an idea?
Thanks a lot,
The text was updated successfully, but these errors were encountered: