无法编译格拉斯哥 Haskell 编译器

无法编译格拉斯哥 Haskell 编译器
./configure
checking for gfind... no
checking for find... /usr/bin/find
checking for sort... /usr/bin/sort
checking for ghc... no
configure: error: GHC is required unless bootstrapping from .hc files.
256

我想安装 Glasgow Haskell Compiler,而 ./configure 要求安装 GHC。它要求安装哪种 GHC?Global Hadron Collider?我从以下网址下载了源代码http://www.haskell.org/ghc/download_ghc_7_6_3

答案1

从结果来看apt-cache show ghc

The Glasgow Haskell Compilation system (GHC) is a compiler for Haskell.  

要安装 ghc,请打开终端并输入:

sudo apt-get install ghc  

创建一个示例 Haskell 源文件 example.hs,包含:main = putStrLn "Hello, World!"要编译 example.hs,请使用以下命令将目录更改为cd包含 example.hs 的目录并输入:

ghc -o example example.hs  

要运行可执行文件:

./example  

相关内容