[cfe-commits] r164226 - /cfe/trunk/docs/LibTooling.html
Alexander Kornienko
alexfh at google.com
Wed Sep 19 08:17:49 PDT 2012
Author: alexfh
Date: Wed Sep 19 10:17:49 2012
New Revision: 164226
URL: http://llvm.org/viewvc/llvm-project?rev=164226&view=rev
Log:
Added link to HowToSetupToolingForLLVM.html. Added missing #include to the example.
Modified:
cfe/trunk/docs/LibTooling.html
Modified: cfe/trunk/docs/LibTooling.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/LibTooling.html?rev=164226&r1=164225&r2=164226&view=diff
==============================================================================
--- cfe/trunk/docs/LibTooling.html (original)
+++ cfe/trunk/docs/LibTooling.html Wed Sep 19 10:17:49 2012
@@ -16,6 +16,8 @@
<p>LibTooling is a library to support writing standalone tools based on
Clang. This document will provide a basic walkthrough of how to write
a tool using LibTooling.</p>
+<p>For the information on how to setup Clang Tooling for LLVM see
+<a href="HowToSetupToolingForLLVM.html">HowToSetupToolingForLLVM.html</a></p>
<!-- ======================================================================= -->
<h2 id="intro">Introduction</h2>
@@ -112,6 +114,7 @@
// Declares clang::SyntaxOnlyAction.
#include "clang/Frontend/FrontendActions.h"
#include "clang/Tooling/CommonOptionsParser.h"
+#include "clang/Tooling/Tooling.h"
// Declares llvm::cl::extrahelp.
#include "llvm/Support/CommandLine.h"
More information about the cfe-commits
mailing list