glut.h 的链接器错误

发布于 2024-07-15 09:09:32 字数 332 浏览 9 评论 0原文

[链接器错误] 未定义对 `__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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风苍溪 2024-07-22 09:09:32

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文