Lines Matching defs:DriverOptions
80 struct DriverOptions { struct
81 DriverOptions() {} in DriverOptions() function
82 bool verbose{false}; // -v
83 bool compileOnly{false}; // -c
84 std::string outputPath; // -o path
85 std::vector<std::string> searchDirectories{"."s}; // -I dir
86 bool forcedForm{false}; // -Mfixed or -Mfree appeared
87 bool warnOnNonstandardUsage{false}; // -Mstandard
88 bool warnOnSuspiciousUsage{false}; // -pedantic
89 bool warningsAreErrors{false}; // -Werror
90 Fortran::parser::Encoding encoding{Fortran::parser::Encoding::LATIN_1};
91 bool lineDirectives{true}; // -P disables
92 bool syntaxOnly{false};
93 bool dumpProvenance{false};
94 bool noReformat{false}; // -E -fno-reformat
95 bool dumpUnparse{false};
96 bool dumpParseTree{false};
97 bool timeParse{false};
121 void RunOtherCompiler(DriverOptions &driver, char *source, char *relo) { in RunOtherCompiler() argument