windows – Haskell Parsec编译错误

前端之家收集整理的这篇文章主要介绍了windows – Haskell Parsec编译错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经通过预构建的安装程序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.

有没有人知道什么是错的?

尝试ghc –make -o read read.hs. GHC将负责链接器依赖性.
原文链接:https://www.f2er.com/windows/363630.html

猜你在找的Windows相关文章