Ubuntu 中的 OpenGL/SDL 问题
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
获取 SDL 的所有编译器标志的最简单方法是使用 sdl-config:
the simplest way to get all the compiler flags for SDL is by using
sdl-config
:不,Ubuntu 默认情况下没有它们(至少是开发版本)。 对于我自己的小程序,我刚刚安装了 libsdl1.2-dev 和 mesa-common-dev (OpenGL)。
对于构建过程,我使用 scons 生成以下命令:
如果将库安装在某个非标准位置,则可能必须指定自己的包含 (-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:
If you install the libraries in some non-standard location, you might have to specify your own include (-I) and library (-L) paths.