Thursday, 15 April 2010

c++ - Could not load dynamic library /usr/lib/OGRE/RenderSystem_GL -



c++ - Could not load dynamic library /usr/lib/OGRE/RenderSystem_GL -

i trying run programme in c++ getting error:

terminate called after throwing instance of 'ogre::internalerrorexception' what(): ogre exception(7:internalerrorexception): not load dynamic library /usr/lib/ogre/rendersystem_gl. scheme error: /usr/lib/ogre/rendersystem_gl.so: cannot open shared object file: no such file or directory

i have installed ogre libraries problem still persists. help on bundle need install rid of error? using ubuntu 14.04.

ogre libraries shipped ubuntu installed in /usr/lib/x86_64-linux-gnu/ogre-1.9.0/ (or -1.8.0), not in /usr/lib/ogre/.

your programme attempting dlopen or similar absolute path. if cannot modify programme uses new path (or, better, lets linker decide path use), easiest solution creating symlink with:

sudo ln -s /usr/lib/x86_64-linux-gnu/ogre-1.9.0/ /usr/lib/ogre/

c++ ubuntu ogre

No comments:

Post a Comment