I am starting to work through the Write Yoursef a Scheme in 48 Hours tutorial and am trying to compile the simpleparser1.hs program from the tutorial.
module Main where
import System.Enviroment
import Text.ParserCombinators.Parsec hiding (spaces)
main :: IO ()
main = do args <- getArgs
putStrLn (readExpr (args !! 0))
symbol :: Parser Char
symbol = oneOf "!$%&|*+-/:<=?>@^_~#"
readExpr :: String -> String
readExpr input = case parse symbol "lisp" input of
Left err -> "No match: " ++ show err
Right val -> "Found value"
GHC seems to get hung up over the parsec library:
ghc -v -package parsec -o simple_parser simpleparser1.hs
Glasgow Haskell Compiler, Version 7.0.4, for Haskell 98, stage 2 booted by GHC version 7.0.2
Using binary package database: /Library/Frameworks/GHC.framework/Versions/7.0.4-x86_64/usr/lib/ghc-7.0.4/package.conf.d/package.cache
Using binary package database: /Users/haziz/.ghc/x86_64-darwin-7.0.4/package.conf.d/package.cache
*** Deleting temp files:
Deleting:
*** Deleting temp dirs:
Deleting:
<command line>: cannot satisfy -package parsec
(use -v for more information)
When I tried to make sure that parsec is installed or tried to install it using cabal I got the following error messages (sorry, -v option therefore verbose):
cabal -v install parsec
Reading available packages...
Resolving dependencies...
In order, the following would be installed:
parsec-3.1.2 (new version)
Extracting
/Users/haziz/Library/Haskell/repo-cache/hackage.haskell.org/parsec/3.1.2/parsec-3.1.2.tar.gz
to /var/folders/8g/mxcx70rj42n80q_jcfvx4p5w0000gn/T/parsec-3.1.2771...
Configuring parsec-3.1.2...
Flags chosen: base4=True
Dependency base ==4.3.1.0: using base-4.3.1.0
Dependency bytestring ==0.9.1.10: using bytestring-0.9.1.10
Dependency mtl ==2.0.1.0: using mtl-2.0.1.0
Dependency text ==0.11.1.5: using text-0.11.1.5
Using Cabal-1.10.2.0 compiled by ghc-7.0
Using compiler: ghc-7.0.4
Using install prefix: /Users/haziz/Library/Haskell/ghc-7.0.4/lib/parsec-3.1.2
Binaries installed in:
/Users/haziz/Library/Haskell/ghc-7.0.4/lib/parsec-3.1.2/bin
Libraries installed in:
/Users/haziz/Library/Haskell/ghc-7.0.4/lib/parsec-3.1.2/lib
Private binaries installed in:
/Users/haziz/Library/Haskell/ghc-7.0.4/lib/parsec-3.1.2/libexec
Data files installed in:
/Users/haziz/Library/Haskell/ghc-7.0.4/lib/parsec-3.1.2/share
Documentation installed in:
/Users/haziz/Library/Haskell/ghc-7.0.4/lib/parsec-3.1.2/doc
Using alex version 2.3.5 found on system at: /usr/bin/alex
Using ar found on system at: /usr/bin/ar
No c2hs found
No cpphs found
No ffihugs found
Using gcc version 4.2.1 found on system at: /usr/bin/gcc
Using ghc version 7.0.4 found on system at: /usr/bin/ghc
Using ghc-pkg version 7.0.4 found on system at: /usr/bin/ghc-pkg
No greencard found
Using haddock version 2.9.2 found on system at: /usr/bin/haddock
Using happy version 1.18.6 found on system at: /usr/bin/happy
No hmake found
Using hsc2hs version 0.67 found on system at: /usr/bin/hsc2hs
No hscolour found
No hugs found
No jhc found
Using ld found on system at: /usr/bin/ld
No lhc found
No lhc-pkg found
No nhc98 found
Using pkg-config version 0.26 found on system at: /opt/local/bin/pkg-config
Using ranlib found on system at: /usr/bin/ranlib
Using strip found on system at: /usr/bin/strip
Using tar found on system at: /usr/bin/tar
No uhc found
creating dist/build
creating dist/build/autogen
Preprocessing library parsec-3.1.2...
Building parsec-3.1.2...
Building library...
creating dist/build
/usr/bin/ghc --make -package-name parsec-3.1.2 -hide-all-packages -fbuilding-cabal-package -i -idist/build -i. -idist/build/autogen -Idist/build/autogen -Idist/build -optP-include -optPdist/build/autogen/cabal_macros.h -odir dist/build -hidir dist/build -stubdir dist/build -package-id base-4.3.1.0-239d76b73f466dc120129098b3472858 -package-id bytestring-0.9.1.10-5bb17614aed376ea31b721a9272770b1 -package-id mtl-2.0.1.0-5b7a9cce5565d8cc8721ba4f95becf1b -package-id text-0.11.1.5-06781a638835fee88eff5d48c0d8e125 -O -O2 -XHaskell98 -XExistentialQuantification -XPolymorphicComponents -XMultiParamTypeClasses -XFlexibleInstances -XFlexibleContexts -XDeriveDataTypeable -XCPP Text.Parsec Text.Parsec.String Text.Parsec.ByteString Text.Parsec.ByteString.Lazy Text.Parsec.Text Text.Parsec.Text.Lazy Text.Parsec.Pos Text.Parsec.Error Text.Parsec.Prim Text.Parsec.Char Text.Parsec.Combinator Text.Parsec.Token Text.Parsec.Expr Text.Parsec.Language Text.Parsec.Perm Text.ParserCombinators.Parsec Text.ParserCombinators.Parsec.Char Text.ParserCombinators.Parsec.Combinator Text.ParserCombinators.Parsec.Error Text.ParserCombinators.Parsec.Expr Text.ParserCombinators.Parsec.Language Text.ParserCombinators.Parsec.Perm Text.ParserCombinators.Parsec.Pos Text.ParserCombinators.Parsec.Prim Text.ParserCombinators.Parsec.Token
<command line>: cannot satisfy -package-id mtl-2.0.1.0-5b7a9cce5565d8cc8721ba4f95becf1b
(use -v for more information)
World file is already up to date.
cabal: Error: some packages failed to install:
parsec-3.1.2 failed during the building phase. The exception was:
ExitFailure 1
Per question this is the output to ghc-pkg list mtl:
WARNING: cache is out of date: /Library/Frameworks/GHC.framework/Versions/7.0.4-x86_64/usr/lib/ghc-7.0.4/package.conf.d/package.cache
use 'ghc-pkg recache' to fix.
/Library/Frameworks/GHC.framework/Versions/7.0.4-x86_64/usr/lib/ghc-7.0.4/package.conf.d
mtl-2.0.1.0
/Users/haziz/.ghc/x86_64-darwin-7.0.4/package.conf.d
What am I doing wrong?
ghc-pkg list mtl? – Daniel Fischer May 13 '12 at 18:58ghc-pkg recache. Andghc-pkg check? – Daniel Fischer May 13 '12 at 19:44cabal install parsecis worrisome. You should look whether your package dbs are okay. Regarding typo: What's the error now? – Daniel Fischer May 13 '12 at 20:35System.Environment– rotskoff May 13 '12 at 22:30ghc-pkg check. Also, to notify someone of your comment,@replyto them. – Daniel Fischer May 13 '12 at 22:53