| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |
This variable is used when the jlinker native implementation is initialized.
Some versions of the Java VM require that the environment variable LD_LIBRARY_PATH include the path(s) to the Java VM shared libraries, even though the Java VM shared library is loaded by Lisp. If the setting is required, it must be done before Lisp is started - using (setf sys:getenv) (after Lisp has started) is not sufficient. If the setting is required, but not there, the Java VM exits the application unconditionally with the message
Error occurred during initialization of VM Unable to load native library: libjvm.so: cannot open shared object file:
Thus, the setting of the environment variable is outside the control
of the Lisp application. If the variable *jni-ld-path-p*
is non-nil
, we attempt to determine if LD_LIBRARY_PATH is
set correctly, and if not, signal a continuable error.
The initial value of this variable is t
in
the linux86 port of ACL. The initial value of this variable is
nil
in all other ports.
If the value of the variable is a string, we look for a file with that
name in all the directories mentioned in LD_LIBRARY_PATH. If the value
of the variable is some other non-nil
value,
we look for a file named "libjvm.so", "libjvm.dll", or "libjvm.dylib",
as approriate for the current operating system.
See jlinker.htm for general information on the jLinker facility.
Copyright (c) 1998-2016, Franz Inc. Oakland, CA., USA. All rights reserved.
This page was not revised from the 8.1 page.
Created 2010.1.21.
| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |