Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

I followed this tutorial: http://wadeawalker.wordpress.com/2010/10/17/tutorial-faster-rendering-with-vertex-buffer-objects/ When I try to start my application, I'm getting a

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

Error. Can anyone help me? Teddy

like image 382
jhbruhn Avatar asked Feb 26 '12 13:02

jhbruhn


1 Answers

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

like image 55
Rocky Avatar answered Sep 21 '22 01:09

Rocky