[Tcl Java] Re: [Tcl Java] TclBlend problem on AIX...

2000-02-10 Thread Mo DeJong
It might be a JIT bug. Try setting the env var JAVA_COMPILER to "" and run it again. I have never heard of anyone getting Tcl Blend running on AIX so it looks like you are charting new waters. Mo Dejong Red Hat Inc. On Wed, 9 Feb 2000, Scott Redman wrote: > Has anyone seen this error before? Th

[Tcl Java] Re: [Tcl Java] More info on tclBlend problem on Solaris 2.5.1 ...

2000-02-10 Thread Mo DeJong
What happens if you set the env var JAVA_COMPILER to ""? If this is a Sun JIT bug that should work around the problem. I have never seen an error like this on Solaris but then again I have only tested with JDK 1.1 and a prerelease of JDK 1.2. Mo Dejong Red Hat Inc. On Wed, 9 Feb 2000 [EMAIL PROT

[Tcl Java] RE: [Tcl Java] TclBlend problem on AIX...

2000-02-10 Thread Scott Redman
Nope, that didn't do it. I've tried "" and "off". -- Scott -Original Message- From: Mo DeJong [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 10, 2000 11:51 AM To: Scott Redman Cc: [EMAIL PROTECTED] Subject: Re: [Tcl Java] TclBlend problem on AIX... It might be a JIT bug. Try sett

[Tcl Java] Re: [Tcl Java] More info on tclBlend problem on Solaris 2.5.1 ...

2000-02-10 Thread georgewu
I've tried disabling the JIT and the crash still occurs. Here is the test script I use: set tclblend_init "-native -Djava.compiler=NONE" package require java set jStrObj [::java::new String "This is a Java String ..."] set tStrObj [$jStrObj toString]