This repository has been archived by the owner on Mar 30, 2021. It is now read-only.
forked from llvm-mirror/clang
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an option to enable on-demand parsing of needed ASTs during CTU analysis, and another option to specify the compilation database used. The option CTUOnDemandParsing is a boolean flag, which enables the new AST-loading mode. Option CTUOnDemandParsingDatabase is a string, which should be the path of the compilation database used for on-demand parsing. The compilation database is needed for on-demand mode, because it has all the necessary information to generate the ASTs. Please enter the commit message for your changes. Lines starting
- Loading branch information
Showing
18 changed files
with
455 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,5 @@ add_clang_library(clangCrossTU | |
clangBasic | ||
clangFrontend | ||
clangIndex | ||
clangTooling | ||
) |
Oops, something went wrong.