diff options
| author | Alexander Kornienko <alexfh@google.com> | 2012-09-19 15:17:49 +0000 |
|---|---|---|
| committer | Alexander Kornienko <alexfh@google.com> | 2012-09-19 15:17:49 +0000 |
| commit | 66fb1fb0736d12364c516d9ed9e0d2ac64a064a7 (patch) | |
| tree | 2bd29fd6a84b25ddfdf150b2f90918fdfd5b0a2f | |
| parent | f744fa917ddc3d045c96de623880a57bca31214f (diff) | |
| download | bcm5719-llvm-66fb1fb0736d12364c516d9ed9e0d2ac64a064a7.tar.gz bcm5719-llvm-66fb1fb0736d12364c516d9ed9e0d2ac64a064a7.zip | |
Added link to HowToSetupToolingForLLVM.html. Added missing #include to the example.
llvm-svn: 164226
| -rw-r--r-- | clang/docs/LibTooling.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/docs/LibTooling.html b/clang/docs/LibTooling.html index d896a5f8857..163d24a7f1a 100644 --- a/clang/docs/LibTooling.html +++ b/clang/docs/LibTooling.html @@ -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 @@ tool is also checked into the clang tree at tools/clang-check/ClangCheck.cpp. // 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" |

