1

Windows 7(基本)でcmake 2.8.11で構成した後、mingw-32コンパイラを使用してQt 5.0.2でopenscenegraph-3.1.8をコンパイルしようとしています。

しかし、コンパイルプロセスで次のエラーが発生しました:-

In file included from C:/Qt/Qt5.0.2/5.0.2/mingw47_32/include/QtGui/qopengl.h:55:0,
                 from C:/Qt/Qt5.0.2/5.0.2/mingw47_32/include/QtOpenGL/qgl.h:47,
                 from C:/Qt/Qt5.0.2/5.0.2/mingw47_32/include/QtOpenGL/QGLWidget:1,
                 from C:/OpenSceneGraph-3.1.8/include/osgQt/GraphicsWindowQt:24,
                 from C:\OpenSceneGraph-3.1.8\src\osgQt\GraphicsWindowQt.cpp:15:
C:/Qt/Qt5.0.2/5.0.2/mingw47_32/include/GLES2/gl2.h:38:26: error: conflicting declaration 'typedef khronos_intptr_t GLintptr'
In file included from C:/OpenSceneGraph-3.1.8/include/osg/Array:34:0,
                 from C:/OpenSceneGraph-3.1.8/include/osg/Uniform:23,
                 from C:/OpenSceneGraph-3.1.8/include/osg/StateSet:20,
                 from C:/OpenSceneGraph-3.1.8/include/osg/State:18,
                 from C:/OpenSceneGraph-3.1.8/include/osg/GraphicsContext:17,
                 from C:/OpenSceneGraph-3.1.8/include/osgViewer/GraphicsWindow:17,
                 from C:/OpenSceneGraph-3.1.8/include/osgQt/GraphicsWindowQt:17,
                 from C:\OpenSceneGraph-3.1.8\src\osgQt\GraphicsWindowQt.cpp:15:
C:/OpenSceneGraph-3.1.8/include/osg/BufferObject:47:21: error: 'GLintptr' has a previous declaration as 'typedef int GLintptr'
In file included from C:/Qt/Qt5.0.2/5.0.2/mingw47_32/include/QtGui/qopengl.h:55:0,
                 from C:/Qt/Qt5.0.2/5.0.2/mingw47_32/include/QtOpenGL/qgl.h:47,
                 from C:/Qt/Qt5.0.2/5.0.2/mingw47_32/include/QtOpenGL/QGLWidget:1,
                 from C:/OpenSceneGraph-3.1.8/include/osgQt/GraphicsWindowQt:24,
                 from C:\OpenSceneGraph-3.1.8\src\osgQt\GraphicsWindowQt.cpp:15:
C:/Qt/Qt5.0.2/5.0.2/mingw47_32/include/GLES2/gl2.h:39:26: error: conflicting declaration 'typedef khronos_ssize_t GLsizeiptr'
In file included from C:/OpenSceneGraph-3.1.8/include/osg/Array:34:0,
                 from C:/OpenSceneGraph-3.1.8/include/osg/Uniform:23,
                 from C:/OpenSceneGraph-3.1.8/include/osg/StateSet:20,
                 from C:/OpenSceneGraph-3.1.8/include/osg/State:18,  
                 from C:/OpenSceneGraph-3.1.8/include/osg/GraphicsContext:17,
                 from C:/OpenSceneGraph-3.1.8/include/osgViewer/GraphicsWindow:17,
                 from C:/OpenSceneGraph-3.1.8/include/osgQt/GraphicsWindowQt:17,
                 from C:\OpenSceneGraph-3.1.8\src\osgQt\GraphicsWindowQt.cpp:15:
C:/OpenSceneGraph-3.1.8/include/osg/BufferObject:48:21: error: 'GLsizeiptr' has a previous declaration as 'typedef int GLsizeiptr'
4

1 に答える 1

1

別のバージョンの OpenGL 2 および OSG に対して QT を構築しているようです - QT を再構築するためのリンクを参照して ください: glew.html

于 2013-07-11T13:20:22.703 に答える