Python from cx_Freeze
cx_Freeze is a set of scripts and modules for freezing Python scripts into executables
How can I compile Tcl type scripts into binary code
Tools available for this type of requirement
- Freewrap – read in scripts and write out single executable.
- TclPro/Tcl Dev Kit – commercial product which includes a wrapper.
- GE ICE Tcl compiler – commercial product
- Tclkit – attempt to separate the runtime environment from the application environment; results in two files to distribute. One is platform specific but application neutral. The other is platform independent, but application specific.
- Mktclapp [1] – a different kind of approach; provides tools for creating your own C or C++ mainline which then invokes tcl functions.
- Kt2c [2] – translates Tcl bytecodes into C. * Note on June 08, 2004: TPHNRAF
- TOBE (“Tcl as One Big Executable”) [3] – builds UNIX and Windows binaries
- TclWrap
- Geek Oct. 2006