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 | 1e282e9266a5d387f3fb11ef6156102f0931cf91 (patch) | |
tree | b3491e824b8ce72424205f25fbc7c4a9ca343720 | |
parent | facde171ae4b8926622a1bffa833732a06f1875b (diff) |
Documents linking requirements for libtooling.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158088 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/LibTooling.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/LibTooling.html b/docs/LibTooling.html index 247c55a311..d72bf44a4c 100644 --- a/docs/LibTooling.html +++ b/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> |