vote up 0 vote down star

I like a bit of TiVo hacking in spare time - TiVo uses a Linux variant and TCL. I'd like to write TCL scripts on my Windows laptop, test them and then FTP them over to my TiVo.

Can I have a recommendation for a TCL debugging environment for Windows, please?

flag

33% accept rate

8 Answers

vote up 1 vote down check

Building Tcl/Tk with Mingw

link|flag
vote up 0 vote down

Nice one - thanks!

link|flag
vote up 2 vote down

Komodo from Activestate is a good IDE for Windows/Linux. There is a trial version - I am not sure if there is a free version after trial though.

link|flag
Komodo is a nice IDE for Mac/Linux/Win. Works great with Tcl. I've been using it for a few years now. – daustin777 Mar 5 at 15:41
vote up 0 vote down

http://www.tcl.tk/software/tclpro/eval/

link|flag
vote up 1 vote down

I'm not sure that you need a debugging environment as such. Just grab the binary release from ActiveState (http://www.activestate.com/Products/activetcl/index.mhtml) and run your scripts from the command prompt (C:/blahblah/tclsh myprog.tcl) and see what it spits out.

I'd advise against building it from source because it doesn't really gain you anything.

link|flag
printf (er, puts) debugging is no substitute for a good debugger. – Dana Robinson Jan 6 at 2:06
vote up 0 vote down

ActiveState has a Tcl development kit (not free, but cheap) that I've used in the past. It even worked with our embedded tcl interpreter.

http://www.activestate.com/tcl_dev_kit/

link|flag
vote up 0 vote down

I've found this breakpoint setter from the Tcl wiki (from Richard Suchenwirth) to be handy. Once the interpreter sees a call to this, say "bp beforehairyfunction", it pauses and gives you a tclsh prompt.

proc bp {{s {}}} {
        if ![info exists ::bp_skip] {
           set ::bp_skip [list]
        } elseif {[lsearch -exact $::bp_skip $s]>=0} return
    if [catch {info level -1} who] {set who ::}
    while 1 {
    	puts -nonewline "$who/$s> "; flush stdout
    	gets stdin line
    	if {$line=="c"} {puts "continuing.."; break}
    	if {$line=="i"} {set line "info locals"}
    	catch {uplevel 1 $line} res
    	puts $res
    }
 }
link|flag
vote up 0 vote down

I use ScriptDev, you can find out and download it from http://www.scriptdevelop.com.
ScriptDev is a powerful script language IDE, it can support some very popular script language, for example, Tcl, Python, Ruby, Lua, Perl and so on.
Main features:

  • Edit, debug, run tcl, python, ruby, perl, lua scripts;
  • Script compiler / encryption and generate an executable file (the script for each different level of support);
  • Analysis of efficiency function as (the script for each different level of support);
  • Keyword help, through the F1 key or move the mouse to the keyword, access to detailed information to help;
  • Collected more script extension, to help document and presentation process, in addition to the commonly used tk, wx, pmw, there are images, multimedia, the interface, and many other variety of extensions;
  • A flexible, scalable architecture, the entire system can be flexible interpretation of the expansion of various components, interface components, tools, interface style;
  • Console support functions (currently only tcl console, telnet console, serial console available);
  • Packaging TclFace pages expansion of the package, can be the object-oriented tcl script development platform available in this script pages;
  • Interface support for skin, support Office2007, Visual Studio 2005, and other interface style.
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.