home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / languages / java / guavac.0.2.4.README < prev    next >
Encoding:
Text File  |  1996-07-16  |  1.7 KB  |  53 lines

  1.  
  2.        Binary Distribution of the GNU Java Compiler 0.2.4
  3.  
  4. This is a binary distribution of guavac, the GNU Java compiler which
  5. is written by Effective Edge. Although it is an early version, it's
  6. nevertheless highly portable code. This distribution runs on NeXT
  7. hardware (NEXTSTEP 3.3) and had been compiled with gcc-2.7.2 and
  8. libg++-2.7.2 with debugging information, so it's fairly large.
  9.  
  10. Installation 
  11.  
  12. 1. Unpack this distribution under /usr/gnu. Make sure that you have
  13. about 15 MB free space.
  14.  
  15.     cd /usr/gnu
  16.     gnutar xzpf guavac-0.2.4.bin-m.tar.gz
  17.  
  18. 2. Adjust your CLASSPATH, if necessary.  guavac assumes that its
  19. classes are packed in the zip file
  20. /usr/gnu/share/guavac/classes.zip. You can override the environment
  21. variable by using the command line option -classpath. See the man page
  22. for further details.
  23.  
  24. 3. Compile a Java program and take note of the speed of guavac, in
  25. comparison to the javac by Sun. The javac used here is based on the
  26. current port of Sun's JDK (1.01) to NEXTSTEP. The relation in speed
  27. also holds on the original platform Solaris.
  28.  
  29. • Write a program such as the familiar Hello World example:
  30.     
  31.     public class HelloWorld {
  32.           public static void main(String[] args) {
  33.             System.out.println("Hello World!");
  34.         }
  35.     }
  36.         
  37. • Compile and time it:
  38.     
  39.     wegmann@abulafia<21>: time javac HelloWorld.java
  40.     5.545u 2.062s 0:09.62 79.0% 0+0k 56+4io 0pf+0w        
  41.     wegmann@abulafia<22>: time guavac HelloWorld.java 
  42.     Compilation Successful: 1 classes or interfaces found:
  43.      *  HelloWorld
  44.     0.625u 0.312s 0:01.63 57.0% 0+0k 8+3io 0pf+0w
  45.  
  46. All credits go to Effective Edge. I cannot guarantee that it works
  47. under your configuration, so you're on your own.
  48.  
  49. Have a cup of Java!
  50.  
  51. Frank Wegmann
  52. <wegmann@linguistics.ruhr-uni-bochum.de>
  53.