SDL.h:没有这样的文件或目录
我已经在我的 Ubuntu 上安装了 libsdl 1.2 -dev
但问题是它不理解 #include
它说:
SDL.h: No such file or directory
但是当我输入:
kit0n@ubuntu:~$ g++ sepand.cpp -o sepand -lSDL
该项目编译没有任何问题。 我应该怎么做才能让 Ubuntu 理解 SDL.h?
I've installed libsdl 1.2 -dev
on my Ubuntu but the problem is that it doesn't understand#include<SDL.h>
And it says:
SDL.h: No such file or directory
But when i type:
kit0n@ubuntu:~$ g++ sepand.cpp -o sepand -lSDL
The project compiles without any problems.
What should I do to make Ubuntu understand SDL.h?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正确的方法是添加
`sdl-config -- cflags`
到您的 CXXFLAGS。 (您还应该将`sdl-config --libs`
添加到您的 LIBS,即使您的情况似乎不需要它。)从链接中解释:使用命令 < code>sdl-config --cflags --libs(对于 SDL 1.2)或
sdl2-config --cflags --libs
(对于 SDL2),例如:The correct way is to add
`sdl-config --cflags`
to your CXXFLAGS. (You should also add`sdl-config --libs`
to your LIBS even thou it doesn't seem to be needed in your case.)Paraphrasing from the link: use the output of the command
sdl-config --cflags --libs
for SDL 1.2 orsdl2-config --cflags --libs
for SDL2, for example: