我需要从源文件安装haskell平台,以便在安装了cabal,ghc和其他所需的Ubuntu库的说明中指出。
当我尝试使用以下命令安装haskell平台时:
./platform.sh /home/myuser/haskell/ghc-7.10.2-x86_64-unknown-linux-deb7.tar.bz2 -j 3
我收到以下错误:
***
*** Building hptool
***
Building hptool-0.1...
Preprocessing executable 'hptool' for hptool-0.1...
***
*** Running hptool
***
Error when running Shake build system:
* 3
Error, file does not exist and no rule available:
3
我找不到任何有同样错误的人。我下载的haskell平台版本是haskell-platform-7.10.2-a
答案 0 :(得分:0)
使用./platform.sh
脚本时,您无法传递-j 3
等构建选项。
尝试手动构建和运行hptool:
cd hptool
cabal sandbox init
cabal install -j3
cd ..
./hptool/.cabal-sandbox/bin/hptool PATH-TO-GHC-BINDIST SHAKE-TARGET
运行没有参数的hptool来获取SHAKE-TARGET的有效值列表。