Richard Smith
06900a0ffb
Update documentation to match recent API change. newFrontendActionFactory now returns a unique_ptr.
...
llvm-svn: 207789
2014-05-01 20:04:39 +00:00
James Dennett
2220dfadda
Fix indentation of a code example in LibTooling's documentation.
...
llvm-svn: 200944
2014-02-06 20:16:05 +00:00
Alexander Kornienko
4fa81df455
Changed OptionCategory variables to be static.
...
llvm-svn: 200876
2014-02-05 21:28:03 +00:00
Eli Bendersky
aa2e61f3fc
Clarify the LibTooling.rst a bit
...
The ClangCheck tool has changed and no longer is exactly equivalent to the
code pasted in the doc.
llvm-svn: 199215
2014-01-14 14:29:19 +00:00
Alexander Kornienko
a818200efb
Fixed a typo
...
llvm-svn: 197142
2013-12-12 10:08:54 +00:00
Alexander Kornienko
b5e774eb2c
Filter-out irrelevant command-line options in CommonOptionsParser.
...
Summary:
Leave only -help, -version and options from the specified category.
Updated clang-check and clang-tidy. As clang-tidy is in a separate repository,
here's the diff:
Index: tools/extra/clang-tidy/tool/ClangTidyMain.cpp
===================================================================
--- tools/extra/clang-tidy/tool/ClangTidyMain.cpp (revision 197024)
+++ tools/extra/clang-tidy/tool/ClangTidyMain.cpp (working copy)
@@ -39,7 +39,7 @@
// FIXME: Add option to list name/description of all checks.
int main(int argc, const char **argv) {
- CommonOptionsParser OptionsParser(argc, argv);
+ CommonOptionsParser OptionsParser(argc, argv, ClangTidyCategory);
SmallVector<clang::tidy::ClangTidyError, 16> Errors;
clang::tidy::runClangTidy(Checks, OptionsParser.getCompilations(),
Reviewers: djasper, klimek
Reviewed By: djasper
CC: cfe-commits, revane, klimek
Differential Revision: http://llvm-reviews.chandlerc.com/D2379
llvm-svn: 197139
2013-12-12 09:59:42 +00:00
Dmitri Gribenko
90ccd44e94
Documentation: add information about builtin includes to FAQ
...
llvm-svn: 174612
2013-02-07 14:36:37 +00:00
Sean Silva
6d2be4a24d
docs: `3.2` -> `3.3`
...
llvm-svn: 171384
2013-01-02 13:25:05 +00:00
Sean Silva
ebf3a0e465
docs: Remove useless discussion.
...
The linked Makefile is always up to date, so there's no point in having
a rotting list of libraries.
llvm-svn: 171383
2013-01-02 13:23:37 +00:00
Sean Silva
173d252601
docs: Fix up HTML links to proper reST links.
...
llvm-svn: 171382
2013-01-02 13:07:47 +00:00
Edwin Vane
524741fbbd
Style and Doc fix for CommonOptionsParser
...
- Renaming GetCompilations() and GetSourcePathList() to follow LLVM
style.
- Updating docs to reflect name change.
- Also updating help text to not mention clang-check since this class
can be used by any tool.
Reviewed By: Alexander Kornienko
llvm-svn: 170229
2012-12-14 18:58:25 +00:00
Sean Silva
709c44d1f1
docs: Convert some docs to reST.
...
Converts:
LanguageExtensions
LibASTMatchers
LibTooling
PCHInternals
ThreadSanitizer
Tooling
Patch by Mykhailo Pustovit!
(with minor edits by Dmitri Gribenko and Sean Silva)
llvm-svn: 170048
2012-12-12 23:44:55 +00:00