llvm icon indicating copy to clipboard operation
llvm copied to clipboard

Build Failure LLVM-TF-3.0.0.1

Open ghost opened this issue 11 years ago • 2 comments

In Type.hs

There is a typo.

Line 75, FFI.fP128Type should be FFI.fp128Type -- error is the case of "p"

In LLVM.Core.Instructions

Line 177 has a type error. p :: Int when the function expects a CInt. This is because FFI.cmpInstGetPredicate returns an IO Int not IO CInt Not sure how best to fix this.

ghost avatar Aug 06 '13 17:08 ghost

Hey Jonathan, most of the Haskell LLVM based development has been moved to llvm-general, see hackage.haskell.org/package/llvm-general and https://github.com/bscarlet/llvm-general

if you're doing your own llvm based haskell dev, or maintaining a project that uses llvm, and want an actively maintained library, I warmly recommend you migrate to llvm-general :)

cartazio avatar Aug 06 '13 19:08 cartazio

Thank you very much for the reply. I would like to use llvm as a backend for some compiler projects and LLVM-General looks nice!

On 13-08-06 01:31 PM, Carter Tazio Schonwald wrote:

Hey Jonathan, most of the Haskell LLVM based development has been moved to llvm-general, see hackage.haskell.org/package/llvm-general and https://github.com/bscarlet/llvm-general

if you're doing your own llvm based haskell dev, or maintaining a project that uses llvm, and want an actively maintained library, I warmly recommend you migrate to llvm-general :)

— Reply to this email directly or view it on GitHub https://github.com/bos/llvm/issues/71#issuecomment-22204613.

ghost avatar Aug 14 '13 00:08 ghost