Version 4 of mktclapp

Updated 2004-04-28 17:21:35

D. Richard Hipp's "utility [L1 ] that helps you mix C/C++ with Tcl/Tk to make a standalone executable."

[point to other "compilers"]


"DrumFire" reports that he has been able to use mktclapp to build .so-s from .tcl-s, for the purpose of obfuscation of the plain-text .tcl source. This was his recipe:

    mktclapp -notk -standalone -main-script function.tcl \
            -extension function function.tcl > function.c
    gcc -shared -o function.so function.c etc etc etc

The result is a loadable function.so.

2004-04-28 SRIV Neat, but look at the function.so in a hex editor. Not very obfuscated if you ask me.