我已经通过预构建的安装程序 v6.8.2 安装了 Haskell。
尝试使用 GHC 编译此示例文件时
module Main where
import Text.ParserCombinators.Parsec
import System.Environment
main :: IO ()
main = do args <- getArgs
putStrLn ("Hello")
我收到以下错误:
D:\src\Haskell>ghc -o read read.hs
ghc -o read read.hs
read.o(.text+0x1b5):fake: undefined reference to `__stginit_parseczm2zi1zi0zi0_TextziParserCombinatorsziParsec_'
collect2: ld returned 1 exit status
我已经通过 cabal 安装了 Parsec。
有没有人知道什么是错的?