Ubuntu 中的 OpenGL/SDL 问题

发布于 2024-07-14 06:36:27 字数 619 浏览 4 评论 0原文

我有一个 C 代码,但无法运行 http://dl.getdropbox.com/u/175564/problem-sdl。 png

问题出在 OpenGL 或 SDL 中。 我在 /usr/local/SDL/SDL.h 中没有 SDL.h,因此 gcc 无法找到它。

我已通过 MacPorts 在 /opt/local/include/SDL/SDL.h 安装了 SDL.h。

我尝试将其复制到文件夹中的 /Masi/local/SDL/SDL.h 但未成功

cp /opt/local/include/SDL/SDL.h /

,后来

cp /opt/local/include/SDL/SDL.h /Masi/local/SDL/

我尝试通过创建符号链接来解决问题

$ln -s /opt/local/include/SDL/SDL.h /Masi/local/SDL/SDL.h

I have a C-code which I have not managed to run
http://dl.getdropbox.com/u/175564/problem-sdl.png

The problem is in OpenGL or SDL.
I do not have SDL.h at /usr/local/SDL/SDL.h, so gcc cannot find it.

I have SDL.h installed by MacPorts at /opt/local/include/SDL/SDL.h.

I tried to copy it to /Masi/local/SDL/SDL.h unsuccessfully at the folder by

cp /opt/local/include/SDL/SDL.h /

and by

cp /opt/local/include/SDL/SDL.h /Masi/local/SDL/

I tried to solve the problem by creationg a symlink by

$ln -s /opt/local/include/SDL/SDL.h /Masi/local/SDL/SDL.h

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

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

发布评论

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

评论(2

Spring初心 2024-07-21 06:36:27

获取 SDL 的所有编译器标志的最简单方法是使用 sdl-config:

gcc sdl_gl_1.c $(sdl-config --cflags --libs) -lGL -lGLU

the simplest way to get all the compiler flags for SDL is by using sdl-config:

gcc sdl_gl_1.c $(sdl-config --cflags --libs) -lGL -lGLU
烟─花易冷 2024-07-21 06:36:27

不,Ubuntu 默认情况下没有它们(至少是开发版本)。 对于我自己的小程序,我刚刚安装了 libsdl1.2-devmesa-common-dev (OpenGL)。

对于构建过程,我使用 scons 生成以下命令:

gcc -o src/geom.o -c -Wall -ansi src/geom.c
gcc -o src/main.o -c -Wall -ansi src/main.c
gcc -o test src/main.o src/geom.o -lSDL -lGL

如果将库安装在某个非标准位置,则可能必须指定自己的包含 (-I) 和库 (-L) 路径。

No, Ubuntu does not have them by default (at least the development versions). For my own little program I just installed libsdl1.2-dev and mesa-common-dev (OpenGL).

For the build process I use scons which produces the following commands:

gcc -o src/geom.o -c -Wall -ansi src/geom.c
gcc -o src/main.o -c -Wall -ansi src/main.c
gcc -o test src/main.o src/geom.o -lSDL -lGL

If you install the libraries in some non-standard location, you might have to specify your own include (-I) and library (-L) paths.

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