1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Source: jikes
Section: devel
Priority: optional
Maintainer: Mike Goldman <whig@by.net>
Standards-Version: 3.1.1.1
Package: jikes
Architecture: any
Depends: ${shlibs:Depends}, java-common, java-virtual-machine
Provides: java-compiler
Description: Fast Java compiler adhering to language and VM specifications
Jikes is a Java compiler that translates Java source files as defined in The
Java Language Specification (Addison-Wesley, 1996) into the bytecoded
instruction set and binary format defined in The Java Virtual Machine
Specification (Addison-Wesley, 1996). Unlike other compilers, Jikes accepts
the Java language only as specified: not as a subset, variant, or superset.
.
In addition to strictly adhering to specifications, Jikes is faster than most
compilers and can compute the complete dependency relations in program files.
This allows for the generation of dependency makefiles suitable for use with
make. Jikes can also be run in incremental mode: after the initial
compilation, Jikes waits until prompted, determines which files have been
changed, and then does the minimal amount of work needed to bring the class
files into a complete and consistent state. This cycle can be repeated until
the q command is entered to end the compilation.
|