
Hi all, I've tried to install HaXml as explained in the documentation:
runhaskell Setup.hs configure
However, I get as response: dyld: Library not loaded: GNUreadline.framework/Versions/A/GNUreadline Referenced from: /usr/local/bin/runhaskell Reason: image not found Trace/BPT trap Any idea about this problem? Some comments about my configuration: Mac/OS Darwin 8.11.1 GHC-6.6 Hugs - Version September 2006 Thanks in advance, Rodrigo.

"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

rodrigo.bonifacio wrote:
Hi all,
I've tried to install HaXml as explained in the documentation:
runhaskell Setup.hs configure
However, I get as response:
dyld: Library not loaded: GNUreadline.framework/Versions/A/GNUreadline Referenced from: /usr/local/bin/runhaskell Reason: image not found Trace/BPT trap
Any idea about this problem?
You should install the frameworks http://www.haskell.org/ghc/dist/mac_frameworks/mac_e.htm Cheers Christian
participants (3)
-
Christian Maeder
-
Malcolm Wallace
-
rodrigo.bonifacio