Hi Simon,

The thing is, /usr/lib64 where the system boost reside is not on the LD_LIBRARY_PATH. How do you set that so that whatever value I set in LD_LIBRARY_PATH will superceed /usr/lib64?

If it finds the system-installed boost before yours, and the system-installed boost is in /usr/lib64, then I don't see how /usr/lib64 could not be in your LD_LIBRARY_PATH... Unless there's some new mechanism for specifying shared library search paths that I'm not aware of...

Generally, to make sure your own libraries are used before system ones, you put your path before the rest of the LD_LIBRARY_PATH.

export LD_LIBRARY_PATH=(my path):${LD_LIBRARY_PATH}

That way it will search in (my path) before the rest of the paths.

J-S
--
______________________________________________________
Jean-Sebastien Guay    [email protected]
                               http://www.cm-labs.com/
                        http://whitestar02.webhop.org/
_______________________________________________
osg-users mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Reply via email to