]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - include/clang/Driver/Options.def
Update clang to r86025.
[FreeBSD/FreeBSD.git] / include / clang / Driver / Options.def
1 //===--- Options.def - Driver option info -----------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the driver option information. Users of this file
11 // must define the OPTION macro to make use of this information.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef OPTION
16 #error "Define OPTION prior to including this file!"
17 #endif
18
19 // OPTION(NAME, ID, KIND, GROUP, ALIAS, FLAGS, PARAM, 
20 //        HELPTEXT, METAVARNAME)
21
22 // The NAME value is the option name as a string.
23
24 // The ID is the internal option id, which must be a valid
25 // C++ identifier, and results in a clang::driver::options::OPT_XX
26 // enum constant for XX.
27 // 
28 // We want to unambiguously be able to refer to options from the
29 // driver source code, for this reason the option name is mangled into
30 // an id. This mangling isn't guaranteed to have an inverse, but for
31 // practical purposes it does.
32 //
33 // The mangling scheme is to ignore the leading '-', and perform the
34 // following substitutions:
35 //   _ => __
36 //   - => _
37 //   # => _HASH
38 //   , => _COMMA
39 //   = => _EQ
40 //   C++ => CXX
41
42 // The KIND value is the option type, one of Group, Flag, Joined,
43 // Separate, CommaJoined, JoinedOrSeparate, JoinedAndSeparate.
44
45 // The GROUP value is the internal name of the option group, or
46 // INVALID if the option is not part of a group.
47
48 // The ALIAS value is the internal name of an aliased option, or
49 // INVALID if the option is not an alias.
50
51 // The PARAM value is a string containing option flags. Valid values:
52 //  d: The option is a "driver" option, and should not be forwarded to
53 //     gcc.
54 //
55 //  i: The option should not render the name when rendered as an
56 //     input (i.e., the option is rendered as values).
57 //
58 //  l: The option is a linker input.
59 //
60 //  q: Don't report argument unused warnings for this option; this is
61 //     useful for options like -static or -dynamic which a user may
62 //     always end up passing, even if the platform defaults to (or
63 //     only supports) that option.
64 //
65 //  u: The option is unsupported, and the driver will reject command
66 //     lines that use it.
67 //
68 //  S: The option should be rendered separately, even if joined (only
69 //     sensible on joined options).
70 //
71 //  J: The option should be rendered joined, even if separate (only
72 //     sensible on single value separate options).
73
74 // The PARAM value is an arbitrary integer parameter; currently
75 // this is only used for specifying the number of arguments for
76 // Separate options.
77
78 // The HELPTEXT value is the string to print for this option in
79 // --help, or 0 if undocumented.
80
81 // The METAVAR value is the name to use for this values arguments (if
82 // any) in the help text. This must be defined if the help text is
83 // specified and this option takes extra arguments.
84
85 //
86
87 // For now (pre-TableGen, that is) Options must be in order. The
88 // ordering is *almost* lexicographic, with two exceptions. First,
89 // '\0' comes at the end of the alphabet instead of the beginning
90 // (thus options preceed any other options which prefix them). Second,
91 // for options with the same name, the less permissive version should
92 // come first; a Flag option should preceed a Joined option, for
93 // example.
94
95 /////////
96 // Groups
97
98 OPTION("<I group>", I_Group, Group, INVALID, INVALID, "", 0, 0, 0)
99 OPTION("<M group>", M_Group, Group, INVALID, INVALID, "", 0, 0, 0)
100 OPTION("<T group>", T_Group, Group, INVALID, INVALID, "", 0, 0, 0)
101 OPTION("<O group>", O_Group, Group, INVALID, INVALID, "", 0, 0, 0)
102 OPTION("<W group>", W_Group, Group, INVALID, INVALID, "", 0, 0, 0)
103 OPTION("<X group>", X_Group, Group, INVALID, INVALID, "", 0, 0, 0)
104 OPTION("<a group>", a_Group, Group, INVALID, INVALID, "", 0, 0, 0)
105 OPTION("<d group>", d_Group, Group, INVALID, INVALID, "", 0, 0, 0)
106 OPTION("<f group>", f_Group, Group, INVALID, INVALID, "", 0, 0, 0)
107 OPTION("<g group>", g_Group, Group, INVALID, INVALID, "", 0, 0, 0)
108 OPTION("<i group>", i_Group, Group, INVALID, INVALID, "", 0, 0, 0)
109 OPTION("<clang i group>", clang_i_Group, Group, i_Group, INVALID, "", 0, 0, 0)
110 OPTION("<m group>", m_Group, Group, INVALID, INVALID, "", 0, 0, 0)
111 OPTION("<m x86 features group>", m_x86_Features_Group, Group, INVALID, INVALID, "", 0, 0, 0)
112 OPTION("<u group>", u_Group, Group, INVALID, INVALID, "", 0, 0, 0)
113
114 OPTION("<pedantic group>", pedantic_Group, Group, INVALID, INVALID, "", 0, 0, 0)
115
116 // Temporary groups for clang options which we know we don't support,
117 // but don't want to verbosely warn the user about.
118 OPTION("<clang ignored f group>", clang_ignored_f_Group, Group, f_Group, 
119        INVALID, "", 0, 0, 0)
120 OPTION("<clang ignored m group>", clang_ignored_m_Group, Group, m_Group, 
121        INVALID, "", 0, 0, 0)
122
123 //////////
124 // Options
125
126 OPTION("-###", _HASH_HASH_HASH, Flag, INVALID, INVALID, "d", 0, 
127        "Print the commands to run for this compilation", 0)
128 OPTION("--CLASSPATH=", _CLASSPATH_EQ, Joined, INVALID, fclasspath_EQ, "", 0, 0, 0)
129 OPTION("--CLASSPATH", _CLASSPATH, Separate, INVALID, fclasspath_EQ, "J", 0, 0, 0)
130 OPTION("--all-warnings", _all_warnings, Flag, INVALID, Wall, "", 0, 0, 0)
131 OPTION("--analyze-auto", _analyze_auto, Flag, INVALID, INVALID, "d", 0, 0, 0)
132 OPTION("--analyzer-no-default-checks", _analyzer_no_default_checks, Flag, INVALID, INVALID, "d", 0, 0, 0)
133 OPTION("--analyzer-output", _analyzer_output, JoinedOrSeparate, INVALID, INVALID, "d", 0, 0, 0)
134 OPTION("--analyze", _analyze, Flag, INVALID, INVALID, "d", 0, 
135        "Run the static analyzer", 0)
136 OPTION("--ansi", _ansi, Flag, INVALID, ansi, "", 0, 0, 0)
137 OPTION("--assemble", _assemble, Flag, INVALID, S, "", 0, 0, 0)
138 OPTION("--assert=", _assert_EQ, Joined, INVALID, A, "S", 0, 0, 0)
139 OPTION("--assert", _assert, Separate, INVALID, A, "", 0, 0, 0)
140 OPTION("--bootclasspath=", _bootclasspath_EQ, Joined, INVALID, fbootclasspath_EQ, "", 0, 0, 0)
141 OPTION("--bootclasspath", _bootclasspath, Separate, INVALID, fbootclasspath_EQ, "J", 0, 0, 0)
142 OPTION("--classpath=", _classpath_EQ, Joined, INVALID, fclasspath_EQ, "", 0, 0, 0)
143 OPTION("--classpath", _classpath, Separate, INVALID, fclasspath_EQ, "J", 0, 0, 0)
144 OPTION("--combine", _combine, Flag, INVALID, combine, "u", 0, 0, 0)
145 OPTION("--comments-in-macros", _comments_in_macros, Flag, INVALID, CC, "", 0, 0, 0)
146 OPTION("--comments", _comments, Flag, INVALID, C, "", 0, 0, 0)
147 OPTION("--compile", _compile, Flag, INVALID, c, "", 0, 0, 0)
148 OPTION("--constant-cfstrings", _constant_cfstrings, Flag, INVALID, INVALID, "", 0, 0, 0)
149 OPTION("--coverage", _coverage, Flag, INVALID, coverage, "", 0, 0, 0)
150 OPTION("--debug=", _debug_EQ, Joined, INVALID, g_Flag, "u", 0, 0, 0)
151 OPTION("--debug", _debug, Flag, INVALID, g_Flag, "u", 0, 0, 0)
152 OPTION("--define-macro=", _define_macro_EQ, Joined, INVALID, D, "", 0, 0, 0)
153 OPTION("--define-macro", _define_macro, Separate, INVALID, D, "J", 0, 0, 0)
154 OPTION("--dependencies", _dependencies, Flag, INVALID, M, "", 0, 0, 0)
155 OPTION("--encoding=", _encoding_EQ, Joined, INVALID, fencoding_EQ, "", 0, 0, 0)
156 OPTION("--encoding", _encoding, Separate, INVALID, fencoding_EQ, "J", 0, 0, 0)
157 OPTION("--entry", _entry, Flag, INVALID, e, "", 0, 0, 0)
158 OPTION("--extdirs=", _extdirs_EQ, Joined, INVALID, fextdirs_EQ, "", 0, 0, 0)
159 OPTION("--extdirs", _extdirs, Separate, INVALID, fextdirs_EQ, "J", 0, 0, 0)
160 OPTION("--extra-warnings", _extra_warnings, Flag, INVALID, W_Joined, "", 0, 0, 0)
161 OPTION("--for-linker=", _for_linker_EQ, Joined, INVALID, Xlinker, "liS", 0, 0, 0)
162 OPTION("--for-linker", _for_linker, Separate, INVALID, Xlinker, "li", 0, 0, 0)
163 OPTION("--force-link=", _force_link_EQ, Joined, INVALID, u, "S", 0, 0, 0)
164 OPTION("--force-link", _force_link, Separate, INVALID, u, "", 0, 0, 0)
165 OPTION("--help-hidden", _help_hidden, Flag, INVALID, INVALID, "", 0, 0, 0)
166 OPTION("--help", _help, Flag, INVALID, INVALID, "", 0, 
167        "Display available options", 0)
168 OPTION("--imacros=", _imacros_EQ, Joined, INVALID, imacros, "S", 0, 0, 0)
169 OPTION("--imacros", _imacros, Separate, INVALID, imacros, "", 0, 0, 0)
170 OPTION("--include-barrier", _include_barrier, Flag, INVALID, I_, "", 0, 0, 0)
171 OPTION("--include-directory-after=", _include_directory_after_EQ, Joined, INVALID, idirafter, "S", 0, 0, 0)
172 OPTION("--include-directory-after", _include_directory_after, Separate, INVALID, idirafter, "", 0, 0, 0)
173 OPTION("--include-directory=", _include_directory_EQ, Joined, INVALID, I, "", 0, 0, 0)
174 OPTION("--include-directory", _include_directory, Separate, INVALID, I, "J", 0, 0, 0)
175 OPTION("--include-prefix=", _include_prefix_EQ, Joined, INVALID, iprefix, "S", 0, 0, 0)
176 OPTION("--include-prefix", _include_prefix, Separate, INVALID, iprefix, "", 0, 0, 0)
177 OPTION("--include-with-prefix-after=", _include_with_prefix_after_EQ, Joined, INVALID, iwithprefix, "S", 0, 0, 0)
178 OPTION("--include-with-prefix-after", _include_with_prefix_after, Separate, INVALID, iwithprefix, "", 0, 0, 0)
179 OPTION("--include-with-prefix-before=", _include_with_prefix_before_EQ, Joined, INVALID, iwithprefixbefore, "S", 0, 0, 0)
180 OPTION("--include-with-prefix-before", _include_with_prefix_before, Separate, INVALID, iwithprefixbefore, "", 0, 0, 0)
181 OPTION("--include-with-prefix=", _include_with_prefix_EQ, Joined, INVALID, iwithprefix, "S", 0, 0, 0)
182 OPTION("--include-with-prefix", _include_with_prefix, Separate, INVALID, iwithprefix, "", 0, 0, 0)
183 OPTION("--include=", _include_EQ, Joined, INVALID, include, "S", 0, 0, 0)
184 OPTION("--include", _include, Separate, INVALID, include, "", 0, 0, 0)
185 OPTION("--language=", _language_EQ, Joined, INVALID, x, "S", 0, 0, 0)
186 OPTION("--language", _language, Separate, INVALID, x, "", 0, 0, 0)
187 OPTION("--library-directory=", _library_directory_EQ, Joined, INVALID, L, "S", 0, 0, 0)
188 OPTION("--library-directory", _library_directory, Separate, INVALID, L, "", 0, 0, 0)
189 OPTION("--machine-=", _machine__EQ, Joined, INVALID, m_Joined, "u", 0, 0, 0)
190 OPTION("--machine-", _machine_, Joined, INVALID, m_Joined, "u", 0, 0, 0)
191 OPTION("--machine=", _machine_EQ, Joined, INVALID, m_Joined, "", 0, 0, 0)
192 OPTION("--machine", _machine, Separate, INVALID, m_Joined, "J", 0, 0, 0)
193 OPTION("--no-integrated-cpp", _no_integrated_cpp, Flag, INVALID, no_integrated_cpp, "", 0, 0, 0)
194 OPTION("--no-line-commands", _no_line_commands, Flag, INVALID, P, "", 0, 0, 0)
195 OPTION("--no-standard-includes", _no_standard_includes, Flag, INVALID, nostdinc, "", 0, 0, 0)
196 OPTION("--no-standard-libraries", _no_standard_libraries, Flag, INVALID, nostdlib, "", 0, 0, 0)
197 OPTION("--no-undefined", _no_undefined, Flag, INVALID, INVALID, "l", 0, 0, 0)
198 OPTION("--no-warnings", _no_warnings, Flag, INVALID, w, "", 0, 0, 0)
199 OPTION("--optimize=", _optimize_EQ, Joined, INVALID, O, "u", 0, 0, 0)
200 OPTION("--optimize", _optimize, Flag, INVALID, O, "u", 0, 0, 0)
201 OPTION("--output-class-directory=", _output_class_directory_EQ, Joined, INVALID, foutput_class_dir_EQ, "", 0, 0, 0)
202 OPTION("--output-class-directory", _output_class_directory, Separate, INVALID, foutput_class_dir_EQ, "J", 0, 0, 0)
203 OPTION("--output=", _output_EQ, Joined, INVALID, o, "S", 0, 0, 0)
204 OPTION("--output", _output, Separate, INVALID, o, "", 0, 0, 0)
205 OPTION("--param=", _param_EQ, Joined, INVALID, _param, "S", 0, 0, 0)
206 OPTION("--param", _param, Separate, INVALID, INVALID, "", 0, 0, 0)
207 OPTION("--pass-exit-codes", _pass_exit_codes, Flag, INVALID, pass_exit_codes, "", 0, 0, 0)
208 OPTION("--pedantic-errors", _pedantic_errors, Flag, INVALID, pedantic_errors, "", 0, 0, 0)
209 OPTION("--pedantic", _pedantic, Flag, INVALID, pedantic, "", 0, 0, 0)
210 OPTION("--pipe", _pipe, Flag, INVALID, pipe, "d", 0, 0, 0)
211 OPTION("--prefix=", _prefix_EQ, Joined, INVALID, B, "S", 0, 0, 0)
212 OPTION("--prefix", _prefix, Separate, INVALID, B, "", 0, 0, 0)
213 OPTION("--preprocess", _preprocess, Flag, INVALID, E, "", 0, 0, 0)
214 OPTION("--print-file-name=", _print_file_name_EQ, Joined, INVALID, print_file_name_EQ, "", 0, 0, 0)
215 OPTION("--print-file-name", _print_file_name, Separate, INVALID, print_file_name_EQ, "", 0, 0, 0)
216 OPTION("--print-libgcc-file-name", _print_libgcc_file_name, Flag, INVALID, print_libgcc_file_name, "", 0, 0, 0)
217 OPTION("--print-missing-file-dependencies", _print_missing_file_dependencies, Flag, INVALID, MG, "", 0, 0, 0)
218 OPTION("--print-multi-directory", _print_multi_directory, Flag, INVALID, print_multi_directory, "", 0, 0, 0)
219 OPTION("--print-multi-lib", _print_multi_lib, Flag, INVALID, print_multi_lib, "", 0, 0, 0)
220 OPTION("--print-multi-os-directory", _print_multi_os_directory, Flag, INVALID, print_multi_os_directory, "", 0, 0, 0)
221 OPTION("--print-prog-name=", _print_prog_name_EQ, Joined, INVALID, print_prog_name_EQ, "", 0, 0, 0)
222 OPTION("--print-prog-name", _print_prog_name, Separate, INVALID, print_prog_name_EQ, "", 0, 0, 0)
223 OPTION("--print-search-dirs", _print_search_dirs, Flag, INVALID, print_search_dirs, "", 0, 0, 0)
224 OPTION("--profile-blocks", _profile_blocks, Flag, INVALID, a, "", 0, 0, 0)
225 OPTION("--profile", _profile, Flag, INVALID, p, "", 0, 0, 0)
226 OPTION("--relocatable-pch", _relocatable_pch, Flag, INVALID, INVALID, "", 0, 
227        "Build a relocatable precompiled header", 0)
228 OPTION("--resource=", _resource_EQ, Joined, INVALID, fcompile_resource_EQ, "", 0, 0, 0)
229 OPTION("--resource", _resource, Separate, INVALID, fcompile_resource_EQ, "J", 0, 0, 0)
230 OPTION("--save-temps", _save_temps, Flag, INVALID, save_temps, "", 0, 0, 0)
231 OPTION("--shared", _shared, Flag, INVALID, shared, "", 0, 0, 0)
232 OPTION("--signed-char", _signed_char, Flag, INVALID, fsigned_char, "", 0, 0, 0)
233 OPTION("--specs=", _specs_EQ, Joined, INVALID, specs_EQ, "u", 0, 0, 0)
234 OPTION("--specs", _specs, Separate, INVALID, specs_EQ, "uJ", 0, 0, 0)
235 OPTION("--static", _static, Flag, INVALID, static, "", 0, 0, 0)
236 OPTION("--std=", _std_EQ, Joined, INVALID, std_EQ, "", 0, 0, 0)
237 OPTION("--std", _std, Separate, INVALID, std_EQ, "J", 0, 0, 0)
238 OPTION("--sysroot=", _sysroot_EQ, Joined, INVALID, INVALID, "", 0, 0, 0)
239 OPTION("--sysroot", _sysroot, Separate, INVALID, _sysroot_EQ, "J", 0, 0, 0)
240 OPTION("--target-help", _target_help, Flag, INVALID, INVALID, "", 0, 0, 0)
241 OPTION("--trace-includes", _trace_includes, Flag, INVALID, H, "", 0, 0, 0)
242 OPTION("--traditional-cpp", _traditional_cpp, Flag, INVALID, traditional_cpp, "", 0, 0, 0)
243 OPTION("--traditional", _traditional, Flag, INVALID, traditional, "", 0, 0, 0)
244 OPTION("--trigraphs", _trigraphs, Flag, INVALID, trigraphs, "", 0, 0, 0)
245 OPTION("--undefine-macro=", _undefine_macro_EQ, Joined, INVALID, U, "", 0, 0, 0)
246 OPTION("--undefine-macro", _undefine_macro, Separate, INVALID, U, "J", 0, 0, 0)
247 OPTION("--unsigned-char", _unsigned_char, Flag, INVALID, funsigned_char, "", 0, 0, 0)
248 OPTION("--user-dependencies", _user_dependencies, Flag, INVALID, MM, "", 0, 0, 0)
249 OPTION("--verbose", _verbose, Flag, INVALID, v, "", 0, 0, 0)
250 OPTION("--version", _version, Flag, INVALID, INVALID, "", 0, 0, 0)
251 OPTION("--warn-=", _warn__EQ, Joined, INVALID, W_Joined, "u", 0, 0, 0)
252 OPTION("--warn-", _warn_, Joined, INVALID, W_Joined, "u", 0, 0, 0)
253 OPTION("--write-dependencies", _write_dependencies, Flag, INVALID, MD, "", 0, 0, 0)
254 OPTION("--write-user-dependencies", _write_user_dependencies, Flag, INVALID, MMD, "", 0, 0, 0)
255 OPTION("--", _, Joined, INVALID, f, "u", 0, 0, 0)
256 OPTION("-A", A, JoinedOrSeparate, INVALID, INVALID, "", 0, 0, 0)
257 OPTION("-B", B, JoinedOrSeparate, INVALID, INVALID, "u", 0, 0, 0)
258 OPTION("-CC", CC, Flag, INVALID, INVALID, "", 0, 0, 0)
259 OPTION("-C", C, Flag, INVALID, INVALID, "", 0, 0, 0)
260 OPTION("-D", D, JoinedOrSeparate, INVALID, INVALID, "", 0, 0, 0)
261 OPTION("-E", E, Flag, INVALID, INVALID, "d", 0, 
262        "Only run the preprocessor", 0)
263 OPTION("-F", F, JoinedOrSeparate, INVALID, INVALID, "", 0, 0, 0)
264 OPTION("-H", H, Flag, INVALID, INVALID, "", 0, 0, 0)
265 OPTION("-I-", I_, Flag, I_Group, INVALID, "", 0, 0, 0)
266 OPTION("-I", I, JoinedOrSeparate, I_Group, INVALID, "", 0, 0, 0)
267 OPTION("-L", L, JoinedOrSeparate, INVALID, INVALID, "", 0, 0, 0)
268 OPTION("-MD", MD, Flag, M_Group, INVALID, "", 0, 0, 0)
269 OPTION("-MF", MF, JoinedOrSeparate, M_Group, INVALID, "", 0, 0, 0)
270 OPTION("-MG", MG, Flag, M_Group, INVALID, "", 0, 0, 0)
271 OPTION("-MMD", MMD, Flag, M_Group, INVALID, "", 0, 0, 0)
272 OPTION("-MM", MM, Flag, M_Group, INVALID, "", 0, 0, 0)
273 OPTION("-MP", MP, Flag, M_Group, INVALID, "", 0, 0, 0)
274 OPTION("-MQ", MQ, JoinedOrSeparate, M_Group, INVALID, "", 0, 0, 0)
275 OPTION("-MT", MT, JoinedOrSeparate, M_Group, INVALID, "", 0, 0, 0)
276 OPTION("-Mach", Mach, Flag, INVALID, INVALID, "", 0, 0, 0)
277 OPTION("-M", M, Flag, M_Group, INVALID, "", 0, 0, 0)
278 OPTION("-O4", O4, Joined, O_Group, INVALID, "", 0, 0, 0)
279 OPTION("-ObjC++", ObjCXX, Flag, INVALID, INVALID, "d", 0, 
280        "Treat source input files as Objective-C++ inputs", 0)
281 OPTION("-ObjC", ObjC, Flag, INVALID, INVALID, "d", 0, 
282        "Treat source input files as Objective-C inputs", 0)
283 OPTION("-O", O, Joined, O_Group, INVALID, "", 0, 0, 0)
284 OPTION("-P", P, Flag, INVALID, INVALID, "", 0, 0, 0)
285 OPTION("-Qn", Qn, Flag, INVALID, INVALID, "", 0, 0, 0)
286 OPTION("-Qunused-arguments", Qunused_arguments, Flag, INVALID, INVALID, "d", 0, 
287        "Don't emit warning for unused driver arguments", 0)
288 OPTION("-Q", Q, Flag, INVALID, INVALID, "", 0, 0, 0)
289 OPTION("-R", R, Flag, INVALID, INVALID, "", 0, 0, 0)
290 OPTION("-S", S, Flag, INVALID, INVALID, "d", 0, 
291        "Only run preprocess and compilation steps", 0)
292 OPTION("-Tbss", Tbss, JoinedOrSeparate, T_Group, INVALID, "", 0, 0, 0)
293 OPTION("-Tdata", Tdata, JoinedOrSeparate, T_Group, INVALID, "", 0, 0, 0)
294 OPTION("-Ttext", Ttext, JoinedOrSeparate, T_Group, INVALID, "", 0, 0, 0)
295 OPTION("-T", T, JoinedOrSeparate, T_Group, INVALID, "", 0, 0, 0)
296 OPTION("-U", U, JoinedOrSeparate, INVALID, INVALID, "", 0, 0, 0)
297 OPTION("-V", V, JoinedOrSeparate, INVALID, INVALID, "du", 0, 0, 0)
298 OPTION("-Wa,", Wa_COMMA, CommaJoined, INVALID, INVALID, "", 0, 
299        "Pass the comma separated arguments in <arg> to the assembler", "<arg>")
300 OPTION("-Wall", Wall, Flag, W_Group, INVALID, "", 0, 0, 0)
301 OPTION("-Wextra", Wextra, Flag, W_Group, INVALID, "", 0, 0, 0)
302 OPTION("-Wl,", Wl_COMMA, CommaJoined, INVALID, INVALID, "li", 0, 
303        "Pass the comma separated arguments in <arg> to the linker", "<arg>")
304 OPTION("-Wno-nonportable-cfstrings", Wno_nonportable_cfstrings, Joined, W_Group, INVALID, "", 0, 0, 0)
305 OPTION("-Wnonportable-cfstrings", Wnonportable_cfstrings, Joined, W_Group, INVALID, "", 0, 0, 0)
306 OPTION("-Wp,", Wp_COMMA, CommaJoined, INVALID, INVALID, "", 0, 
307        "Pass the comma separated arguments in <arg> to the preprocessor", "<arg>")
308 OPTION("-W", W_Joined, Joined, W_Group, INVALID, "", 0, 0, 0)
309 OPTION("-Xanalyzer", Xanalyzer, Separate, INVALID, INVALID, "", 0, 
310        "Pass <arg> to the static analyzer", "<arg>")
311 OPTION("-Xarch_", Xarch__, JoinedAndSeparate, INVALID, INVALID, "d", 0, 0, 0)
312 OPTION("-Xassembler", Xassembler, Separate, INVALID, INVALID, "", 0, 
313        "Pass <arg> to the assembler", "<arg>")
314 OPTION("-Xclang", Xclang, Separate, INVALID, INVALID, "", 0, 
315        "Pass <arg> to the clang compiler", "<arg>")
316 OPTION("-Xlinker", Xlinker, Separate, INVALID, INVALID, "li", 0, 
317        "Pass <arg> to the linker", "<arg>")
318 OPTION("-Xpreprocessor", Xpreprocessor, Separate, INVALID, INVALID, "", 0,
319        "Pass <arg> to the preprocessor", "<arg>")
320 OPTION("-X", X_Flag, Flag, INVALID, INVALID, "", 0, 0, 0)
321 OPTION("-X", X_Joined, Joined, INVALID, INVALID, "", 0, 0, 0)
322 OPTION("-Z", Z_Flag, Flag, INVALID, INVALID, "", 0, 0, 0)
323 OPTION("-Z", Z_Joined, Joined, INVALID, INVALID, "", 0, 0, 0)
324 OPTION("-all_load", all__load, Flag, INVALID, INVALID, "", 0, 0, 0)
325 OPTION("-allowable_client", allowable__client, Separate, INVALID, INVALID, "", 0, 0, 0)
326 OPTION("-ansi", ansi, Flag, a_Group, INVALID, "", 0, 0, 0)
327 OPTION("-arch_errors_fatal", arch__errors__fatal, Flag, INVALID, INVALID, "", 0, 0, 0)
328 OPTION("-arch", arch, Separate, INVALID, INVALID, "d", 0, 0, 0)
329 OPTION("-a", a, Joined, a_Group, INVALID, "", 0, 0, 0)
330 OPTION("-bind_at_load", bind__at__load, Flag, INVALID, INVALID, "", 0, 0, 0)
331 OPTION("-bundle_loader", bundle__loader, Separate, INVALID, INVALID, "", 0, 0, 0)
332 OPTION("-bundle", bundle, Flag, INVALID, INVALID, "", 0, 0, 0)
333 OPTION("-b", b, JoinedOrSeparate, INVALID, INVALID, "u", 0, 0, 0)
334 OPTION("-client_name", client__name, JoinedOrSeparate, INVALID, INVALID, "", 0, 0, 0)
335 OPTION("-combine", combine, Flag, INVALID, INVALID, "du", 0, 0, 0)
336 OPTION("-compatibility_version", compatibility__version, JoinedOrSeparate, INVALID, INVALID, "", 0, 0, 0)
337 OPTION("-coverage", coverage, Flag, INVALID, INVALID, "", 0, 0, 0)
338 OPTION("-cpp-precomp", cpp_precomp, Flag, INVALID, INVALID, "", 0, 0, 0)
339 OPTION("-current_version", current__version, JoinedOrSeparate, INVALID, INVALID, "", 0, 0, 0)
340 OPTION("-c", c, Flag, INVALID, INVALID, "d", 0, 
341        "Only run preprocess, compile, and assemble steps", 0)
342 OPTION("-dA", dA, Flag, d_Group, INVALID, "", 0, 0, 0)
343 OPTION("-dD", dD, Flag, d_Group, INVALID, "", 0, 0, 0)
344 OPTION("-dM", dM, Flag, d_Group, INVALID, "", 0, 0, 0)
345 OPTION("-dead_strip", dead__strip, Flag, INVALID, INVALID, "", 0, 0, 0)
346 OPTION("-dependency-file", dependency_file, Separate, INVALID, INVALID, "", 0, 0, 0)
347 OPTION("-dumpmachine", dumpmachine, Flag, INVALID, INVALID, "u", 0, 0, 0)
348 OPTION("-dumpspecs", dumpspecs, Flag, INVALID, INVALID, "u", 0, 0, 0)
349 OPTION("-dumpversion", dumpversion, Flag, INVALID, INVALID, "", 0, 0, 0)
350 OPTION("-dylib_file", dylib__file, Separate, INVALID, INVALID, "", 0, 0, 0)
351 OPTION("-dylinker_install_name", dylinker__install__name, JoinedOrSeparate, INVALID, INVALID, "", 0, 0, 0)
352 OPTION("-dylinker", dylinker, Flag, INVALID, INVALID, "", 0, 0, 0)
353 OPTION("-dynamiclib", dynamiclib, Flag, INVALID, INVALID, "", 0, 0, 0)
354 OPTION("-dynamic", dynamic, Flag, INVALID, INVALID, "q", 0, 0, 0)
355 OPTION("-d", d_Flag, Flag, d_Group, INVALID, "", 0, 0, 0)
356 OPTION("-d", d_Joined, Joined, d_Group, INVALID, "", 0, 0, 0)
357 OPTION("-emit-ast", emit_ast, Flag, INVALID, INVALID, "", 0,
358        "Emit Clang AST files for source inputs", 0)
359 OPTION("-emit-llvm", emit_llvm, Flag, INVALID, INVALID, "", 0, 
360        "Use the LLVM representation for assembler and object files", 0)
361 OPTION("-exported_symbols_list", exported__symbols__list, Separate, INVALID, INVALID, "", 0, 0, 0)
362 OPTION("-e", e, JoinedOrSeparate, INVALID, INVALID, "", 0, 0, 0)
363 OPTION("-fPIC", fPIC, Flag, f_Group, INVALID, "", 0, 0, 0)
364 OPTION("-fPIE", fPIE, Flag, f_Group, INVALID, "", 0, 0, 0)
365 OPTION("-fapple-kext", fapple_kext, Flag, f_Group, INVALID, "", 0, 0, 0)
366 OPTION("-fasm-blocks", fasm_blocks, Flag, clang_ignored_f_Group, INVALID, "", 0, 0, 0)
367 OPTION("-fastcp", fastcp, Flag, f_Group, INVALID, "", 0, 0, 0)
368 OPTION("-fastf", fastf, Flag, f_Group, INVALID, "", 0, 0, 0)
369 OPTION("-fast", fast, Flag, f_Group, INVALID, "", 0, 0, 0)
370 OPTION("-fasynchronous-unwind-tables", fasynchronous_unwind_tables, Flag, f_Group, INVALID, "", 0, 0, 0)
371 OPTION("-fblocks", fblocks, Flag, f_Group, INVALID, "", 0, 0, 0)
372 OPTION("-fbootclasspath=", fbootclasspath_EQ, Joined, f_Group, INVALID, "", 0, 0, 0)
373 OPTION("-fbuiltin-strcat", fbuiltin_strcat, Flag, f_Group, INVALID, "", 0, 0, 0)
374 OPTION("-fbuiltin-strcpy", fbuiltin_strcpy, Flag, f_Group, INVALID, "", 0, 0, 0)
375 OPTION("-fbuiltin", fbuiltin, Flag, f_Group, INVALID, "", 0, 0, 0)
376 OPTION("-fclasspath=", fclasspath_EQ, Joined, f_Group, INVALID, "", 0, 0, 0)
377 OPTION("-fcolor-diagnostics", fcolor_diagnostics, Flag, f_Group, INVALID, "", 0, 0, 0)
378 OPTION("-fcommon", fcommon, Flag, f_Group, INVALID, "", 0, 0, 0)
379 OPTION("-fcompile-resource=", fcompile_resource_EQ, Joined, f_Group, INVALID, "", 0, 0, 0)
380 OPTION("-fconstant-cfstrings", fconstant_cfstrings, Flag, clang_ignored_f_Group, INVALID, "", 0, 0, 0)
381 OPTION("-fconstant-string-class=", fconstant_string_class_EQ, Joined, f_Group, INVALID, "", 0, 0, 0)
382 OPTION("-fcreate-profile", fcreate_profile, Flag, f_Group, INVALID, "", 0, 0, 0)
383 OPTION("-fdebug-pass-arguments", fdebug_pass_arguments, Flag, f_Group, INVALID, "", 0, 0, 0)
384 OPTION("-fdebug-pass-structure", fdebug_pass_structure, Flag, f_Group, INVALID, "", 0, 0, 0)
385 OPTION("-fdiagnostics-fixit-info", fdiagnostics_fixit_info, Flag, f_Group, INVALID, "", 0, 0, 0)
386 OPTION("-fdiagnostics-print-source-range-info", fdiagnostics_print_source_range_info, Flag, f_Group, INVALID, "", 0, 0, 0)
387 OPTION("-fdiagnostics-show-option", fdiagnostics_show_option, Flag, f_Group, INVALID, "", 0, 0, 0)
388 OPTION("-fdollars-in-identifiers", fdollars_in_identifiers, Flag, f_Group, INVALID, "", 0, 0, 0)
389 OPTION("-feliminate-unused-debug-symbols", feliminate_unused_debug_symbols, Flag, f_Group, INVALID, "", 0, 0, 0)
390 OPTION("-femit-all-decls", femit_all_decls, Flag, f_Group, INVALID, "", 0, 0, 0)
391 OPTION("-fencoding=", fencoding_EQ, Joined, f_Group, INVALID, "", 0, 0, 0)
392 OPTION("-fexceptions", fexceptions, Flag, f_Group, INVALID, "", 0, 0, 0)
393 OPTION("-fextdirs=", fextdirs_EQ, Joined, f_Group, INVALID, "", 0, 0, 0)
394 OPTION("-ffreestanding", ffreestanding, Flag, f_Group, INVALID, "", 0, 0, 0)
395 OPTION("-fgnu-runtime", fgnu_runtime, Flag, f_Group, INVALID, "", 0, 0, 0)
396 OPTION("-fheinous-gnu-extensions", fheinous_gnu_extensions, Flag, INVALID, INVALID, "", 0, 0, 0)
397 OPTION("-filelist", filelist, Separate, INVALID, INVALID, "l", 0, 0, 0)
398 OPTION("-findirect-virtual-calls", findirect_virtual_calls, Flag, f_Group, INVALID, "", 0, 0, 0)
399 OPTION("-finline-functions", finline_functions, Flag, clang_ignored_f_Group, INVALID, "", 0, 0, 0)
400 OPTION("-finline", finline, Flag, clang_ignored_f_Group, INVALID, "", 0, 0, 0)
401 OPTION("-fkeep-inline-functions", fkeep_inline_functions, Flag, clang_ignored_f_Group, INVALID, "", 0, 0, 0)
402 OPTION("-flat_namespace", flat__namespace, Flag, INVALID, INVALID, "", 0, 0, 0)
403 OPTION("-flax-vector-conversions", flax_vector_conversions, Flag, f_Group, INVALID, "", 0, 0, 0)
404 OPTION("-flimited-precision=", flimited_precision_EQ, Joined, f_Group, INVALID, "", 0, 0, 0)
405 OPTION("-flto", flto, Flag, f_Group, INVALID, "", 0, 0, 0)
406 OPTION("-fmath-errno", fmath_errno, Flag, f_Group, INVALID, "", 0, 0, 0)
407 OPTION("-fmerge-all-constants", fmerge_all_constants, Flag, f_Group, INVALID, "", 0, 0, 0)
408 OPTION("-fmessage-length=", fmessage_length_EQ, Joined, f_Group, INVALID, "", 0, 0, 0)
409 OPTION("-fms-extensions", fms_extensions, Flag, f_Group, INVALID, "", 0, 0, 0)
410 OPTION("-fmudflapth", fmudflapth, Flag, f_Group, INVALID, "", 0, 0, 0)
411 OPTION("-fmudflap", fmudflap, Flag, f_Group, INVALID, "", 0, 0, 0)
412 OPTION("-fnested-functions", fnested_functions, Flag, f_Group, INVALID, "", 0, 0, 0)
413 OPTION("-fnext-runtime", fnext_runtime, Flag, f_Group, INVALID, "", 0, 0, 0)
414 OPTION("-fno-asynchronous-unwind-tables", fno_asynchronous_unwind_tables, Flag, f_Group, INVALID, "", 0, 0, 0)
415 OPTION("-fno-blocks", fno_blocks, Flag, f_Group, INVALID, "", 0, 0, 0)
416 OPTION("-fno-builtin-strcat", fno_builtin_strcat, Flag, f_Group, INVALID, "", 0, 0, 0)
417 OPTION("-fno-builtin-strcpy", fno_builtin_strcpy, Flag, f_Group, INVALID, "", 0, 0, 0)
418 OPTION("-fno-builtin", fno_builtin, Flag, f_Group, INVALID, "", 0, 0, 0)
419 OPTION("-fno-caret-diagnostics", fno_caret_diagnostics, Flag, f_Group, INVALID, "", 0, 0, 0)
420 OPTION("-fno-color-diagnostics", fno_color_diagnostics, Flag, f_Group, INVALID, "", 0, 0, 0)
421 OPTION("-fno-common", fno_common, Flag, f_Group, INVALID, "", 0, 0, 0)
422 OPTION("-fno-constant-cfstrings", fno_constant_cfstrings, Flag, f_Group, INVALID, "", 0, 0, 0)
423 OPTION("-fno-diagnostics-fixit-info", fno_diagnostics_fixit_info, Flag, f_Group, INVALID, "", 0, 0, 0)
424 OPTION("-fno-diagnostics-show-option", fno_diagnostics_show_option, Flag, f_Group, INVALID, "", 0, 0, 0)
425 OPTION("-fno-dollars-in-identifiers", fno_dollars_in_identifiers, Flag, f_Group, INVALID, "", 0, 0, 0)
426 OPTION("-fno-eliminate-unused-debug-symbols", fno_eliminate_unused_debug_symbols, Flag, f_Group, INVALID, "", 0, 0, 0)
427 OPTION("-fno-exceptions", fno_exceptions, Flag, f_Group, INVALID, "", 0, 0, 0)
428 OPTION("-fno-inline-functions", fno_inline_functions, Flag, clang_ignored_f_Group, INVALID, "", 0, 0, 0)
429 OPTION("-fno-inline", fno_inline, Flag, clang_ignored_f_Group, INVALID, "", 0, 0, 0)
430 OPTION("-fno-keep-inline-functions", fno_keep_inline_functions, Flag, clang_ignored_f_Group, INVALID, "", 0, 0, 0)
431 OPTION("-fno-math-errno", fno_math_errno, Flag, f_Group, INVALID, "", 0, 0, 0)
432 OPTION("-fno-merge-all-constants", fno_merge_all_constants, Flag, f_Group, INVALID, "", 0, 0, 0)
433 OPTION("-fno-omit-frame-pointer", fno_omit_frame_pointer, Flag, f_Group, INVALID, "", 0, 0, 0)
434 OPTION("-fno-pascal-strings", fno_pascal_strings, Flag, f_Group, INVALID, "", 0, 0, 0)
435 OPTION("-fno-rtti", fno_rtti, Flag, f_Group, INVALID, "", 0, 0, 0)
436 OPTION("-fno-show-column", fno_show_column, Flag, f_Group, INVALID, "", 0, 0, 0)
437 OPTION("-fno-show-source-location", fno_show_source_location, Flag, f_Group, INVALID, "", 0, 0, 0)
438 OPTION("-fno-stack-protector", fno_stack_protector, Flag, f_Group, INVALID, "", 0, 0, 0)
439 OPTION("-fno-strict-aliasing", fno_strict_aliasing, Flag, clang_ignored_f_Group, INVALID, "", 0, 0, 0)
440 OPTION("-fno-unit-at-a-time", fno_unit_at_a_time, Flag, f_Group, INVALID, "", 0, 0, 0)
441 OPTION("-fno-unwind-tables", fno_unwind_tables, Flag, f_Group, INVALID, "", 0, 0, 0)
442 OPTION("-fno-working-directory", fno_working_directory, Flag, f_Group, INVALID, "", 0, 0, 0)
443 OPTION("-fno-zero-initialized-in-bss", fno_zero_initialized_in_bss, Flag, f_Group, INVALID, "", 0, 0, 0)
444 OPTION("-fobjc-atdefs", fobjc_atdefs, Flag, clang_ignored_f_Group, INVALID, "", 0, 0, 0)
445 OPTION("-fobjc-call-cxx-cdtors", fobjc_call_cxx_cdtors, Flag, clang_ignored_f_Group, INVALID, "", 0, 0, 0)
446 OPTION("-fobjc-gc-only", fobjc_gc_only, Flag, f_Group, INVALID, "", 0, 0, 0)
447 OPTION("-fobjc-gc", fobjc_gc, Flag, f_Group, INVALID, "", 0, 0, 0)
448 OPTION("-fobjc-new-property", fobjc_new_property, Flag, clang_ignored_f_Group, INVALID, "", 0, 0, 0)
449 OPTION("-fobjc-nonfragile-abi", fobjc_nonfragile_abi, Flag, f_Group, INVALID, "", 0, 0, 0)
450 OPTION("-fobjc-sender-dependent-dispatch", fobjc_sender_dependent_dispatch, Flag, f_Group, INVALID, "", 0, 0, 0)
451 OPTION("-fobjc-tight-layout", fobjc_tight_layout, Flag, f_Group, INVALID, "", 0, 0, 0)
452 OPTION("-fobjc", fobjc, Flag, f_Group, INVALID, "", 0, 0, 0)
453 OPTION("-fomit-frame-pointer", fomit_frame_pointer, Flag, f_Group, INVALID, "", 0, 0, 0)
454 OPTION("-fopenmp", fopenmp, Flag, f_Group, INVALID, "", 0, 0, 0)
455 OPTION("-force_cpusubtype_ALL", force__cpusubtype__ALL, Flag, INVALID, INVALID, "", 0, 0, 0)
456 OPTION("-force_flat_namespace", force__flat__namespace, Flag, INVALID, INVALID, "", 0, 0, 0)
457 OPTION("-foutput-class-dir=", foutput_class_dir_EQ, Joined, f_Group, INVALID, "", 0, 0, 0)
458 OPTION("-fpascal-strings", fpascal_strings, Flag, f_Group, INVALID, "", 0, 0, 0)
459 OPTION("-fpch-preprocess", fpch_preprocess, Flag, f_Group, INVALID, "", 0, 0, 0)
460 OPTION("-fpic", fpic, Flag, f_Group, INVALID, "", 0, 0, 0)
461 OPTION("-fpie", fpie, Flag, f_Group, INVALID, "", 0, 0, 0)
462 OPTION("-fprofile-arcs", fprofile_arcs, Flag, f_Group, INVALID, "", 0, 0, 0)
463 OPTION("-fprofile-generate", fprofile_generate, Flag, f_Group, INVALID, "", 0, 0, 0)
464 OPTION("-framework", framework, Separate, INVALID, INVALID, "l", 0, 0, 0)
465 OPTION("-frtti", frtti, Flag, f_Group, INVALID, "", 0, 0, 0)
466 OPTION("-fshow-source-location", fshow_source_location, Flag, f_Group, INVALID, "", 0, 0, 0)
467 OPTION("-fsigned-bitfields", fsigned_bitfields, Flag, f_Group, INVALID, "", 0, 0, 0)
468 OPTION("-fsigned-char", fsigned_char, Flag, f_Group, INVALID, "", 0, 0, 0)
469 OPTION("-fstack-protector-all", fstack_protector_all, Flag, f_Group, INVALID, "", 0, 0, 0)
470 OPTION("-fstack-protector", fstack_protector, Flag, f_Group, INVALID, "", 0, 0, 0)
471 OPTION("-fstrict-aliasing", fstrict_aliasing, Flag, clang_ignored_f_Group, INVALID, "", 0, 0, 0)
472 OPTION("-fsyntax-only", fsyntax_only, Flag, INVALID, INVALID, "d", 0, 0, 0)
473 OPTION("-ftemplate-depth-", ftemplate_depth_, Joined, f_Group, INVALID, "", 0, 0, 0)
474 OPTION("-fterminated-vtables", fterminated_vtables, Flag, f_Group, INVALID, "", 0, 0, 0)
475 OPTION("-ftime-report", ftime_report, Flag, f_Group, INVALID, "", 0, 0, 0)
476 OPTION("-ftrapv", ftrapv, Flag, f_Group, INVALID, "", 0, 0, 0)
477 OPTION("-funit-at-a-time", funit_at_a_time, Flag, f_Group, INVALID, "", 0, 0, 0)
478 OPTION("-funsigned-bitfields", funsigned_bitfields, Flag, f_Group, INVALID, "", 0, 0, 0)
479 OPTION("-funsigned-char", funsigned_char, Flag, f_Group, INVALID, "", 0, 0, 0)
480 OPTION("-funwind-tables", funwind_tables, Flag, f_Group, INVALID, "", 0, 0, 0)
481 OPTION("-fverbose-asm", fverbose_asm, Flag, f_Group, INVALID, "", 0, 0, 0)
482 OPTION("-fvisibility=", fvisibility_EQ, Joined, f_Group, INVALID, "", 0, 0, 0)
483 OPTION("-fwritable-strings", fwritable_strings, Flag, f_Group, INVALID, "", 0, 0, 0)
484 OPTION("-fzero-initialized-in-bss", fzero_initialized_in_bss, Flag, f_Group, INVALID, "", 0, 0, 0)
485 OPTION("-f", f, Joined, f_Group, INVALID, "", 0, 0, 0)
486 OPTION("-g0", g0, Joined, g_Group, INVALID, "", 0, 0, 0)
487 OPTION("-g3", g3, Joined, g_Group, INVALID, "", 0, 0, 0)
488 OPTION("-gfull", gfull, Joined, g_Group, INVALID, "", 0, 0, 0)
489 OPTION("-gstabs", gstabs, Joined, g_Group, INVALID, "", 0, 0, 0)
490 OPTION("-gused", gused, Joined, g_Group, INVALID, "", 0, 0, 0)
491 OPTION("-g", g_Flag, Flag, g_Group, INVALID, "", 0, 0, 0)
492 OPTION("-g", g_Joined, Joined, g_Group, INVALID, "", 0, 0, 0)
493 OPTION("-headerpad_max_install_names", headerpad__max__install__names, Joined, INVALID, INVALID, "", 0, 0, 0)
494 OPTION("-idirafter", idirafter, JoinedOrSeparate, clang_i_Group, INVALID, "", 0, 0, 0)
495 OPTION("-iframework", iframework, JoinedOrSeparate, clang_i_Group, INVALID, "", 0, 0, 0)
496 OPTION("-imacros", imacros, JoinedOrSeparate, clang_i_Group, INVALID, "", 0, 0, 0)
497 OPTION("-image_base", image__base, Separate, INVALID, INVALID, "", 0, 0, 0)
498 OPTION("-include", include, JoinedOrSeparate, clang_i_Group, INVALID, "", 0, 0, 0)
499 OPTION("-init", init, Separate, INVALID, INVALID, "", 0, 0, 0)
500 OPTION("-install_name", install__name, Separate, INVALID, INVALID, "", 0, 0, 0)
501 OPTION("-iprefix", iprefix, JoinedOrSeparate, clang_i_Group, INVALID, "", 0, 0, 0)
502 OPTION("-iquote", iquote, JoinedOrSeparate, clang_i_Group, INVALID, "", 0, 0, 0)
503 OPTION("-isysroot", isysroot, JoinedOrSeparate, i_Group, INVALID, "", 0, 0, 0)
504 OPTION("-isystem", isystem, JoinedOrSeparate, clang_i_Group, INVALID, "", 0, 0, 0)
505 OPTION("-iwithprefixbefore", iwithprefixbefore, JoinedOrSeparate, clang_i_Group, INVALID, "", 0, 0, 0)
506 OPTION("-iwithprefix", iwithprefix, JoinedOrSeparate, clang_i_Group, INVALID, "", 0, 0, 0)
507 OPTION("-iwithsysroot", iwithsysroot, JoinedOrSeparate, i_Group, INVALID, "", 0, 0, 0)
508 OPTION("-i", i, Joined, i_Group, INVALID, "", 0, 0, 0)
509 OPTION("-keep_private_externs", keep__private__externs, Flag, INVALID, INVALID, "", 0, 0, 0)
510 OPTION("-l", l, JoinedOrSeparate, INVALID, INVALID, "l", 0, 0, 0)
511 OPTION("-m32", m32, Flag, m_Group, INVALID, "d", 0, 0, 0)
512 OPTION("-m3dnowa", m3dnowa, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
513 OPTION("-m3dnow", m3dnow, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
514 OPTION("-m64", m64, Flag, m_Group, INVALID, "d", 0, 0, 0)
515 OPTION("-mabi=", mabi_EQ, Joined, m_Group, INVALID, "d", 0, 0, 0)
516 OPTION("-march=", march_EQ, Joined, m_Group, INVALID, "d", 0, 0, 0)
517 OPTION("-mcmodel=", mcmodel_EQ, Joined, m_Group, INVALID, "d", 0, 0, 0)
518 OPTION("-mconstant-cfstrings", mconstant_cfstrings, Flag, clang_ignored_m_Group, INVALID, "", 0, 0, 0)
519 OPTION("-mcpu=", mcpu_EQ, Joined, m_Group, INVALID, "d", 0, 0, 0)
520 OPTION("-mdynamic-no-pic", mdynamic_no_pic, Joined, m_Group, INVALID, "q", 0, 0, 0)
521 OPTION("-mfix-and-continue", mfix_and_continue, Flag, clang_ignored_m_Group, INVALID, "", 0, 0, 0)
522 OPTION("-mfloat-abi=", mfloat_abi_EQ, Joined, m_Group, INVALID, "", 0, 0, 0)
523 OPTION("-mhard-float", mhard_float, Flag, m_Group, INVALID, "", 0, 0, 0)
524 OPTION("-miphoneos-version-min=", miphoneos_version_min_EQ, Joined, m_Group, INVALID, "", 0, 0, 0)
525 OPTION("-mkernel", mkernel, Flag, m_Group, INVALID, "", 0, 0, 0)
526 OPTION("-mllvm", mllvm, Separate, INVALID, INVALID, "", 0, 0, 0)
527 OPTION("-mmacosx-version-min=", mmacosx_version_min_EQ, Joined, m_Group, INVALID, "", 0, 0, 0)
528 OPTION("-mmmx", mmmx, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
529 OPTION("-mno-3dnowa", mno_3dnowa, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
530 OPTION("-mno-3dnow", mno_3dnow, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
531 OPTION("-mno-constant-cfstrings", mno_constant_cfstrings, Flag, m_Group, INVALID, "", 0, 0, 0)
532 OPTION("-mno-mmx", mno_mmx, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
533 OPTION("-mno-pascal-strings", mno_pascal_strings, Flag, m_Group, INVALID, "", 0, 0, 0)
534 OPTION("-mno-red-zone", mno_red_zone, Flag, m_Group, INVALID, "", 0, 0, 0)
535 OPTION("-mno-soft-float", mno_soft_float, Flag, m_Group, INVALID, "", 0, 0, 0)
536 OPTION("-mno-sse2", mno_sse2, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
537 OPTION("-mno-sse3", mno_sse3, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
538 OPTION("-mno-sse4a", mno_sse4a, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
539 OPTION("-mno-sse4", mno_sse4, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
540 OPTION("-mno-sse", mno_sse, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
541 OPTION("-mno-ssse3", mno_ssse3, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
542 OPTION("-mno-thumb", mno_thumb, Flag, m_Group, INVALID, "", 0, 0, 0)
543 OPTION("-mno-warn-nonportable-cfstrings", mno_warn_nonportable_cfstrings, Flag, m_Group, INVALID, "", 0, 0, 0)
544 OPTION("-mpascal-strings", mpascal_strings, Flag, m_Group, INVALID, "", 0, 0, 0)
545 OPTION("-mred-zone", mred_zone, Flag, m_Group, INVALID, "", 0, 0, 0)
546 OPTION("-msoft-float", msoft_float, Flag, m_Group, INVALID, "", 0, 0, 0)
547 OPTION("-msse2", msse2, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
548 OPTION("-msse3", msse3, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
549 OPTION("-msse4a", msse4a, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
550 OPTION("-msse4", msse4, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
551 OPTION("-msse", msse, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
552 OPTION("-mssse3", mssse3, Flag, m_x86_Features_Group, INVALID, "", 0, 0, 0)
553 OPTION("-mthumb", mthumb, Flag, m_Group, INVALID, "", 0, 0, 0)
554 OPTION("-mtune=", mtune_EQ, Joined, m_Group, INVALID, "", 0, 0, 0)
555 OPTION("-multi_module", multi__module, Flag, INVALID, INVALID, "", 0, 0, 0)
556 OPTION("-multiply_defined_unused", multiply__defined__unused, Separate, INVALID, INVALID, "", 0, 0, 0)
557 OPTION("-multiply_defined", multiply__defined, Separate, INVALID, INVALID, "", 0, 0, 0)
558 OPTION("-mwarn-nonportable-cfstrings", mwarn_nonportable_cfstrings, Flag, m_Group, INVALID, "", 0, 0, 0)
559 OPTION("-m", m_Separate, Separate, m_Group, INVALID, "", 0, 0, 0)
560 OPTION("-m", m_Joined, Joined, m_Group, INVALID, "", 0, 0, 0)
561 OPTION("-no-cpp-precomp", no_cpp_precomp, Flag, INVALID, INVALID, "", 0, 0, 0)
562 OPTION("-no-integrated-cpp", no_integrated_cpp, Flag, INVALID, INVALID, "d", 0, 0, 0)
563 OPTION("-no_dead_strip_inits_and_terms", no__dead__strip__inits__and__terms, Flag, INVALID, INVALID, "", 0, 0, 0)
564 OPTION("-nobuiltininc", nobuiltininc, Flag, INVALID, INVALID, "", 0, 0, 0)
565 OPTION("-nodefaultlibs", nodefaultlibs, Flag, INVALID, INVALID, "", 0, 0, 0)
566 OPTION("-nofixprebinding", nofixprebinding, Flag, INVALID, INVALID, "", 0, 0, 0)
567 OPTION("-nolibc", nolibc, Flag, INVALID, INVALID, "", 0, 0, 0)
568 OPTION("-nomultidefs", nomultidefs, Flag, INVALID, INVALID, "", 0, 0, 0)
569 OPTION("-noprebind", noprebind, Flag, INVALID, INVALID, "", 0, 0, 0)
570 OPTION("-noseglinkedit", noseglinkedit, Flag, INVALID, INVALID, "", 0, 0, 0)
571 OPTION("-nostartfiles", nostartfiles, Flag, INVALID, INVALID, "", 0, 0, 0)
572 OPTION("-nostdinc", nostdinc, Flag, INVALID, INVALID, "", 0, 0, 0)
573 OPTION("-nostdlib", nostdlib, Flag, INVALID, INVALID, "", 0, 0, 0)
574 OPTION("-object", object, Flag, INVALID, INVALID, "", 0, 0, 0)
575 OPTION("-o", o, JoinedOrSeparate, INVALID, INVALID, "di", 0, 
576        "Write output to <file>", "<file>")
577 OPTION("-pagezero_size", pagezero__size, JoinedOrSeparate, INVALID, INVALID, "", 0, 0, 0)
578 OPTION("-pass-exit-codes", pass_exit_codes, Flag, INVALID, INVALID, "u", 0, 0, 0)
579 OPTION("-pedantic-errors", pedantic_errors, Flag, pedantic_Group, INVALID, "", 0, 0, 0)
580 OPTION("-pedantic", pedantic, Flag, pedantic_Group, INVALID, "", 0, 0, 0)
581 OPTION("-pg", pg, Flag, INVALID, INVALID, "", 0, 0, 0)
582 OPTION("-pipe", pipe, Flag, INVALID, INVALID, "", 0, 
583        "Use pipes between commands, when possible", 0)
584 OPTION("-prebind_all_twolevel_modules", prebind__all__twolevel__modules, Flag, INVALID, INVALID, "", 0, 0, 0)
585 OPTION("-prebind", prebind, Flag, INVALID, INVALID, "", 0, 0, 0)
586 OPTION("-preload", preload, Flag, INVALID, INVALID, "", 0, 0, 0)
587 OPTION("-print-file-name=", print_file_name_EQ, Joined, INVALID, INVALID, "", 0,
588        "Print the full library path of <file>", "<file>")
589 OPTION("-print-ivar-layout", print_ivar_layout, Flag, INVALID, INVALID, "", 0, 0, 0)
590 OPTION("-print-libgcc-file-name", print_libgcc_file_name, Flag, INVALID, INVALID, "", 0, 
591        "Print the library path for \"libgcc.a\"", 0)
592 OPTION("-print-multi-directory", print_multi_directory, Flag, INVALID, INVALID, "", 0, 0, 0)
593 OPTION("-print-multi-lib", print_multi_lib, Flag, INVALID, INVALID, "", 0, 0, 0)
594 OPTION("-print-multi-os-directory", print_multi_os_directory, Flag, INVALID, INVALID, "", 0, 0, 0)
595 OPTION("-print-prog-name=", print_prog_name_EQ, Joined, INVALID, INVALID, "", 0,
596        "Print the full program path of <name>", "<name>")
597 OPTION("-print-search-dirs", print_search_dirs, Flag, INVALID, INVALID, "", 0, 
598        "Print the paths used for finding libraries and programs", 0)
599 OPTION("-private_bundle", private__bundle, Flag, INVALID, INVALID, "", 0, 0, 0)
600 OPTION("-pthreads", pthreads, Flag, INVALID, INVALID, "", 0, 0, 0)
601 OPTION("-pthread", pthread, Flag, INVALID, INVALID, "", 0, 0, 0)
602 OPTION("-p", p, Flag, INVALID, INVALID, "", 0, 0, 0)
603 OPTION("-read_only_relocs", read__only__relocs, Separate, INVALID, INVALID, "", 0, 0, 0)
604 OPTION("-remap", remap, Flag, INVALID, INVALID, "", 0, 0, 0)
605 OPTION("-rpath", rpath, Separate, INVALID, INVALID, "l", 0, 0, 0)
606 OPTION("-r", r, Flag, INVALID, INVALID, "", 0, 0, 0)
607 OPTION("-save-temps", save_temps, Flag, INVALID, INVALID, "d", 0, 
608        "Save intermediate compilation results", 0)
609 OPTION("-sectalign", sectalign, MultiArg, INVALID, INVALID, "", 3, 0, 0)
610 OPTION("-sectcreate", sectcreate, MultiArg, INVALID, INVALID, "", 3, 0, 0)
611 OPTION("-sectobjectsymbols", sectobjectsymbols, MultiArg, INVALID, INVALID, "", 2, 0, 0)
612 OPTION("-sectorder", sectorder, MultiArg, INVALID, INVALID, "", 3, 0, 0)
613 OPTION("-seg1addr", seg1addr, JoinedOrSeparate, INVALID, INVALID, "", 0, 0, 0)
614 OPTION("-seg_addr_table_filename", seg__addr__table__filename, Separate, INVALID, INVALID, "", 0, 0, 0)
615 OPTION("-seg_addr_table", seg__addr__table, Separate, INVALID, INVALID, "", 0, 0, 0)
616 OPTION("-segaddr", segaddr, MultiArg, INVALID, INVALID, "", 2, 0, 0)
617 OPTION("-segcreate", segcreate, MultiArg, INVALID, INVALID, "", 3, 0, 0)
618 OPTION("-seglinkedit", seglinkedit, Flag, INVALID, INVALID, "", 0, 0, 0)
619 OPTION("-segprot", segprot, MultiArg, INVALID, INVALID, "", 3, 0, 0)
620 OPTION("-segs_read_only_addr", segs__read__only__addr, Separate, INVALID, INVALID, "", 0, 0, 0)
621 OPTION("-segs_read_write_addr", segs__read__write__addr, Separate, INVALID, INVALID, "", 0, 0, 0)
622 OPTION("-segs_read_", segs__read__, Joined, INVALID, INVALID, "", 0, 0, 0)
623 OPTION("-shared-libgcc", shared_libgcc, Flag, INVALID, INVALID, "", 0, 0, 0)
624 OPTION("-shared", shared, Flag, INVALID, INVALID, "", 0, 0, 0)
625 OPTION("-single_module", single__module, Flag, INVALID, INVALID, "", 0, 0, 0)
626 OPTION("-specs=", specs_EQ, Joined, INVALID, INVALID, "", 0, 0, 0)
627 OPTION("-specs", specs, Separate, INVALID, INVALID, "u", 0, 0, 0)
628 OPTION("-static-libgcc", static_libgcc, Flag, INVALID, INVALID, "", 0, 0, 0)
629 OPTION("-static", static, Flag, INVALID, INVALID, "q", 0, 0, 0)
630 OPTION("-std-default=", std_default_EQ, Joined, INVALID, INVALID, "", 0, 0, 0)
631 OPTION("-std=", std_EQ, Joined, INVALID, INVALID, "", 0, 0, 0)
632 OPTION("-sub_library", sub__library, JoinedOrSeparate, INVALID, INVALID, "", 0, 0, 0)
633 OPTION("-sub_umbrella", sub__umbrella, JoinedOrSeparate, INVALID, INVALID, "", 0, 0, 0)
634 OPTION("-s", s, Flag, INVALID, INVALID, "", 0, 0, 0)
635 OPTION("-time", time, Flag, INVALID, INVALID, "", 0, 
636        "Time individual commands", 0)
637 OPTION("-traditional-cpp", traditional_cpp, Flag, INVALID, INVALID, "", 0, 0, 0)
638 OPTION("-traditional", traditional, Flag, INVALID, INVALID, "", 0, 0, 0)
639 OPTION("-trigraphs", trigraphs, Flag, INVALID, INVALID, "", 0, 0, 0)
640 OPTION("-twolevel_namespace_hints", twolevel__namespace__hints, Flag, INVALID, INVALID, "", 0, 0, 0)
641 OPTION("-twolevel_namespace", twolevel__namespace, Flag, INVALID, INVALID, "", 0, 0, 0)
642 OPTION("-t", t, Flag, INVALID, INVALID, "", 0, 0, 0)
643 OPTION("-umbrella", umbrella, Separate, INVALID, INVALID, "", 0, 0, 0)
644 OPTION("-undefined", undefined, JoinedOrSeparate, u_Group, INVALID, "", 0, 0, 0)
645 OPTION("-undef", undef, Flag, u_Group, INVALID, "", 0, 0, 0)
646 OPTION("-unexported_symbols_list", unexported__symbols__list, Separate, INVALID, INVALID, "", 0, 0, 0)
647 OPTION("-u", u, JoinedOrSeparate, u_Group, INVALID, "", 0, 0, 0)
648 OPTION("-v", v, Flag, INVALID, INVALID, "", 0, 
649        "Show commands to run and use verbose output", 0)
650 OPTION("-weak-l", weak_l, Joined, INVALID, INVALID, "l", 0, 0, 0)
651 OPTION("-weak_framework", weak__framework, Separate, INVALID, INVALID, "l", 0, 0, 0)
652 OPTION("-weak_library", weak__library, Separate, INVALID, INVALID, "l", 0, 0, 0)
653 OPTION("-weak_reference_mismatches", weak__reference__mismatches, Separate, INVALID, INVALID, "", 0, 0, 0)
654 OPTION("-whatsloaded", whatsloaded, Flag, INVALID, INVALID, "", 0, 0, 0)
655 OPTION("-whyload", whyload, Flag, INVALID, INVALID, "", 0, 0, 0)
656 OPTION("-w", w, Flag, INVALID, INVALID, "", 0, 0, 0)
657 OPTION("-x", x, JoinedOrSeparate, INVALID, INVALID, "d", 0, 
658        "Treat subsequent input files as having type <language>", "<language>")
659 OPTION("-y", y, Joined, INVALID, INVALID, "", 0, 0, 0)