Home | History | Annotate | Download | only in Driver

Lines Matching full:clang

1 //===--- DriverOptions.td - Options for clang -----------------------------===//
10 // This file defines the options accepted by clang.
32 def f_clang_Group : OptionGroup<"<f (clang-only) group>">, Group<CompileOnly_Group>;
35 def clang_i_Group : OptionGroup<"<clang i group>">, Group<i_Group>;
44 // Temporary groups for clang options which we know we don't support,
46 def clang_ignored_f_Group : OptionGroup<"<clang ignored f group>">,
48 def clang_ignored_m_Group : OptionGroup<"<clang ignored m group>">,
55 // clang::driver::options::OPT_XX enum constant for XX.
73 def ccc_Group : OptionGroup<"<clang internal options>">;
74 def ccc_driver_Group : OptionGroup<"<clang driver internal options>">,
76 def ccc_debug_Group : OptionGroup<"<clang debug/development internal options>">,
87 def ccc_clang_cxx : Flag<"-ccc-clang-cxx">, CCCDriverOpt,
88 HelpText<"Enable the clang compiler for C++">;
89 def ccc_no_clang_cxx : Flag<"-ccc-no-clang-cxx">, CCCDriverOpt,
90 HelpText<"Disable the clang compiler for C++">;
91 def ccc_no_clang : Flag<"-ccc-no-clang">, CCCDriverOpt,
92 HelpText<"Disable the clang compiler">;
93 def ccc_no_clang_cpp : Flag<"-ccc-no-clang-cpp">, CCCDriverOpt,
94 HelpText<"Disable the clang preprocessor">;
95 def ccc_clang_archs : Separate<"-ccc-clang-archs">, CCCDriverOpt,
96 HelpText<"Comma separate list of architectures to use the clang compiler for">,
207 HelpText<"Pass <arg> to the clang compiler">, MetaVarName<"<arg>">,
253 HelpText<"Emit Clang AST files for source inputs">;