Kabbalah error for llvm-general

Trying to install llvm-general-3.3.5.

You have a local installation of ghc-7.6.3, therefore, to configure the llvm-general package after downloading the binary file, the following command is used:

runhaskell Setup configure --user --/path/to/local --with-compiler=7.6.3 

as suggested on haskell.org here . This causes this error:

 Setup.hs:42:13: Couldn't match expected type `ProgramSearchPath -> IO (Maybe FilePath)' with actual type `IO (Maybe FilePath)' In the return type of a call of `findJustBy' Probable cause: `findJustBy' is applied to too many arguments In the expression: findJustBy (findProgramLocation v) llvmConfigNames In the expression: \ v -> findJustBy (findProgramLocation v) llvmConfigNames 

Deleting configuration settings gets the same result. Any ideas? I am on a Linux scientific machine.

Thanks!

+4
source share

All Articles