llvm icon indicating copy to clipboard operation
llvm copied to clipboard

Haskell bindings to the LLVM compiler infrastructure project.

Results 26 llvm issues
Sort by recently updated
recently updated
newest added

If the library search path and regular PATH variables point to different versions of LLVM the package configuration file will point to multiple versions of LLVM. See http://projects.haskell.org/pipermail/haskell-llvm/2013-May/000327.html for details.

What are the plans for documenting this library? It's not easy to grok by just reading through the comments alone. Following something like [this guide](http://llvm.org/docs/tutorial/OCamlLangImpl3.html), it's hard for me to...

The easiest way to describe the bug is to link to a stackoverflow posting I made regarding the bug. http://stackoverflow.com/questions/16181742/haskell-llvm-duplicate-functions-created The problem is that inside a monad the call newNamedFunction...

This occurs because the Haskell Platform links using the gcc (and MinGW) it ships with, causing the Haskell Platform libstdc++ to be linked, which is unlikely to be binary-compatible with...

LLVM has deprecated the ModuleProvider wrappers quite some time ago. I think we should follow suit and do the same. This patch 44ddf8a61dfd2a658e06939d8ea597ae3011442d shows what a complete removal would look...

The `ExecutionEngine` has been restricted to the land of FFI for quite some time. The preferred route for dealing with an `ExecutionEngine` has been through the `EngineAccess` monad. This is...

I'll do that later this week unless anyone has objections, also we should have an explicit changelog file unless there are any objections

I'm just starting to explore the module, so not sure it makes sense in this case, but I know it was the answer for me when I encountered a similar...

After our last discussion in the mailing list I have replaced mtl by transformers in llvm-tf. I propose to do the same replacement in 'llvm', too. I have prepared a...

The LLVM bindings map the `Bool` type to an `i1`. This works fine (though perhaps a bit slow) within LLVM generated code but does not work with `externFunction` mappings or...