GNU Compiler for Java | |
Logo Size: | 70px |
Developer: | The GNU Project |
Released: | [1] |
Discontinued: | yes |
Operating System: | Unix-like |
Genre: | Compiler |
License: | GNU GPL |
The GNU Compiler for Java (GCJ) is a discontinued free compiler for the Java programming language. It was part of the GNU Compiler Collection.[2] [3]
GCJ compiles Java source code to Java virtual machine (JVM) bytecode or to machine code for a number of CPU architectures. It could also compile class files and whole JARs that contain bytecode into machine code.[4] [5]
The GCJ runtime-libraries original source is from GNU Classpath project, but there is a code difference between the libgcj
libraries. GCJ 4.3 uses the Eclipse Compiler for Java as a front-end.[6]
In 2007, a lot of work was done to implement support for Java's two graphical APIs in GNU Classpath: AWT and Swing. Software support for AWT is still in development. "Once AWT support is working then Swing support can be considered. There is at least one free-software partial implementations of Swing that may be usable.".[7] The GNU CLASSPATH was never completed to even Java 1.2 status and now appears to have been abandoned completely.
As of 2015, there were no new developments announced from GCJ and the product was in maintenance mode, with open-source Java toolchain development mostly happening within OpenJDK.[8] GCJ was removed from the GCC trunk on September 30, 2016.[9] [10] Announcement of its removal was made with the release of the GCC 7.1, which does not contain it.[11] GCJ remains part of GCC 6.
The compilation function in GCJ should have a faster start-up time than the equivalent bytecode launched in a JVM when compiling Java code into machine code.[12]
The Compiled Native Interface (CNI), previously named "Cygnus Native Interface", is a software framework for the GCJ that allows Java code to call, and be called by, native applications (programs specific to a hardware and operating-system platform) and libraries written in C++.
CNI closely resembles the JNI (Java Native Interface) framework which comes as a standard with various Java virtual machines.
The authors of CNI claim for various advantages over JNI:[13]
CNI depends on Java classes appearing as C++ classes. For example,[14] given a Java class,
one can use the class thus:
Int *mult(Int *p, int k)