
i get the following error message new.o:fake:(.text+0x85): undefined reference to `parseczm2zi0_TextziParserCombin atorsziParsecziChar_oneOf_closure' new.o:fake:(.rodata+0x4): undefined reference to `parseczm2zi0_TextziParserCombi natorsziParsecziChar_oneOf_closure' collect2: ld returned 1 exit status when compiling the following code module Main where import System.Environment import Text.ParserCombinators.Parsec hiding (spaces) symbol = oneOf "!$%&|*+-/:<=>?@^_~" main = do return 1 any help is greatly appreciated. i am running ghc-6.6 on a windows xp machine.

On Mar 20, 2007, at 1:23 PM, david karapetyan wrote:
i get the following error message
new.o:fake:(.text+0x85): undefined reference to `parseczm2zi0_TextziParserCombin atorsziParsecziChar_oneOf_closure'
Add either the --make parameter or the -package parsec parameter to GHC. -- brandon s. allbery [solaris,freebsd,perl,pugs,haskell] allbery@kf8nh.com system administrator [openafs,heimdal,too many hats] allbery@ece.cmu.edu electrical and computer engineering, carnegie mellon university KF8NH
participants (2)
-
Brandon S. Allbery KF8NH
-
david karapetyan