Changeset View
Changeset View
Standalone View
Standalone View
include/clang/Driver/Options.td
Show First 20 Lines • Show All 2,638 Lines • ▼ Show 20 Lines | |||||
def no_system_header_prefix : Joined<["--"], "no-system-header-prefix=">, | def no_system_header_prefix : Joined<["--"], "no-system-header-prefix=">, | ||||
Group<clang_i_Group>, Flags<[CC1Option]>, MetaVarName<"<prefix>">, | Group<clang_i_Group>, Flags<[CC1Option]>, MetaVarName<"<prefix>">, | ||||
HelpText<"Treat all #include paths starting with <prefix> as not including a " | HelpText<"Treat all #include paths starting with <prefix> as not including a " | ||||
"system header.">; | "system header.">; | ||||
def : Separate<["--"], "no-system-header-prefix">, Alias<no_system_header_prefix>; | def : Separate<["--"], "no-system-header-prefix">, Alias<no_system_header_prefix>; | ||||
def s : Flag<["-"], "s">, Group<Link_Group>; | def s : Flag<["-"], "s">, Group<Link_Group>; | ||||
def target : Joined<["--"], "target=">, Flags<[DriverOption, CoreOption]>, | def target : Joined<["--"], "target=">, Flags<[DriverOption, CoreOption]>, | ||||
HelpText<"Generate code for the given target">; | HelpText<"Generate code for the given target">; | ||||
def _print_supported_cpus : Flag<["-", "--"], "print-supported-cpus">, | def print_supported_cpus : Flag<["-", "--"], "print-supported-cpus">, | ||||
Group<CompileOnly_Group>, Flags<[CC1Option, CoreOption]>, | Group<CompileOnly_Group>, Flags<[CC1Option, CoreOption]>, | ||||
HelpText<"Print supported cpu models for the given target (if target is not specified," | HelpText<"Print supported cpu models for the given target (if target is not specified," | ||||
" it will print the supported cpus for the default target)">; | " it will print the supported cpus for the default target)">; | ||||
def mcpu_EQ_QUESTION : Flag<["-"], "mcpu=?">, Alias<_print_supported_cpus>; | def mcpu_EQ_QUESTION : Flag<["-"], "mcpu=?">, Alias<print_supported_cpus>; | ||||
def mtune_EQ_QUESTION : Flag<["-"], "mtune=?">, Alias<_print_supported_cpus>; | def mtune_EQ_QUESTION : Flag<["-"], "mtune=?">, Alias<print_supported_cpus>; | ||||
def gcc_toolchain : Joined<["--"], "gcc-toolchain=">, Flags<[DriverOption]>, | def gcc_toolchain : Joined<["--"], "gcc-toolchain=">, Flags<[DriverOption]>, | ||||
HelpText<"Use the gcc toolchain at the given directory">; | HelpText<"Use the gcc toolchain at the given directory">; | ||||
def time : Flag<["-"], "time">, | def time : Flag<["-"], "time">, | ||||
HelpText<"Time individual commands">; | HelpText<"Time individual commands">; | ||||
def traditional_cpp : Flag<["-", "--"], "traditional-cpp">, Flags<[CC1Option]>, | def traditional_cpp : Flag<["-", "--"], "traditional-cpp">, Flags<[CC1Option]>, | ||||
HelpText<"Enable some traditional CPP emulation">; | HelpText<"Enable some traditional CPP emulation">; | ||||
def traditional : Flag<["-", "--"], "traditional">; | def traditional : Flag<["-", "--"], "traditional">; | ||||
def trigraphs : Flag<["-", "--"], "trigraphs">, Alias<ftrigraphs>, | def trigraphs : Flag<["-", "--"], "trigraphs">, Alias<ftrigraphs>, | ||||
▲ Show 20 Lines • Show All 564 Lines • Show Last 20 Lines |