我尝试从Twinklebar SDL教程运行简单的test.cpp,我得到这个错误:
test.cpp:2:10: fatal error: 'SDL2/SDL.h' file not found
所以我在Ubuntu / Mint中查找sdl开发包:
aptitude search sdl | grep 2
我能找到的是这样的:
libsdl1.2-dev
这是否意味着我唯一的选择是从源安装?
解决方法
这取决于您正在运行的是哪个Ubuntu版本,但是有一个用于Ubuntu的libsdl2软件包:
http://packages.ubuntu.com/search?keywords=sdl2
你想要的包叫做libsdl2-dev.
另外,关于#include< SDL / SDL.h>行,似乎推荐的方式是通过调整你的编译器标志来添加SDL的包括pah并使用#include“SDL.h”.有关更多详情,请参阅https://forums.libsdl.org/viewtopic.php?t=5997.