5 ms·
Nuitka – A Python Compiler
- fiatjaf 12y agoI don't understand it. Am I supposed to be able to create standalone executables with this? How?
- skybagle 12y agoIt's similar to Facebook's HipHop PHP to C++ transpiler (HPHPc). It was deprecated in favor of HHVM JIT technology.
- wodenokoto 12y agoYes. You can compile to .exe files. >The resulting binary still depends on CPython and used C >extension modules being installed. > If you want to be able to copy it to another machine, > use --standalone and copy the created program.dist directory > and execute the program.exe put inside. http://nuitka.net/doc/user-manual.html#use-case-1-program-compilation-with-all-modules-embedded http://nuitka.net/doc/user-manual.html#use-case-1-program-co...
- fiatjaf 12y agoThank you.
- skybagle 12y agoWould be great if they'd also fix Python's dreadful non-threadsafe C API. The GIL and all the global variables impede multiple independent interpreter instance performance.