Yeah - I ran into that too.  I came up with a "hack" way around: I
created a script called 'nojit' with the following contents:

#!/bin/sh
# 
# Run server with no JIT under Blackdown's JDK 1.2
#
echo Running java -green -Djava.compiler= $*
java -green -Djava.compiler= $*


I then set the jde-run-java-vm option to be this script (gave the full
path to it, and of course forgot to set the executable bit on the script
at 1st - that's always a nice time-waster!), set jde-run-option-vm-args
to nil, and was off.

Can't wait until Blackdown gets the native threads working better.  All
it does is crash on me right now with native threads.  It would also be
nice if the compiler wasn't so picky about where the options are!


Adam Ambrose


John Reynolds wrote:
> 
> Hi all
> 
> I have a small problem, want to set the green threads option for my
> complier (have to use this due to library problems with RH6.0 and the
> Blackdown jdk1.2).  I keep getting this:
> 
> javac -classpath "./" -deprecation -green Get.java
> 
> and what I want is:
> 
> javac -green -classpath "./" -deprecation Get.java
> 
> Any ideas on how to get the proper order?
> 
> John

Reply via email to