glaux.h 定位问题
我尝试编译代码,开头为:
#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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,我从包含中删除了 glaux.h(以及此标头中的所有函数调用)并使用
cc 键成功编译。
So, I deleted glaux.h from includes (and all functions calls from this header) and successfully compiled with
cc keys.