-
Hello, I'm building a mixed python rust project which I manage to build just fine on windows (natively). The resulting wheel works correctly when installed and called inside the normal python interpreter. Is there a way to circumvent this? I've never dealt with python on windows this deep so I am not really sure what is going on, or if it even makes sense to try and statically link the library directly? I've noticed that for the cross-compilation to windows there are some shenanigans involving this library but I am unsure if that could be useful or not. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Sublime Text only provides |
Beta Was this translation helpful? Give feedback.
Sublime Text only provides
python33.dll
andpython38.dll
thus it doesn't supportabi3
, so you can't useabi3
wheels with it, you must build a python version specific wheel.