glaux.h 定位问题

发布于 2024-08-27 18:56:05 字数 559 浏览 3 评论 0原文

我尝试编译代码,开头为:

#include<stdlib.h>
#include<GL/gl.h>
#include<glaux.h>

with command:

cc -o test test.c -I/usr/local/include -L/usr/local/lib -lMesaaux -lMesatk -lMesaGL -lXext -lX11 -lm

但我遇到的错误之一是:

test.c:3:18: error: glaux.h: No such file or directory

然后我尝试:

yum provides glaux.h

但 yum 找到任何东西。
在我安装 Mesa 之前:

yum install mesa*

那么,谁能告诉我从哪里可以获得头文件?

谢谢你在前面。

I try to compile code, that beggins with:

#include<stdlib.h>
#include<GL/gl.h>
#include<glaux.h>

with command:

cc -o test test.c -I/usr/local/include -L/usr/local/lib -lMesaaux -lMesatk -lMesaGL -lXext -lX11 -lm

But one of errors I got is:

test.c:3:18: error: glaux.h: No such file or directory

Then I try:

yum provides glaux.h

but yum find anything.
Before all I installed Mesa with:

yum install mesa*

So, can anyone tell me from where I can get the header file?

Thank you for ahead.

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

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

发布评论

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

评论(1

幽梦紫曦~ 2024-09-03 18:56:05

因此,我从包含中删除了 glaux.h(以及此标头中的所有函数调用)并使用

-lm -lGL

cc 键成功编译。

So, I deleted glaux.h from includes (and all functions calls from this header) and successfully compiled with

-lm -lGL

cc keys.

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