Installing LLVM Haskell Binding on Snow Leopard
This is really just a quick memo to all those out there who install llvm (with Homebrew, perhaps), and then discover that when cabal tries to install the haskell bindings for llvm, it says it can't find the llvm installation ("configure: error: could not find LLVM C bindings"). For homebrew users:
brew install --universal llvm
If you're using a makefile:
UNIVERSAL=1 make
Other installation methods doubtless have trivial equivalents.
↧