//===--- StandaloneExecution.h - Standalone execution. -*- C++ ----------*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file defines standalone execution of clang tools. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_TOOLING_STANDALONEEXECUTION_H #define LLVM_CLANG_TOOLING_STANDALONEEXECUTION_H #include "clang/Tooling/ArgumentsAdjusters.h" #include "clang/Tooling/Execution.h" #include <optional> namespace clang { namespace tooling { /// A standalone executor that runs FrontendActions on a given set of /// TUs in sequence. /// /// By default, this executor uses the following arguments adjusters (as defined /// in `clang/Tooling/ArgumentsAdjusters.h`): /// - `getClangStripOutputAdjuster()` /// - `getClangSyntaxOnlyAdjuster()` /// - `getClangStripDependencyFileAdjuster()` class StandaloneToolExecutor : public ToolExecutor { … }; } // end namespace tooling } // end namespace clang #endif // LLVM_CLANG_TOOLING_STANDALONEEXECUTION_H