Lines Matching refs:tool
6 This document will provide a basic walkthrough of how to write a tool using
40 Writing a standalone tool
44 possibly break, it's time to create a standalone tool. For a standalone tool
69 static llvm::cl::OptionCategory MyToolCategory("my-tool options");
89 // A clang tool can run over a number of sources in the same process...
95 // the tool constructor.
104 Putting it together --- the first tool
107 Now we combine the two previous steps into our first real tool. A more advanced
108 version of this example tool is also checked into the clang tree at
125 static cl::OptionCategory MyToolCategory("my-tool options");
132 // A help message for this specific tool can be added afterwards.
142 Running the tool on some code
188 ``$(dirname /path/to/tool)/../lib/clang/3.3/include`` relative to the tool
190 binary directory after building clang-headers, or if the tool is running from
193 Tips: if your tool fails to find ``stddef.h`` or similar headers, call the tool