Compiling Java into native Object Code
Has anyone ever done it with their projects? Instead of compiling it into bytecode, have it compiled into object code and execute with out a JIT compiler or the JRE?
I was thinking about doing this with JevaEngine for security, and later when a more expensive obfuscater can be purchased, possibly use that as an alternative.
What I might do, is have a Java application act as a downloader\updater(which will be multi-platform) then have the updater download the JevaEngine corresponding to the Machine OS\Processor, etc..
Opinions?
Doesn't the compiler make it into bytecode and JRE just interprets it? So JRE reads bytecode, so I doubt there is any other way.