August 2014
Beginner to intermediate
314 pages
7h 57m
English
The Clang project provides three interfaces that a user can rely on to utilize Clang features and its parsing capabilities, including syntactic and semantic analyses. First, there is libclang, the primary way of interfacing with Clang, which provides a stable C API and allows an external project to plug it in and have a high-level access to the entire framework. This stable interface seeks to preserve backwards compatibility with older versions, avoiding breaking your software when a newer libclang is released. It is also possible to use libclang from other languages, for example, using the Clang Python Bindings. Apple Xcode, for instance, interacts with Clang via libclang.
Secondly, there are Clang Plugins that allow you ...