如何在尝试制作haskell-platform时修复错误2?

时间:2012-10-24 20:32:50

标签: haskell ubuntu haskell-platform

我从这里下载了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上安装

2 个答案:

答案 0 :(得分:8)

而不是尝试从源代码安装,只需安装Ubuntu软件包,这将更加简单:

  $ sudo apt-get install haskell-platform

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

  $ sudo apt-get install haskell-platform-doc haskell-platform-prof

答案 1 :(得分:5)

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

sudo apt-get install ghc*-prof

这就是它对我有用的方式