// Driver for c++ extractor. Operates in two modes: // - DEPS, scans build graph for active files and reports targets that need to // be build for analyzing that file. // - INPUTS, scans the source code for active files and returns all the sources // required for analyzing that file. // // Uses stdin/stdout to take in requests and provide responses. #include <unistd.h>
namespace { enumclass OpMode {
DEPS = 0,
INPUTS = 1,
};
llvm::cl::opt<OpMode> mode{ "mode",
llvm::cl::values(clEnumValN(OpMode::DEPS, "deps", "Figure out targets that need to be build"),
clEnumValN(OpMode::INPUTS, "inputs", "Figure out generated files used")),
llvm::cl::desc("Print the list of headers to insert and remove"),
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.