1) I want to create a dll file of the below tcl sample code and i am facing lot of troubles while doing this. I am working on linux (ubuntu 10.04) machine. The name of the file is clock.tcl. I have seen many websites but i couldn't get the exact process to follow.
2) I am also struggling with the exact command on linux to create a dll file of a tcl code
I am new to tcl and creating dll also. Can anybody help me out to solve this problem. Please help me soon.
clock.tcl
#!/usr/bin/env tclsh8.5
package require Tk
namespace eval ::sd {
set time0 0
set value 0
set h_outfile "i"
}
proc every {ms body} {eval $body; after $ms [info level 0]}
proc time_ms { } {
set m [clock milliseconds]
puts " in time_ms time is $m"
set m [format %2.2d:%2.2d:%2.2d.%2.2d \
[expr {$m/3600000}] [expr {$m/60000}] [expr {($m/1000)%60}] [expr {$m%1000}]]
incr ::sd::value
set ::sd::time0 $m
puts $::sd::h_outfile " \t $::sd::time0 \t $::sd::value \n"
}
proc open_log { } {
set ::sd::h_outfile [open "output.txt" "w"]
puts " file is $::sd::h_outfile"
puts $::sd::h_outfile " \t hr::mm::ss::ms \t temperature in celcius \n"
}
if {$argc < 1} {
open_log
every 100 {
time_ms
}
}