I installed Haskell through the pre-installed installer v6.8.2.
When trying to compile this sample file using GHC
module Main where import Text.ParserCombinators.Parsec import System.Environment main :: IO () main = do args <- getArgs putStrLn ("Hello")
I get the following error:
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
I installed Parsec via cabal.
Does anyone know what is wrong?
windows haskell parsec
chollida
source share