Compiling java into native code?

compiler-construction, java, native

Solution

GNU Compiler for the Java can be found at http://gcc.gnu.org/install/binaries.html

And you may try the following tools:

- JET: http://www.excelsior-usa.com/jet.html

- Exe4j: http://www.ej-technologies.com/products/exe4j/overview.html

Problem

I'm trying to find a java compiler that I can use to compile my java code into native binaries on different operating systems. I have heard of the GNU Compiler for Java but I can't seem to find a download for that and I think it's dead anyway. Are there any good up-to-date compilers out there that I can use to compile java code into a .exe and a .app or anything or can you tell me how to get the GNU Compiler for Java.

Original source

Related problems