Lines Matching +full:clang +full:- +full:tools
5 Clang provides infrastructure to write tools that need syntactic and semantic
7 the different ways to write clang tools, and their pros and cons.
10 --------
12 `LibClang <http://clang.llvm.org/doxygen/group__CINDEX.html>`_ is a stable high
13 level C interface to clang. When in doubt LibClang is probably the interface
20 * Clang Python Bindings
24 * want to interface with clang from other languages than C++
26 * want powerful high-level abstractions, like iterating through an AST with a
27 cursor, and don't want to learn all the nitty gritty details of Clang's AST.
31 * want full control over the Clang AST
33 Clang Plugins
34 -------------
36 :doc:`Clang Plugins <ClangPlugins>` allow you to run additional actions on the
41 Canonical examples of when to use Clang Plugins:
43 * special lint-style warnings or errors for your project
46 Use Clang Plugins when you...:
50 * need full control over the Clang AST
52 Do not use Clang Plugins when you...:
54 * want to run tools outside of your build environment
55 * want full control on how Clang is set up, including mapping of in-memory
61 ----------
64 tools, as well as integrating into services that run clang tools. Canonical
68 * refactoring tools
72 * want to run tools over a single file, or a specific subset of files,
74 * want full control over the Clang AST
75 * want to share code with Clang Plugins
83 * do not want to write your tools in C++
85 :doc:`Clang tools <ClangTools>` are a collection of specific developer tools
86 built on top of the LibTooling infrastructure as part of the Clang project.
90 Examples of tools we are building or planning as part of the Clang project:
92 * Syntax checking (:program:`clang-check`)
93 * Automatic fixing of compile errors (:program:`clang-fixit`)
94 * Automatic code formatting (:program:`clang-format`)
95 * Migration tools for new features in new language standards
96 * Core refactoring tools