GLUT编译代码:: Blocks的错误(GLUT compile errors with Code

2019-09-24 03:02发布

一个星期前,当我第一次尝试用GLUT工作,并遵循本教程 ,它的工作没有任何错误。 现在,一个星期后我安装同样的软件,同样的库,但每次我尝试编译项目,我得到这些错误(和它突出在glut.h文件中的行):

obj\Debug\main.o(.text+0x1c)||In function `glutInit_ATEXIT_HACK':|
C:\Program Files\CodeBlocks\MinGW\include\GL\glut.h|486|undefined reference to `__glutInitWithExit@12'|
obj\Debug\main.o(.text+0x3d)||In function `glutCreateWindow_ATEXIT_HACK':|
C:\Program Files\CodeBlocks\MinGW\include\GL\glut.h|503|undefined reference to `__glutCreateWindowWithExit@8'|
obj\Debug\main.o(.text+0x5d)||In function `glutCreateMenu_ATEXIT_HACK':|
C:\Program Files\CodeBlocks\MinGW\include\GL\glut.h|549|undefined reference to `__glutCreateMenuWithExit@8'|

我卸载代码:块,删除的文件GLUT(glut.h,要将glut32.dll,glut.a)并重新安装一切,但我仍然得到同样的错误。 我完全相信我的链接器设置都OK,因为我已经跟着教程。 我也尝试过其他的教程,但得到相同的结果,一堆错误。

我在做什么错了,我怎么能解决这个问题?

编辑:修正了! 所有需要,这是#include <GL/gl.h>包括前GL/glut.h

Answer 1:

我不得不添加#include <GL/gl.h>#include <GL/glut.h> 我不知道为什么,但是现在所有的例子似乎编译就好了。



文章来源: GLUT compile errors with Code::Blocks