Andreas Goebel wrote on Monday, April 16, 2007 1:42 PM: > Hi, > > I have a strange problem with the osgUtil::LineSegmentIntersector. > Everything works as I expect, only in MSVC Release-Mode I get > occasional crashes. In Debug-Mode and with my MinGW-Build-system I > cannot reproduce those crashes. > > Unfortunately I cannot find where it crashes (as only the release > version crashes). When running the release-binary in the debugger I > only see the dlls where the program was, and those were osgUtil, then > ntdll.dll . > > I am aware of the fact that there cannot be fixes for a problem as > vague > as this, but maybe someone has experienced something like this and can > give an idea.
MSVC allows you to generate debug info even in Release Mode; make sure you set the Debug Information Format in the C++ project options, and tell the Linker to generate Debugging output. That might produce more useful information when you run in the debugger. HTH, -- Bryan Thrall FlightSafety International [EMAIL PROTECTED] _______________________________________________ osg-users mailing list [email protected] http://openscenegraph.net/mailman/listinfo/osg-users http://www.openscenegraph.org/
