glut.h 的链接器错误
[链接器错误] 未定义对 `__glutInitWithExit@12' 的引用
[链接器错误] 未定义对 `__glutCreateWindowWithExit@8' 的引用
[链接器错误] 未定义对 `__glutCreateMenuWithExit@8' 的引用
[链接器错误] 未定义对 `glutSolidSphere@16' 的引用
如果我包含 glut.h 标头,就会出现上述问题..为什么?
没有它我就无法使用 glutSolidSphere()..
顺便说一句,我正在使用 DEV C++..
[Linker error] undefined reference to `__glutInitWithExit@12'
[Linker error] undefined reference to `__glutCreateWindowWithExit@8'
[Linker error] undefined reference to `__glutCreateMenuWithExit@8'
[Linker error] undefined reference to `glutSolidSphere@16'
the problem above came out if i include glut.h header.. why?
i cant use glutSolidSphere() without it..
im using DEV C++ btw..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
glut.h 标头仅声明函数。 您需要链接到实现它们的库,这应该在 glut 文档中进行描述。
The glut.h header just declares the functions. You need to link with the library that implements them, which should be described in the glut documentation.