Java.lang.UnsatisfiedLinkError: no gluegen-rt in java.library.path RCP application

I followed this guide: http://wadeawalker.wordpress.com/2010/10/17/tutorial-faster-rendering-with-vertex-buffer-objects/ When I try to run the application, I get

java.lang.UnsatisfiedLinkError: no gluegen-rt in java.library.path 

Error. Can someone help me? Teddy

+6
source share
3 answers

Libraries are usually preceded by "lib", so the file you are looking for should be called "libgluegen-rt.so". It should be located somewhere in the / usr folder. Since you are using eclipse, you can select “Build-Path Configuration Menu”, go to “Libraries”, then add the path in which your .so file is present in the JRE System Library.

+2
source

this is because of this not getting methods from the library try to connect the libraries correctly in the eclipse buildpath.if it does not work, maybe there is some problem in eclipse, try to run it in a different version.

0
source

If you are using ubuntu, the following may help

 sudo apt-get install libjogl-java libjogl-jni libgluegen2-rt-java libgluegen2-build-java libgluegen 
0
source

Source: https://habr.com/ru/post/909391/


All Articles