背景
我一直在使用光泽库进行一些简单的图表工作。但是当谈到更具互动性的时候,我发现我想要一个更强大的库。在做了一些研究后,我决定我喜欢SDL库的功能,并希望尝试为它安装Haskell绑定。我不知道这一点。
第1部分:
如何安装和配置SDL二进制文件以便Haskell绑定可以使用它们?
第2部分:
Hackage中众多且记录不清的SDL软件包中的哪一个是社区当前首选的绑定?如何正确安装该软件包?
第3部分:(可选)
如果SDL不适合haskell开发,那么首选的替代方案是什么?
答案 0 :(得分:4)
我将回答您关于SDL2的问题(也应该对SDL1进行一些修改)。
为Windows安装pkg-config (How to install pkg config in windows?)
这个工具非常重要。各种Cabal软件包使用它来搜索库,并包含链接和编译的说明。
下载适用于Windows / MinGW的SDL开发库: http://libsdl.org/release/SDL2-devel-2.0.3-mingw.tar.gz
如果您安装了32位版本的Haskell平台,请解压缩文件夹 i686-w64-mingw32
对于64位版本,提取 x86_64-w64-mingw32
您将获得以下布局:
包括 份额
斌
lib
使用pkg-config“注册”库。
将lib / pkgconfig / sdl2.pc复制到pkg-config.exe的文件夹中,或相应地修改/创建PKG_CONFIG_PATH。检查您是否正确设置了所有内容:
C:\ pkg-config --list-all | grep sdl2
sdl2 sdl2 - 简单的DirectMedia Layer是一种跨平台的多媒体 库旨在提供对音频,键盘的低级访问 鼠标,操纵杆,通过OpenGL的3D硬件和2D视频帧缓冲。
将bin文件夹添加到PATH环境变量中。
通过Cabal安装程序安装sdl2软件包,并告诉Cabal在哪里可以找到您的库。
实施例: cabal install sdl2 --extra-include-dirs = C:\ lib \ sdl2 \ include --extra-lib-dirs = C:\ lib \ sdl2 \ lib \
为了测试我的安装,我写了一个小例子:
https://github.com/ftl2014/haskell-stuff/blob/master/sdl/
警告经纪人:
如果Cabal抱怨“丢失”库,可能是实际找到库但它不兼容(例如使用32位而不是64位版本)或损坏的情况。头文件也是如此。 出于某种原因,Cabal抱怨没有找到SDL.h,我不得不使用存档的根包含文件夹中的标题(但也许我只是喝了太多的Kool-aid)。
答案 1 :(得分:1)
我无法在我的系统上安装它。这是我尝试过的。奇怪的是,我能够配置查找头文件而不是实际的二进制文件。
让我们试一试。我已经安装了新的2014 Haskell平台。
cabal install sdl
Configuring SDL-0.6.5...
setup.exe: The package has a './configure' script. This requires a Unix
compatibility toolchain such as MinGW+MSYS or Cygwin.
Failed to install SDL-0.6.5
Haskell平台中的GHC附带MinGW,因此我们可能需要安装MSYS。 MSYS page表示安装minggw get,表示要安装
名为mingw-get-setup.exe的自动GUI安装程序助手是首次安装的首选方法。这将指导您正确设置 mingw-get 安装程序;然后,您将使用它来执行进一步的软件包安装,并管理您的安装。
使用默认选项运行安装程序会为我们提供以下屏幕:
我们已经安装了Haskell平台,所以我们只点击列表中的最后一项msys-base,然后选择" Mark for Installation"。然后,在"安装"在左上角的菜单中,选择" Apply Changes"。这询问是否可以继续,我们选择" Apply"
此安装程序没有将msys-base放在路径中,我们可以将其添加到路径中,然后再次尝试安装sdl
set PATH=C:\MinGW\msys\1.0\bin\;%PATH%
cabal install sdl
Configuring SDL-0.6.5...
configure: WARNING: unrecognized options: --with-compiler, --with-gcc
checking for sdl-config... no
checking for sdl11-config... no
configure: error: *** SDL not found! Get SDL from www.libsdl.org.
If you already installed it, check it's in the path. If problem remains,
please send a mail to the address that appears in ./configure --version
indicating your platform, the version of configure script and the problem.
Failed to install SDL-0.6.5
我们需要下载并安装libsdl。我转到libsdl download page并下载了Win32开发库SDL-devel-1.2.15-mingw32.tar.gz
。我解压缩了这个档案(7-zip可以提取tar档案和gzip压缩文件)。为方便起见,我将SDL-1.2.15
目录移至c:
。我们会按照上一个错误的建议将其添加到路径中,然后重试
set PATH=C:\SDL-1.2.15\bin\;%PATH%
cabal install sdl
* Missing (or bad) header file: SDL/SDL.h
* Missing C library: SDL
This problem can usually be solved by installing the system package that
provides this library (you may need the "-dev" version). If the library is
already installed but in a non-standard location then you can use the flags
--extra-include-dirs= and --extra-lib-dirs= to specify where it is.
If the header file does exist, it may contain errors that are caught by the C
compiler at the preprocessing stage. In this case you can re-run configure
with the verbosity flag -v3 to see the error messages.
我们可以通过添加建议的--extra-include-dirs
标记来消除此错误的一部分,但仍会出现以下错误
cabal install sdl --extra-include-dirs=c:\SDL-1.2.15\include
* Missing C library: SDL
This problem can usually be solved by installing the system package that
provides this library (you may need the "-dev" version). If the library is
already installed but in a non-standard location then you can use the flags
--extra-include-dirs= and --extra-lib-dirs= to specify where it is.
使用--extra-lib-dirs
或c:\SDL-1.2.15\bin
或C:\SDL-1.2.15\lib
添加c:\SDL-1.2.15
标记无法解决此问题。