Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Where can I find documentation for the Haskell libClang bindings?

share|improve this question

1 Answer

up vote 6 down vote accepted

Since the package relies on a C library, the package does not build on Hackage, meaning the documentation also does not build.

You can generate the docs for yourself in the source directory for the package. You can get the source by running:

$ cabal unpack libclang

and then generate the docs by running:

$ cd LibClang-0.0.9    
$ cabal configure
$ cabal haddock

I did this, and put the docs for libclang here.

share|improve this answer
2  
Putting up the docs yourself is above and beyond -- as they say, a real mitzvah. – sclv May 11 '11 at 16:33
I have run into this problem before with other libraries. I wish this question (and answer) could be easily abstracted to help more people who might have this problem but with other libraries (and hence might not find this answer). – JKnight May 12 '11 at 21:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.