diff options
author | Manuel Klimek <klimek@google.com> | 2012-06-06 17:51:31 +0000 |
---|---|---|
committer | Manuel Klimek <klimek@google.com> | 2012-06-06 17:51:31 +0000 |
commit | a98032e4cfe283ba6a3dce00d74e456e4840f0a8 (patch) | |
tree | d4ea01eb38acd33162a955b19173e8e97a1ae54d /clang | |
parent | 5d6f01ad774dd360195ff2b6572066f9ec9589f2 (diff) | |
download | bcm5719-llvm-a98032e4cfe283ba6a3dce00d74e456e4840f0a8.tar.gz bcm5719-llvm-a98032e4cfe283ba6a3dce00d74e456e4840f0a8.zip |
Documents linking requirements for libtooling.
llvm-svn: 158088
Diffstat (limited to 'clang')
-rw-r--r-- | clang/docs/LibTooling.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/clang/docs/LibTooling.html b/clang/docs/LibTooling.html index 247c55a3113..d72bf44a4c8 100644 --- a/clang/docs/LibTooling.html +++ b/clang/docs/LibTooling.html @@ -180,6 +180,30 @@ as first argument and some source files as further positional arguments: </pre> </p> +<h3 id="linking">Linking.</h3> +<p>Please note that this presents the linking requirements at the time of this +writing. For the most up-to-date information, look at one of the tools' +Makefiles (for example +<a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/clang-check/Makefile?view=markup">clang-check/Makefile</a>). +</p> + +<p>To link a binary using the tooling infrastructure, link in the following +libraries: +<ul> +<li>Analysis</li> +<li>AST</li> +<li>Basic</li> +<li>Driver</li> +<li>Edit</li> +<li>Frontend</li> +<li>Lex</li> +<li>Parse</li> +<li>Sema</li> +<li>Serialization</li> +<li>Tooling</li> +</ul> +</p> + </div> </body> </html> |