SDL.h:没有这样的文件或目录

发布于 2024-12-10 04:59:20 字数 309 浏览 0 评论 0原文

我已经在我的 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 技术交流群。

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

发布评论

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

评论(1

折戟 2024-12-17 04:59:20

正确的方法是添加`sdl-config -- cflags` 到您的 CXXFLAGS。 (您还应该将 `sdl-config --libs` 添加到您的 LIBS,即使您的情况似乎不需要它。)

从链接中解释:使用命令 < code>sdl-config --cflags --libs(对于 SDL 1.2)或 sdl2-config --cflags --libs(对于 SDL2),例如:

gcc -o test test.c `sdl-config --cflags --libs`

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 or sdl2-config --cflags --libs for SDL2, for example:

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