Tcl7.6 was configured with:
configure -prefix=/vol/wang/wang2/pt/cxh/tcl7 --enable-gcc -enable-shared
Tcl8.0 was configured with:
configure -prefix=/vol/wang/wang2/pt/cxh/tcl --enable-gcc -enable-sharedTclBlend was configured with
./configure --with-java=/vol/wang/wang2/pt/cxh/jdk1.1.5 --prefix=/vol/wang/wang2/pt/cxh/tclblendJacl was configured with:
./configure --with-java=/vol/wang/wang2/pt/cxh/jdk1.1.5 --prefix=/vol/wang/wang2/pt/cxh/jaclI then modified the
unix/Makefile
so that the
Java class files were optimized.
http://cm.bell-labs.com/cm/cs/who/bwk/timingtests.tar.gz
and
http://cm.bell-labs.com/cm/cs/who/bwk/timingdata.tar.gz
gets
. It appears that
gets
returns 0 when the end of file is reached instead of
returning -1. The fix was to edit the tcl sources for
the tail, wc and sum1 tests and change the >=
to
>
:
while {[gets $fd line] >= 0} {became
while {[gets $fd line] > 0} {
fconfigure
, so the cat and tail
Tcl tests need the fconfigure
wrapped in a catch
:
catch {fconfigure stdout -buffering full} ;# not needed on unix
makefile
appropriately.
make jclass
to compile the
Java tests used by Java and Tcl Blend.
make p.plt
to create p.plt
.
This took a very long time, some of the Jacl tests take 30 minutes to run.
js/index.html
. We then copied
the output with the mouse and pasted it into a file.
Trademarks are properties of their respective owners.
cxh at eecs