I am facing an issue when setting the native library path for a Java process (say, com.example.Main), launched via a simple bash script on a 64-bit CentOS 5 machine.
The related script code is as follows:
#!/bin/bash
export JAVA_HOME=/usr/local/java
export EXTRA_LD_LIBRARY_PATH=/opt/extra/lib64:/opt/extra/java/libs
${JAVA_HOME}/bin/java -Djava.library.path=${EXTRA_LD_LIBRARY_PATH}:${LD_LIBRARY_PATH} com.example.Main
In the EXTRA_LD_LIBRARY_PATH, I have placed some 64-bit native libraries that are needed by the Main class.
However, the Main class causes a Java InternalError to be thrown, despite the library files being in /opt/extra/lib64. If, however, I copy these same library files to /usr/lib64, the error goes away and the code works as expected. (Incidentally, env shows that LD_LIBRARY_PATH is not set, so /usr/lib64 is apparently used by some default setting.)
Is that normal behavior?
Thanks!