[Haskell-cafe] Installing HaXml

Malcolm Wallace Malcolm.Wallace at cs.york.ac.uk
Tue Apr 15 10:02:11 EDT 2008


"rodrigo.bonifacio" <rodrigo.bonifacio at uol.com.br> wrote:

> > 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


More information about the Haskell-Cafe mailing list