I'm aware of python bindings as well as original c lang written libclang, but I'm trying to use it in classrooms, and we teach c++. So if anyone is aware of c++ bindings, getting hands on it would be very helpful.
Asked
Active
Viewed 393 times
1
-
libtooling? http://clang.llvm.org/docs/Tooling.html – m.s. Feb 06 '16 at 19:13
1 Answers
2
There's little purpose in using libclang from C++, since libclang is just a bad C wrapper on the Clang C++ API. If you need to use Clang from C++, just drop libclang and go straight to the source.

Puppy
- 144,682
- 38
- 256
- 465