home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 20 / AACD20.BIN / AACD / Programming / Jikes / Source / README.AMIGA < prev    next >
Encoding:
Text File  |  2001-03-03  |  2.9 KB  |  60 lines

  1. This is the source of the native Amiga port (no ixemul.library required)
  2. of jikes, the free Java compiler from IBM.
  3.  
  4. The distinction between stable and development version has been
  5. dropped, so the Aminet version is the latest version.  The relevant
  6. files can also be downloaded from the Amiga Jikes home page at
  7. http://dias.cti.gr/~kyrimis/jikes/ .
  8.  
  9. To build jikes on the Amiga, you need:
  10. * A wide character library (e.g., the simple wchar library that I have
  11.   extracted from the Jikes source, available at both Aminet and the Amiga
  12.   Jikes web site).
  13. * If you want to enable support for the "-encoding" option, then you must
  14.   also install ICU, IBM's International Classes for Unicode. (This
  15.   library also requires a wide character library, which is the reason
  16.   why the Jikes wide character code cannot be used in place.)
  17.  
  18. To build, copy the files in the amiga directory to the corresponding
  19. places in the top level jikes directory (e.g., Makefile to Makefile,
  20. amiga/src/Makefile to src/Makefile, etc.), edit src/Makefile if you want
  21. to change the default CFLAGS, CXXFLAGS, LDFLAGS, and the installation
  22. prefix, then type "make". If you want to turn off support for "-encoding",
  23. edit src/config.h and undefine the HAVE_LIB_ICU_UC symbol, and also
  24. remove -licu-uc  from LIBS in src/Makefile.
  25.  
  26. If you want to increase the optimization level, note that using -O2
  27. will produce a binary that is about a megabyte larger, and the resulting
  28. gains in compilation time will be overwhelmed by the additional loading
  29. time. Also note that you will need at least 70M of memory to compile
  30. jikes with -O2, i.e., you will most likely need to use VMM, and that on
  31. a 68040@28MHz it takes about a day to produce the optimized binary. In
  32. other words, don't bother.
  33.  
  34. If you prefer to run "configure" manually, you will have to tweak the
  35. created files manually, using the files in the amiga folder as a guide.
  36.  
  37. INSTALLATION:
  38. Simply copy the jikes executable somewhere in your path.
  39.  
  40. USAGE:
  41. Set either the CLASSPATH or the JIKESPATH environment variable to point
  42. to the directories and zip/jar files that you want your compiler to use.
  43. E.g., if you are using Kaffe, you can say:
  44. setenv CLASSPATH "GG:share/kaffe/Klasses.jar;GG:share/kaffe/Pizza.jar;."
  45. Separate the path components using semicolons. You can use UNIX "." and ".."
  46. notation for the current directory and for the parent directory of a
  47. directory.
  48.  
  49. If you find a bug in the Amiga port, you can contact me at kyrimis@cti.gr
  50. and I'll see what I can do.
  51.  
  52. Kriton Kyrimis.
  53.  
  54. ******************************************************************************
  55. This software is subject to the terms of the IBM Public License, available
  56. at the following URL: http://www.research.com/jikes/license/license3.htm.
  57. Copyright (C) 1996, 2000 International Business Machines Corporation
  58. and others.  All Rights Reserved.
  59. ******************************************************************************
  60.