
15 Apr
2008
15 Apr
'08
10:02 a.m.
"rodrigo.bonifacio"
runhaskell Setup.hs configure
dyld: Library not loaded: GNUreadline.framework/Versions/A/GNUreadline Referenced from: /usr/local/bin/runhaskell Reason: image not found Trace/BPT trap
The problem is that 'runhaskell' invokes ghci (the interpreter), which requires readline, which you do not have on your Mac. Instead, you could compile Setup.hs with ghc, which will not require readline. ghc --make Setup ./Setup configure ./Setup build ./Setup install Regards, Malcolm