On 08/22/2014 07:30 AM, ewald [via jogamp] wrote:
> I have java program utilizing the jogl libraries that I can't get to work on a
> newly configurated Linux Mint 17 system, while it runs perfectly on another
> Linux Mint 17 system. The only difference I can find between the two systems
> is the slightly more recent oracle JDK.
> Error message I am getting:
> java.lang.UnsatisfiedLinkError: Can't load library:
> /home/ewald/Schule/SJ-2014-15/Q1-Info/Gloop/2_Erdeszene/libgluegen-rt.so
>
> libgluegen-rt.so is located at the path indicated above
>
> Can anyone help me here? I should say that I am not an expert in java
> programming, I am just trying to get a system set up in a CS teaching
> environment.
I see that you utilize the LD_LIBRARY_PATH instead of using
our native jar files.
Maybe the native library is of a different version
than the loading gluegen-rt.jar ?
I recommend using our native jar files,
i.e. simply remove plain native libraries, not using LD_LIBRARY_PATH.
Simply drop all java-jar files and native-jar files into one location
(folder), done.
If you insist using native libs, or if the issue still exists,
pls test via:
> ldd -r -v
/home/ewald/Schule/SJ-2014-15/Q1-Info/Gloop/2_Erdeszene/libgluegen-rt.so
~Sven