Changeset View
Changeset View
Standalone View
Standalone View
clang/include/clang/Driver/Options.td
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
Show First 20 Lines • Show All 1,434 Lines • ▼ Show 20 Lines | def fno_pch_validate_input_files_content: | ||||
Group<f_Group>, Flags<[DriverOption]>; | Group<f_Group>, Flags<[DriverOption]>; | ||||
def fpch_instantiate_templates: | def fpch_instantiate_templates: | ||||
Flag <["-"], "fpch-instantiate-templates">, | Flag <["-"], "fpch-instantiate-templates">, | ||||
Group<f_Group>, Flags<[CC1Option]>, | Group<f_Group>, Flags<[CC1Option]>, | ||||
HelpText<"Instantiate templates already while building a PCH">; | HelpText<"Instantiate templates already while building a PCH">; | ||||
def fno_pch_instantiate_templates: | def fno_pch_instantiate_templates: | ||||
Flag <["-"], "fno-pch-instantiate-templates">, | Flag <["-"], "fno-pch-instantiate-templates">, | ||||
Group<f_Group>, Flags<[CC1Option]>; | Group<f_Group>, Flags<[CC1Option]>; | ||||
def fpch_codegen: | |||||
Flag<["-"], "fpch-codegen">, | |||||
Group<f_Group>, Flags<[CC1Option]>, | |||||
HelpText<"Generate code for uses of this PCH that assumes an explicit " | |||||
"object file will be built for the PCH">; | |||||
def fno_pch_codegen: | |||||
Flag<["-"], "fno-pch-codegen">, | |||||
Group<f_Group>, Flags<[CC1Option]>; | |||||
def fpch_debuginfo: | |||||
Flag<["-"], "fpch-debuginfo">, | |||||
Group<f_Group>, Flags<[CC1Option]>, | |||||
HelpText<"Generate debug info for types in an object file built from this " | |||||
"PCH and do not generate them elsewhere">; | |||||
def fno_pch_debuginfo: | |||||
Flag<["-"], "fno-pch-debuginfo">, | |||||
Group<f_Group>, Flags<[CC1Option]>; | |||||
dblaikie: Refactor this to use OptInFFlag if possible | |||||
def fmodules : Flag <["-"], "fmodules">, Group<f_Group>, | def fmodules : Flag <["-"], "fmodules">, Group<f_Group>, | ||||
Flags<[DriverOption, CC1Option]>, | Flags<[DriverOption, CC1Option]>, | ||||
HelpText<"Enable the 'modules' language feature">; | HelpText<"Enable the 'modules' language feature">; | ||||
def fimplicit_module_maps : Flag <["-"], "fimplicit-module-maps">, Group<f_Group>, | def fimplicit_module_maps : Flag <["-"], "fimplicit-module-maps">, Group<f_Group>, | ||||
Flags<[DriverOption, CC1Option]>, | Flags<[DriverOption, CC1Option]>, | ||||
HelpText<"Implicitly search the file system for module map files.">; | HelpText<"Implicitly search the file system for module map files.">; | ||||
def fmodules_ts : Flag <["-"], "fmodules-ts">, Group<f_Group>, | def fmodules_ts : Flag <["-"], "fmodules-ts">, Group<f_Group>, | ||||
▲ Show 20 Lines • Show All 3,396 Lines • Show Last 20 Lines |
Refactor this to use OptInFFlag if possible