2

cabal install gloss-raster输出:

Resolving dependencies...
Configuring gloss-raster-1.7.4.3...
Building gloss-raster-1.7.4.3...
Preprocessing library gloss-raster-1.7.4.3...
[1 of 2] Compiling Graphics.Gloss.Raster.Array ( Graphics/Gloss/Raster/Array.hs, dist/build/Graphics/Gloss/Raster/Array.o )
Warning: Couldn't figure out LLVM version!
         Make sure you have installed LLVM
ghc: could not execute: opt-3.0
cabal: Error: some packages failed to install:
gloss-raster-1.7.4.3 failed during the building phase. The exception was:
ExitFailure 1

我已经安装了 LLVM ( apt-get install llvm) 及其 Haskell 库 ( cabal install llvm),那么 LLVM 有什么问题?

sudo cabal install llvm-3.0我尝试使用我得到的安装特定版本:

Resolving dependencies...
cabal: Could not resolve dependencies:
next goal: llvm (user goal)
rejecting: llvm-3.0.1.0/installed-d41..., 3.0.1.0, 3.0.0.0, 0.10.0.1,
0.10.0.0, 0.9.1.2, 0.9.1.1, 0.9.1.0, 0.9.0.1, 0.8.2.0, 0.8.1.0, 0.8.0.2,
0.7.1.2, 0.7.1.1, 0.7.1.0, 0.7.0.1, 0.7.0.0, 0.6.8.0, 0.6.7.0, 0.6.6.0,
0.6.5.0, 0.6.4.0, 0.6.3.0, 0.6.2.0, 0.6.0.3, 0.6.0.2, 0.5.0.1, 0.4.4.2,
0.4.4.1, 0.4.2.0, 0.4.1.0, 0.4.0.3, 0.4.0.1, 0.4.0.0, 0.0.2 (global constraint
requires ==3.0)
4

2 回答 2

2

您需要安装 LLVM 编译器以便 GHC 可以使用它,但光泽库不需要 Haskell LLVM 库。

如果您的“apt-get install llvm”将 LLVM 优化器安装为“opt”而不是“opt-3.0”,那么您可能需要从 opt -> opt-3.0 手动添加链接“ln -s”

于 2012-07-12T01:15:20.300 回答
0

它看起来像gloss-raster 中的错误 - 它无法选择安装在您系统上的 LLVM。我建议在gloss@ouroborus.net 询问

于 2012-07-11T17:49:46.780 回答