From: Alexander Kornienko Date: Wed, 19 Sep 2012 15:17:49 +0000 (+0000) Subject: Added link to HowToSetupToolingForLLVM.html. Added missing #include to the example. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1050966ea67a8e1838bc0b072fdef12684f36227;p=clang Added link to HowToSetupToolingForLLVM.html. Added missing #include to the example. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164226 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LibTooling.html b/docs/LibTooling.html index d896a5f885..163d24a7f1 100644 --- a/docs/LibTooling.html +++ b/docs/LibTooling.html @@ -16,6 +16,8 @@

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.

+

For the information on how to setup Clang Tooling for LLVM see +HowToSetupToolingForLLVM.html

Introduction

@@ -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"