Lines Matching defs:invocation
84 auto invocation = std::make_shared<CompilerInvocation>();
85 invocation->getPreprocessorOpts().addRemappedFile(
88 invocation->getFrontendOpts().Inputs.push_back(
90 invocation->getFrontendOpts().ProgramAction = frontend::ParseSyntaxOnly;
91 invocation->getTargetOpts().Triple = "i386-unknown-linux-gnu";
93 compiler.setInvocation(std::move(invocation));
104 auto invocation = std::make_shared<CompilerInvocation>();
105 invocation->getPreprocessorOpts().addRemappedFile(
108 invocation->getFrontendOpts().Inputs.push_back(
110 invocation->getFrontendOpts().ProgramAction = frontend::ParseSyntaxOnly;
111 invocation->getTargetOpts().Triple = "i386-unknown-linux-gnu";
113 compiler.setInvocation(std::move(invocation));
124 auto invocation = std::make_shared<CompilerInvocation>();
125 invocation->getLangOpts().CPlusPlus = true;
126 invocation->getLangOpts().DelayedTemplateParsing = true;
127 invocation->getPreprocessorOpts().addRemappedFile(
135 invocation->getFrontendOpts().Inputs.push_back(
137 invocation->getFrontendOpts().ProgramAction = frontend::ParseSyntaxOnly;
138 invocation->getTargetOpts().Triple = "i386-unknown-linux-gnu";
140 compiler.setInvocation(std::move(invocation));