1998-07-16 15:02:34 +02:00
|
|
|
This is the first release of "Kaffe OpenVM", a complete virtual machine
|
|
|
|
and class library set which allows the execution of Java code without any
|
|
|
|
code from Javasoft. It comes with a virtual machine and a set of class
|
|
|
|
libraries including beans, and the all important AWT graphics system.
|
1998-01-28 11:48:58 +01:00
|
|
|
|
|
|
|
Running Kaffe
|
|
|
|
=============
|
|
|
|
Before running Kaffe it is necessary to configure the environment.
|
1998-07-16 15:02:34 +02:00
|
|
|
This requires the setting of PATH and LD_LIBRARY_PATH.
|
1998-01-28 11:48:58 +01:00
|
|
|
For the standard installation these would be defined as follows:
|
|
|
|
|
1999-11-10 19:03:25 +01:00
|
|
|
PATH=$PATH:/${PREFIX}/kaffe/bin
|
|
|
|
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${PREFIX}/kaffe/lib
|
1998-01-28 11:48:58 +01:00
|
|
|
|
1998-07-16 15:02:34 +02:00
|
|
|
Note that you don't have to setup the CLASSPATH - if you do then that's
|
|
|
|
fine, but if you don't Kaffe will cosntruct a classpath from the Jar and Zip
|
|
|
|
files it finds in the standard places (the default would be to include all
|
1999-11-10 19:03:25 +01:00
|
|
|
files in ${PREFIX}/kaffe/share/kaffe).
|
1998-07-16 15:02:34 +02:00
|
|
|
|
1998-01-28 12:04:33 +01:00
|
|
|
The value ${PREFIX} above is whatever LOCALBASE is set to in the
|
|
|
|
environment, or in /etc/mk.conf, when the package was installed on
|
|
|
|
NetBSD. By default this is /usr/pkg.
|