新手尝试编译:有些未在此范围内声明

发布于 2024-10-31 02:47:38 字数 1432 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

晒暮凉 2024-11-07 02:47:38

您缺少

#include <GL/glut.h>

#include <openglut.h>

glutSpecialFunction 的文档告诉您这一点。

You're missing

#include <GL/glut.h>

or

#include <openglut.h>

The documentation for glutSpecialFunction tells you this.

兲鉂ぱ嘚淚 2024-11-07 02:47:38

我快速浏览了您链接的 zip 文件。

你为什么不使用“make”。

Makefile 已包含在内。您可能需要做的就是在执行 g++ 的地方执行“make”。

您收到该错误的原因是 Main.cpp 试图包含 glut 标头,但未找到它们。

Makefile 将设置这些位置进行编译

I've taken a quick look at the zip you linked.

Why are you not using "make".

Makefiles have been included. all you probably need to do is execute 'make' where you're executing g++

The reason you're getting that error is that the Main.cpp is trying to include the glut headers but they're not found.

The Makefile will set those locations for compilation

不弃不离 2024-11-07 02:47:38

您可能在 Main.cpp 中缺少 #include,或者您的头文件对于程序来说已经过时或太新。

You are either missing an #include <glutfile.h> in Main.cpp or your header files are outdated or too new for the program.

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