John Keiser wrote:
> > From: Bernd Kreimeier [mailto:[EMAIL PROTECTED]]
> >
> > > > I'd install the libraries in the JVM specific "lib" directory.
> >
> > Kaffe 1.0b1 use of the JDK 1.2 Invocation API:
> > vm_args.librarypath = "/opt/local/share/kaffe/lib/i386-linux/";
>
this isn't the 1.2 invocation API. it's a non-standard extension to the
1.1 invocation API. The 1.2 invocation API uses an array of key/value
pairs (something similar to the following):
args = {
{ "java.native_lib_path", "/opt/local/share/kaffe/lib/i386-linux/" },
{ "vfprintf_hook", myvfprintf_hook }
};
japhar will use this soon (on the JDK12_BRANCH, and a little later on on
the trunk.)
> > I take it that this is (an example of) the directory referred
> > to above?
> >
>
> I think so.
>
> With Japhar, it's /usr/local/japhar/lib.
or anywhere along the LD_LIBRARY_PATH, of course.
xtoph