问题描述
我遵循了本教程:
当我尝试启动我的应用程序时,
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
错误。
谁能帮助我?
Teddy
Error.Can anyone help me?Teddy
推荐答案
库通常以 lib开头,因此您要查找的文件应称为 libgluegen-rt.so。它必须位于/ usr文件夹中的某个位置。由于您使用的是eclipse,因此可以选择构建路径配置菜单,转到库,然后在 JRE系统库下,添加.so文件所在的路径
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
这篇关于java.lang.UnsatisfiedLinkError:java.library.path RCP应用程序中没有胶水-rt的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!