8

我从这里下载了 Haskell 平台源:http ://www.haskell.org/platform/linux.html ,安装了 ghc,并做了 /.configure。但是,当我执行 sudo make 时,出现以下错误:

Preprocessing library HUnit-1.2.4.2...

Test/HUnit/Base.hs:1:1:
    Could not find module `Prelude'
    Perhaps you haven't installed the profiling libraries for package `base'?
    Use -v to see a list of the files searched for.

Error:
Building the HUnit-1.2.4.2 package failed
make: *** [build.stamp] Error 2

有谁知道如何解决这个问题?

我正在尝试在 Ubuntu 12.04.1 LTS 上安装

4

2 回答 2

8

与其尝试从源代码安装,不如简单地安装 Ubuntu 软件包,这会简单得多,包括:

  $ sudo apt-get install haskell-platform

如果您需要本地版本的文档和分析库,请安装其他软件包:

  $ sudo apt-get install haskell-platform-doc haskell-platform-prof
于 2012-10-24T21:38:25.800 回答
5

Daniel Fisher 的评论让我找到了解决方案。您必须为已安装的每个 ghc 软件包安装所有分析库。写吧

sudo apt-get install ghc*-prof

这就是它对我有用的方式

于 2013-04-09T12:51:20.623 回答