What is Alien Flux?
At the moment I don’t think GCJ would be faster than Jet as GCJ is still in it’s early stages.
But then you have the ability to turn off bounds checking with GCJ, which is the bit making my fingers itch!
Of course I don’t actually have Jet to make a comparision, which sounds like a job for you Cas
Neither would it meet you magic 5 Meg file size at the moment, as even simple applications are compiling to around 4 meg. Although interestingly the files are initially 1/3 smaller, then mysteriously bump up a meg or so.
Those error messages look quite confusing, I haven’t encountered them at all (or at least don’t remember).
If this is a large project try starting with a small section and get that running - then enlarge.
It might be just that it is not finding the correct files, although GCJ does have some quirks in its language parser.
things like this:
import java.awt.image.*;
did not work for me, I had to make my libraries explicit
import java.awt.image.MemoryImageSource;
import java.awt.blahblahblah;
(Note: not that the awt exists in GCJ V3.2, I just used it as an example!)
Woz.