Hi, Thank you for your Answer, it clears up some things. I got it to work. The problem was in linking to the standard library. Like you wrote:
"NDK r7 has a strange bug with the order of linking std libraries just add -lgnustl_static at the end and it will be solved. " For anyone having the same problem, the solution was to edit the Android.mk file in the project/jni/ folder (project being osgViewerExample[1/2]) on the LOCAL_LDLIBS to change it to this: from LOCAL_LDLIBS := -llog -lGLESv2 -lz to LOCAL_LDLIBS := -llog -lGLESv2 -lz -lgnustl_static I'm about to write a tutorial with screenshots to get openscenegraph to run. Thank you! Cheers, Bernd ------------------ Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=46332#46332 _______________________________________________ osg-users mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

