RE: JRE file layout for 1.0.7?

2002-04-01 Thread Brent Fulgham


 Is anybody opposed to this?  It is breaking with tradition 
 somewhat, and it's for the upcoming release, so I figured
 it would be best to ask.  It'll also impact the Debian and
 RPM packages.
 

Go for it -- this will also allow side-by-side testing with other
JRE implementations by resetting the JAVA_HOME variable when
so desired.

-Brent



RE: Bug with Current KJC Compiler

2002-04-02 Thread Brent Fulgham


 Under the new KJC (from their website), it works a bit better:
 
 Administrator@BFULGHAM1 ~/java
 $ javac PlusPlusTest.java
 assertion !INTS_DISABLED() failed: file exception.c, line 386
 Aborted (core dumped)
 
 I'm not sure which is worse -- however the second case 
 indicates an issue with the JVM so might be of more interest 
 to us as time passes.
 

Actually, it seems to be related to time.  If I run in verbose mode,
everything builds just fine...

Administrator@BFULGHAM1 ~/java
$ javac OldTest.java
assertion !INTS_DISABLED() failed: file exception.c, line 386
Aborted (core dumped)

Administrator@BFULGHAM1 ~/java
$ javac -v OldTest.java
[ start compilation in verbose mode ]
[ parsed OldTest.java in 344 ms ]
[ checked interfaces in 273 ms ]
[ checked body of OldTest.java in 188 ms ]
[ optimized and generated OldTest in 187 ms ]
[ compilation ended ]

-Brent