| Hi Robert, Am 22.11.2013 um 11:08 schrieb Robert Osfield <[email protected]>:
Thanks for the clarification.
I did a search if the bug is known, but can’t find anything valuable. On the other side is the osgga-serializer not that performance-critical and it affects only the 3.2-branch, for trunk we can workaround with the explicit destructor. And I can try to remove the workaround when a new clang-version is available. Attached you’ll find a modified cmake-file for review. By the way, can you merge the standard-lib-cmake-selection-patch I sent into the 3.2-branch? cheers, Stephan |
FILE(GLOB TARGET_SRC *.cpp) FILE(GLOB TARGET_H *.h) SET(TARGET_ADDED_LIBRARIES osgGA )
# fix an obscure compiler bug for xcode 5 + clang IF(CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND APPLE) SET(CMAKE_CXX_FLAGS_RELEASE "-O0 -DNDEBUG") SET(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O0 -g -DNDEBUG") ENDIF() #### end var setup ### SETUP_PLUGIN(osgga)
_______________________________________________ osg-submissions mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-submissions-openscenegraph.org
