Hi, turns out that my error was caused by mismatched OSG headers / libs. I had a LD_LIBRARY_PATH in my .bashrc that pointed to a different OSG installation than the one in /usr. Could you double check what libraries your executable is linked against. To do so run:
Code: ldd ./executable Example: libosg.so.130 => /usr/lib/x86_64-linux-gnu/libosg.so.130 (0x00007ff47bdd9000) These libraries should match the include path (-I) to the OSG headers. Don't mix headers/libs of a different version. Cheers Jannik ------------------ Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=66936#66936 _______________________________________________ osg-users mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

