[osg-users] [build] undefined symbol: _ZN11OpenThreads6AtomicmmEv

2010-10-27 Thread Huron Sam Perera
Hi, When I run my application (on Linux Debian) which has call to do intersection tests, I get: undefined symbol: ZN11OpenThreads6AtomicmmEv when the application is trying to call addIntersector() function of the osgUtil::IntersectorGroup. In my application's Makefile I only link with

Re: [osg-users] [build] undefined symbol: _ZN11OpenThreads6AtomicmmEv

2010-10-27 Thread Huron Sam Perera
Hi Robert, My debian version is 5.0.2. When I type gcc -v on my system the response is (along with bunch of other information): gcc version 4.3.2 (Debian 4.3.2-1.1). Thank you! Cheers, Huron -- Read this topic online here:

Re: [osg-users] [build] undefined symbol: _ZN11OpenThreads6AtomicmmEv

2010-10-27 Thread Huron Sam Perera
Hi Robert, The problem may be in the way I am linking with OSG libs in my Makefile. To check that I tried to create a Makefile for the osgintersection example. when I run cmake I get the following: The C compiler identification is GNU -- The CXX compiler identification is GNU -- Check for

Re: [osg-users] [build] undefined symbol: _ZN11OpenThreads6AtomicmmEv

2010-10-29 Thread Huron Sam Perera
Hi Robert, I am linking with OpenThreads. About the Makfile: The application that I am trying run with intersection checks from OSG has its own Makefile that I do not want to change other than adding the includes and libraries from OSG. Since, that procedure is giving me the undefined symbol

Re: [osg-users] [build] undefined symbol: _ZN11OpenThreads6AtomicmmEv

2010-11-04 Thread Huron Sam Perera
Hi Yurii, I followed your instructions and rebuilt OSG libraries. Then I rebuilt my app and tried it. It worked. Thank you! Cheers, Huron -- Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=33476#33476

[osg-users] [build] How to use the DatabasePager

2010-11-04 Thread Huron Sam Perera
Hi, I am converting an application that uses Performer to work with OpenSceneGraph in place of Performer. In my application, the paging is done by adding a Callback using pfDBaseFunc in which all paging is performed. I looked for a similar Callback in the DatabasePager class and could not find