mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 07:35:08 +00:00
clang_tu: set RecoveryAST & RecoveryASTType
This commit is contained in:
parent
55c0d5b4eb
commit
20a9f7b5f4
@ -156,6 +156,10 @@ buildCompilerInvocation(const std::string &main, std::vector<const char *> args,
|
|||||||
// Enable IndexFrontendAction::shouldSkipFunctionBody.
|
// Enable IndexFrontendAction::shouldSkipFunctionBody.
|
||||||
ci->getFrontendOpts().SkipFunctionBodies = true;
|
ci->getFrontendOpts().SkipFunctionBodies = true;
|
||||||
ci->getLangOpts()->SpellChecking = false;
|
ci->getLangOpts()->SpellChecking = false;
|
||||||
|
#if LLVM_VERSION_MAJOR >= 11
|
||||||
|
ci->getLangOpts()->RecoveryAST = true;
|
||||||
|
ci->getLangOpts()->RecoveryASTType = true;
|
||||||
|
#endif
|
||||||
auto &isec = ci->getFrontendOpts().Inputs;
|
auto &isec = ci->getFrontendOpts().Inputs;
|
||||||
if (isec.size())
|
if (isec.size())
|
||||||
isec[0] = FrontendInputFile(main, isec[0].getKind(), isec[0].isSystem());
|
isec[0] = FrontendInputFile(main, isec[0].getKind(), isec[0].isSystem());
|
||||||
|
Loading…
Reference in New Issue
Block a user