OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / gcc / c.opt
1 ; Options for the C, ObjC, C++ and ObjC++ front ends.
2 ; Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
3 ;
4 ; This file is part of GCC.
5 ;
6 ; GCC is free software; you can redistribute it and/or modify it under
7 ; the terms of the GNU General Public License as published by the Free
8 ; Software Foundation; either version 2, or (at your option) any later
9 ; version.
10 ;
11 ; GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 ; WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 ; FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 ; for more details.
15 ;
16 ; You should have received a copy of the GNU General Public License
17 ; along with GCC; see the file COPYING.  If not, write to the Free
18 ; Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
19 ; 02110-1301, USA.
20
21 ; See the GCC internals manual for a description of this file's format.
22
23 ; Please try to keep this file in ASCII collating order.
24
25 Language
26 C
27
28 Language
29 ObjC
30
31 Language
32 C++
33
34 Language
35 ObjC++
36
37 -output-pch=
38 C ObjC C++ ObjC++ Joined Separate
39
40 A
41 C ObjC C++ ObjC++ Joined Separate
42 -A<question>=<answer>   Assert the <answer> to <question>.  Putting '-' before <question> disables the <answer> to <question>
43
44 C
45 C ObjC C++ ObjC++
46 Do not discard comments
47
48 CC
49 C ObjC C++ ObjC++
50 Do not discard comments in macro expansions
51
52 D
53 C ObjC C++ ObjC++ Joined Separate
54 -D<macro>[=<val>]       Define a <macro> with <val> as its value.  If just <macro> is given, <val> is taken to be 1
55
56 E
57 C ObjC C++ ObjC++ Undocumented
58
59 F
60 C ObjC C++ ObjC++ Joined Separate
61 -F <dir>        Add <dir> to the end of the main framework include path
62
63 H
64 C ObjC C++ ObjC++
65 Print the name of header files as they are used
66
67 I
68 C ObjC C++ ObjC++ Joined Separate
69 -I <dir>        Add <dir> to the end of the main include path
70
71 M
72 C ObjC C++ ObjC++
73 Generate make dependencies
74
75 MD
76 C ObjC C++ ObjC++ Separate
77 Generate make dependencies and compile
78
79 MF
80 C ObjC C++ ObjC++ Joined Separate
81 -MF <file>      Write dependency output to the given file
82
83 MG
84 C ObjC C++ ObjC++
85 Treat missing header files as generated files
86
87 MM
88 C ObjC C++ ObjC++
89 Like -M but ignore system header files
90
91 MMD
92 C ObjC C++ ObjC++ Separate
93 Like -MD but ignore system header files
94
95 MP
96 C ObjC C++ ObjC++
97 Generate phony targets for all headers
98
99 MQ
100 C ObjC C++ ObjC++ Joined Separate
101 -MQ <target>    Add a MAKE-quoted target
102
103 MT
104 C ObjC C++ ObjC++ Joined Separate
105 -MT <target>    Add an unquoted target
106
107 P
108 C ObjC C++ ObjC++
109 Do not generate #line directives
110
111 U
112 C ObjC C++ ObjC++ Joined Separate
113 -U<macro>       Undefine <macro>
114
115 Wabi
116 C++ ObjC++ Var(warn_abi)
117 Warn about things that will change when compiling with an ABI-compliant compiler
118
119 Wall
120 C ObjC C++ ObjC++
121 Enable most warning messages
122
123 Wassign-intercept
124 ObjC ObjC++ Var(warn_assign_intercept)
125 Warn whenever an Objective-C assignment is being intercepted by the garbage collector
126
127 Wbad-function-cast
128 C ObjC Var(warn_bad_function_cast)
129 Warn about casting functions to incompatible types
130
131 Wc++-compat
132 C Var(warn_cxx_compat)
133 Warn about C constructs that are not in the common subset of C and C++
134
135 Wc++0x-compat
136 C++ ObjC++ Var(warn_cxx0x_compat)
137 Warn about C++ constructs whose meaning differs between ISO C++ 1998 and ISO C++ 200x
138
139 Wcast-qual
140 C ObjC C++ ObjC++ Var(warn_cast_qual)
141 Warn about casts which discard qualifiers
142
143 Wchar-subscripts
144 C ObjC C++ ObjC++ Var(warn_char_subscripts)
145 Warn about subscripts whose type is \"char\"
146
147 Wclobbered
148 C ObjC C++ ObjC++ Var(warn_clobbered) Init(-1)
149 Warn about variables that might be changed by \"longjmp\" or \"vfork\"
150
151 Wcomment
152 C ObjC C++ ObjC++
153 Warn about possibly nested block comments, and C++ comments spanning more than one physical line
154
155 Wcomments
156 C ObjC C++ ObjC++
157 Synonym for -Wcomment
158
159 Wconversion
160 C ObjC C++ ObjC++ Var(warn_conversion)
161 Warn for implicit type conversions that may change a value
162
163 Wctor-dtor-privacy
164 C++ ObjC++ Var(warn_ctor_dtor_privacy)
165 Warn when all constructors and destructors are private
166
167 Wdeclaration-after-statement
168 C ObjC Var(warn_declaration_after_statement)
169 Warn when a declaration is found after a statement
170
171 Wdeprecated
172 C++ ObjC++ Var(warn_deprecated) Init(1)
173 Warn about deprecated compiler features
174
175 Wdiv-by-zero
176 C ObjC C++ Var(warn_div_by_zero) Init(1)
177 Warn about compile-time integer division by zero
178
179 Weffc++
180 C++ ObjC++ Var(warn_ecpp)
181 Warn about violations of Effective C++ style rules
182
183 Wempty-body
184 C ObjC C++ ObjC++ Var(warn_empty_body) Init(-1)
185 Warn about an empty body in an if or else statement
186
187 Wendif-labels
188 C ObjC C++ ObjC++
189 Warn about stray tokens after #elif and #endif
190
191 Werror
192 C ObjC C++ ObjC++
193 ; Documented in common.opt
194
195 Werror-implicit-function-declaration
196 C ObjC RejectNegative
197 Make implicit function declarations an error
198
199 Wfloat-equal
200 C ObjC C++ ObjC++ Var(warn_float_equal)
201 Warn if testing floating point numbers for equality
202
203 Wformat
204 C ObjC C++ ObjC++
205 Warn about printf/scanf/strftime/strfmon format string anomalies
206
207 Wformat-extra-args
208 C ObjC C++ ObjC++ Var(warn_format_extra_args)
209 Warn if passing too many arguments to a function for its format string
210
211 Wformat-nonliteral
212 C ObjC C++ ObjC++ Var(warn_format_nonliteral)
213 Warn about format strings that are not literals
214
215 Wformat-security
216 C ObjC C++ ObjC++ Var(warn_format_security)
217 Warn about possible security problems with format functions
218
219 Wformat-y2k
220 C ObjC C++ ObjC++ Var(warn_format_y2k)
221 Warn about strftime formats yielding 2-digit years
222
223 Wformat-zero-length
224 C ObjC Var(warn_format_zero_length)
225 Warn about zero-length formats
226
227 Wformat=
228 C ObjC C++ ObjC++ Joined
229
230 Winit-self
231 C ObjC C++ ObjC++ Var(warn_init_self)
232 Warn about variables which are initialized to themselves
233
234 Wimplicit
235 C ObjC C++ ObjC++
236
237 Wimplicit-function-declaration
238 C ObjC Var(mesg_implicit_function_declaration) Init(-1)
239 Warn about implicit function declarations
240
241 Wimplicit-int
242 C ObjC Var(warn_implicit_int)
243 Warn when a declaration does not specify a type
244
245 Wimport
246 C ObjC C++ ObjC++
247 Deprecated.  This switch has no effect
248
249 Wint-to-pointer-cast
250 C ObjC Var(warn_int_to_pointer_cast) Init(1)
251 Warn when there is a cast to a pointer from an integer of a different size
252
253 Winvalid-offsetof
254 C++ ObjC++ Var(warn_invalid_offsetof) Init(1)
255 Warn about invalid uses of the \"offsetof\" macro
256
257 Winvalid-pch
258 C ObjC C++ ObjC++
259 Warn about PCH files that are found but not used
260
261 Wlong-long
262 C ObjC C++ ObjC++ Var(warn_long_long) Init(1)
263 Do not warn about using \"long long\" when -pedantic
264
265 Wmain
266 C ObjC
267 Warn about suspicious declarations of \"main\"
268
269 Wmissing-braces
270 C ObjC C++ ObjC++ Var(warn_missing_braces)
271 Warn about possibly missing braces around initializers
272
273 Wmissing-declarations
274 C ObjC C++ ObjC++ Var(warn_missing_declarations)
275 Warn about global functions without previous declarations
276
277 Wmissing-field-initializers
278 C ObjC C++ ObjC++ Var(warn_missing_field_initializers) Init(-1)
279 Warn about missing fields in struct initializers
280
281 Wmissing-format-attribute
282 C ObjC C++ ObjC++ Var(warn_missing_format_attribute)
283 Warn about functions which might be candidates for format attributes
284
285 Wmissing-include-dirs
286 C ObjC C++ ObjC++
287 Warn about user-specified include directories that do not exist
288
289 Wmissing-parameter-type
290 C ObjC Var(warn_missing_parameter_type) Init(-1)
291 Warn about function parameters declared without a type specifier in K&R-style functions
292
293 Wmissing-prototypes
294 C ObjC Var(warn_missing_prototypes)
295 Warn about global functions without prototypes
296
297 Wmultichar
298 C ObjC C++ ObjC++
299 Warn about use of multi-character character constants
300
301 Wnested-externs
302 C ObjC Var(warn_nested_externs)
303 Warn about \"extern\" declarations not at file scope
304
305 Wnon-template-friend
306 C++ ObjC++ Var(warn_nontemplate_friend) Init(1)
307 Warn when non-templatized friend functions are declared within a template
308
309 Wnon-virtual-dtor
310 C++ ObjC++ Var(warn_nonvdtor)
311 Warn about non-virtual destructors
312
313 Wnonnull
314 C ObjC Var(warn_nonnull)
315 Warn about NULL being passed to argument slots marked as requiring non-NULL
316
317 Wnormalized=
318 C ObjC C++ ObjC++ Joined
319 -Wnormalized=<id|nfc|nfkc>      Warn about non-normalised Unicode strings
320
321 Wold-style-cast
322 C++ ObjC++ Var(warn_old_style_cast)
323 Warn if a C-style cast is used in a program
324
325 Wold-style-declaration
326 C ObjC Var(warn_old_style_declaration) Init(-1)
327 Warn for obsolescent usage in a declaration
328
329 Wold-style-definition
330 C ObjC Var(warn_old_style_definition)
331 Warn if an old-style parameter definition is used
332
333 Woverlength-strings
334 C ObjC C++ ObjC++ Var(warn_overlength_strings) Init(-1)
335 Warn if a string is longer than the maximum portable length specified by the standard
336
337 Woverloaded-virtual
338 C++ ObjC++ Var(warn_overloaded_virtual)
339 Warn about overloaded virtual function names
340
341 Woverride-init
342 C ObjC Var(warn_override_init) Init(-1)
343 Warn about overriding initializers without side effects
344
345 Wparentheses
346 C ObjC C++ ObjC++ Var(warn_parentheses)
347 Warn about possibly missing parentheses
348
349 Wpmf-conversions
350 C++ ObjC++ Var(warn_pmf2ptr) Init(1)
351 Warn when converting the type of pointers to member functions
352
353 Wpointer-arith
354 C ObjC C++ ObjC++ Var(warn_pointer_arith)
355 Warn about function pointer arithmetic
356
357 Wpointer-to-int-cast
358 C ObjC Var(warn_pointer_to_int_cast) Init(1)
359 Warn when a pointer is cast to an integer of a different size
360
361 Wpragmas
362 C ObjC C++ ObjC++ Var(warn_pragmas) Init(1)
363 Warn about misuses of pragmas
364
365 Wprotocol
366 ObjC ObjC++ Var(warn_protocol) Init(1)
367 Warn if inherited methods are unimplemented
368
369 Wredundant-decls
370 C ObjC C++ ObjC++ Var(warn_redundant_decls)
371 Warn about multiple declarations of the same object
372
373 Wreorder
374 C++ ObjC++ Var(warn_reorder)
375 Warn when the compiler reorders code
376
377 Wreturn-type
378 C ObjC C++ ObjC++ Var(warn_return_type)
379 Warn whenever a function's return type defaults to \"int\" (C), or about inconsistent return types (C++)
380
381 Wselector
382 ObjC ObjC++ Var(warn_selector)
383 Warn if a selector has multiple methods
384
385 Wsequence-point
386 C ObjC C++ ObjC++ Var(warn_sequence_point)
387 Warn about possible violations of sequence point rules
388
389 Wsign-compare
390 C ObjC C++ ObjC++ Var(warn_sign_compare) Init(-1)
391 Warn about signed-unsigned comparisons
392
393 Wsign-promo
394 C++ ObjC++ Var(warn_sign_promo)
395 Warn when overload promotes from unsigned to signed
396
397 Wstrict-null-sentinel
398 C++ ObjC++
399 Warn about uncasted NULL used as sentinel
400
401 Wstrict-prototypes
402 C ObjC Var(warn_strict_prototypes)
403 Warn about unprototyped function declarations
404
405 Wstrict-selector-match
406 ObjC ObjC++ Var(warn_strict_selector_match)
407 Warn if type signatures of candidate methods do not match exactly
408
409 Wsynth
410 C++ ObjC++ Var(warn_synth)
411 Warn when synthesis behavior differs from Cfront
412
413 Wsystem-headers
414 C ObjC C++ ObjC++
415 Do not suppress warnings from system headers
416
417 Wtraditional
418 C ObjC Var(warn_traditional)
419 Warn about features not present in traditional C
420
421 Wtraditional-conversion
422 C ObjC Var(warn_traditional_conversion)
423 Warn of prototypes causing type conversions different from what would happen in the absence of prototype
424
425 Wtrigraphs
426 C ObjC C++ ObjC++
427 Warn if trigraphs are encountered that might affect the meaning of the program
428
429 Wundeclared-selector
430 ObjC ObjC++ Var(warn_undeclared_selector)
431 Warn about @selector()s without previously declared methods
432
433 Wundef
434 C ObjC C++ ObjC++
435 Warn if an undefined macro is used in an #if directive
436
437 Wunknown-pragmas
438 C ObjC C++ ObjC++
439 Warn about unrecognized pragmas
440
441 Wunused-macros
442 C ObjC C++ ObjC++
443 Warn about macros defined in the main file that are not used
444
445 Wvariadic-macros
446 C ObjC C++ ObjC++
447 Do not warn about using variadic macros when -pedantic
448
449 Wwrite-strings
450 C ObjC C++ ObjC++ Var(warn_write_strings)
451 In C++, nonzero means warn about deprecated conversion from string literals to `char *'.  In C, similar warning, except that the conversion is of course not deprecated by the ISO C standard.
452
453 Wpointer-sign
454 C ObjC Var(warn_pointer_sign) Init(-1)
455 Warn when a pointer differs in signedness in an assignment
456
457 ansi
458 C ObjC C++ ObjC++
459 A synonym for -std=c89 (for C) or -std=c++98 (for C++)
460
461 d
462 C ObjC C++ ObjC++ Joined
463 ; Documented in common.opt.  FIXME - what about -dI, -dD, -dN and -dD?
464
465 faccess-control
466 C++ ObjC++
467 Enforce class member access control semantics
468
469 fall-virtual
470 C++ ObjC++
471
472 falt-external-templates
473 C++ ObjC++
474 Change when template instances are emitted
475
476 fasm
477 C ObjC C++ ObjC++
478 Recognize the \"asm\" keyword
479
480 fbuiltin
481 C ObjC C++ ObjC++
482 Recognize built-in functions
483
484 fbuiltin-
485 C ObjC C++ ObjC++ Joined
486
487 fcheck-new
488 C++ ObjC++
489 Check the return value of new
490
491 fcond-mismatch
492 C ObjC C++ ObjC++
493 Allow the arguments of the '?' operator to have different types
494
495 fconserve-space
496 C++ ObjC++
497 Reduce the size of object files
498
499 fconstant-string-class=
500 ObjC ObjC++ Joined
501 -fconst-string-class=<name>     Use class <name> for constant strings
502
503 fdefault-inline
504 C++ ObjC++
505 Inline member functions by default
506
507 fdollars-in-identifiers
508 C ObjC C++ ObjC++
509 Permit '$' as an identifier character
510
511 felide-constructors
512 C++ ObjC++
513
514 fenforce-eh-specs
515 C++ ObjC++
516 Generate code to check exception specifications
517
518 fenum-int-equiv
519 C++ ObjC++
520
521 fexec-charset=
522 C ObjC C++ ObjC++ Joined RejectNegative
523 -fexec-charset=<cset>   Convert all strings and character constants to character set <cset>
524
525 fextended-identifiers
526 C ObjC C++ ObjC++
527 Permit universal character names (\\u and \\U) in identifiers
528
529 finput-charset=
530 C ObjC C++ ObjC++ Joined RejectNegative
531 -finput-charset=<cset>  Specify the default character set for source files
532
533
534 fexternal-templates
535 C++ ObjC++
536
537 ffor-scope
538 C++ ObjC++
539 Scope of for-init-statement variables is local to the loop
540
541 ffreestanding
542 C ObjC
543 Do not assume that standard C libraries and \"main\" exist
544
545 fgnu-keywords
546 C++ ObjC++
547 Recognize GNU-defined keywords
548
549 fgnu-runtime
550 ObjC ObjC++
551 Generate code for GNU runtime environment
552
553 fguiding-decls
554 C++ ObjC++
555
556 fhandle-exceptions
557 C++ ObjC++
558
559 fhonor-std
560 C++ ObjC++
561
562 fhosted
563 C ObjC
564 Assume normal C execution environment
565
566 fhuge-objects
567 C++ ObjC++
568 Enable support for huge objects
569
570 fimplement-inlines
571 C++ ObjC++
572 Export functions even if they can be inlined
573
574 fimplicit-inline-templates
575 C++ ObjC++
576 Emit implicit instantiations of inline templates
577
578 fimplicit-templates
579 C++ ObjC++
580 Emit implicit instantiations of templates
581
582 ffriend-injection
583 C++ Var(flag_friend_injection)
584 Inject friend functions into enclosing namespace
585
586 flabels-ok
587 C++ ObjC++
588
589 flax-vector-conversions
590 C ObjC C++ ObjC++
591 Allow implicit conversions between vectors with differing numbers of subparts and/or differing element types.
592
593 fms-extensions
594 C ObjC C++ ObjC++
595 Don't warn about uses of Microsoft extensions
596
597 fname-mangling-version-
598 C++ ObjC++ Joined
599
600 fnew-abi
601 C++ ObjC++
602
603 fnext-runtime
604 ObjC ObjC++
605 Generate code for NeXT (Apple Mac OS X) runtime environment
606
607 fnil-receivers
608 ObjC ObjC++
609 Assume that receivers of Objective-C messages may be nil
610
611 fnonansi-builtins
612 C++ ObjC++
613
614 fnonnull-objects
615 C++ ObjC++
616
617 ; Generate special '- .cxx_construct' and '- .cxx_destruct' methods
618 ; to initialize any non-POD ivars in Objective-C++ classes.
619 fobjc-call-cxx-cdtors
620 ObjC++ Var(flag_objc_call_cxx_cdtors)
621 Generate special Objective-C methods to initialize/destroy non-POD C++ ivars, if needed
622
623 fobjc-direct-dispatch
624 ObjC ObjC++ Var(flag_objc_direct_dispatch)
625 Allow fast jumps to the message dispatcher
626
627 ; Nonzero means that we will allow new ObjC exception syntax (@throw,
628 ; @try, etc.) in source code.
629 fobjc-exceptions
630 ObjC ObjC++ Var(flag_objc_exceptions)
631 Enable Objective-C exception and synchronization syntax
632
633 fobjc-gc
634 ObjC ObjC++ Var(flag_objc_gc)
635 Enable garbage collection (GC) in Objective-C/Objective-C++ programs
636
637 ; Nonzero means that we generate NeXT setjmp based exceptions.
638 fobjc-sjlj-exceptions
639 ObjC ObjC++ Var(flag_objc_sjlj_exceptions) Init(-1)
640 Enable Objective-C setjmp exception handling runtime
641
642 fopenmp
643 C ObjC C++ ObjC++ Var(flag_openmp)
644 Enable OpenMP
645
646 foperator-names
647 C++ ObjC++
648 Recognize C++ kewords like \"compl\" and \"xor\"
649
650 foptional-diags
651 C++ ObjC++
652 Enable optional diagnostics
653
654 fpch-deps
655 C ObjC C++ ObjC++
656
657 fpch-preprocess
658 C ObjC C++ ObjC++
659 Look for and use PCH files even when preprocessing
660
661 fpermissive
662 C++ ObjC++
663 Downgrade conformance errors to warnings
664
665 fpreprocessed
666 C ObjC C++ ObjC++
667 Treat the input file as already preprocessed
668
669 freplace-objc-classes
670 ObjC ObjC++
671 Used in Fix-and-Continue mode to indicate that object files may be swapped in at runtime
672
673 frepo
674 C++ ObjC++
675 Enable automatic template instantiation
676
677 frtti
678 C++ ObjC++
679 Generate run time type descriptor information
680
681 fshort-double
682 C ObjC C++ ObjC++
683 Use the same size for double as for float
684
685 fshort-enums
686 C ObjC C++ ObjC++
687 Use the narrowest integer type possible for enumeration types
688
689 fshort-wchar
690 C ObjC C++ ObjC++
691 Force the underlying type for \"wchar_t\" to be \"unsigned short\"
692
693 fsigned-bitfields
694 C ObjC C++ ObjC++
695 When \"signed\" or \"unsigned\" is not given make the bitfield signed
696
697 fsigned-char
698 C ObjC C++ ObjC++
699 Make \"char\" signed by default
700
701 fsquangle
702 C++ ObjC++
703
704 fstats
705 C++ ObjC++
706 Display statistics accumulated during compilation
707
708 fstrict-prototype
709 C++ ObjC++
710
711 ftabstop=
712 C ObjC C++ ObjC++ Joined RejectNegative UInteger
713 -ftabstop=<number>      Distance between tab stops for column reporting
714
715 ftemplate-depth-
716 C++ ObjC++ Joined RejectNegative UInteger
717 -ftemplate-depth-<number>       Specify maximum template instantiation depth
718
719 fthis-is-variable
720 C++ ObjC++
721
722 fthreadsafe-statics
723 C++ ObjC++
724 -fno-threadsafe-statics Do not generate thread-safe code for initializing local statics
725
726 funsigned-bitfields
727 C ObjC C++ ObjC++
728 When \"signed\" or \"unsigned\" is not given make the bitfield unsigned
729
730 funsigned-char
731 C ObjC C++ ObjC++
732 Make \"char\" unsigned by default
733
734 fuse-cxa-atexit
735 C++ ObjC++
736 Use __cxa_atexit to register destructors
737
738 fuse-cxa-get-exception-ptr
739 C++ ObjC++
740 Use __cxa_get_exception_ptr in exception handling
741
742 fvisibility-inlines-hidden
743 C++ ObjC++
744 Marks all inlined methods as having hidden visibility
745
746 fvtable-gc
747 C++ ObjC++
748 Discard unused virtual functions
749
750 fvtable-thunks
751 C++ ObjC++
752 Implement vtables using thunks
753
754 fweak
755 C++ ObjC++
756 Emit common-like symbols as weak symbols
757
758 fwide-exec-charset=
759 C ObjC C++ ObjC++ Joined RejectNegative
760 -fwide-exec-charset=<cset>      Convert all wide strings and character constants to character set <cset>
761
762 fworking-directory
763 C ObjC C++ ObjC++
764 Generate a #line directive pointing at the current working directory
765
766 fxref
767 C++ ObjC++
768 Emit cross referencing information
769
770 fzero-link
771 ObjC ObjC++
772 Generate lazy class lookup (via objc_getClass()) for use in Zero-Link mode
773
774 gen-decls
775 ObjC ObjC++
776 Dump declarations to a .decl file
777
778 idirafter
779 C ObjC C++ ObjC++ Joined Separate
780 -idirafter <dir>        Add <dir> to the end of the system include path
781
782 imacros
783 C ObjC C++ ObjC++ Joined Separate
784 -imacros <file> Accept definition of macros in <file>
785
786 imultilib
787 C ObjC C++ ObjC++ Joined Separate
788 -imultilib <dir> Set <dir> to be the multilib include subdirectory
789
790 include
791 C ObjC C++ ObjC++ Joined Separate
792 -include <file> Include the contents of <file> before other files
793
794 iprefix
795 C ObjC C++ ObjC++ Joined Separate
796 -iprefix <path> Specify <path> as a prefix for next two options
797
798 isysroot
799 C ObjC C++ ObjC++ Joined Separate
800 -isysroot <dir> Set <dir> to be the system root directory
801
802 isystem
803 C ObjC C++ ObjC++ Joined Separate
804 -isystem <dir>  Add <dir> to the start of the system include path
805
806 iquote
807 C ObjC C++ ObjC++ Joined Separate
808 -iquote <dir>   Add <dir> to the end of the quote include path
809
810 iwithprefix
811 C ObjC C++ ObjC++ Joined Separate
812 -iwithprefix <dir>      Add <dir> to the end of the system include path
813
814 iwithprefixbefore
815 C ObjC C++ ObjC++ Joined Separate
816 -iwithprefixbefore <dir>        Add <dir> to the end of the main include path
817
818 lang-asm
819 C Undocumented
820
821 lang-fortran
822 C Undocumented
823
824 lang-objc
825 C ObjC C++ ObjC++ Undocumented
826
827 nostdinc
828 C ObjC C++ ObjC++
829 Do not search standard system include directories (those specified with -isystem will still be used)
830
831 nostdinc++
832 C++ ObjC++
833 Do not search standard system include directories for C++
834
835 o
836 C ObjC C++ ObjC++ Joined Separate
837 ; Documented in common.opt
838
839 pedantic
840 C ObjC C++ ObjC++
841 ; Documented in common.opt
842
843 pedantic-errors
844 C ObjC C++ ObjC++
845 ; Documented in common.opt
846
847 print-objc-runtime-info
848 ObjC ObjC++
849 Generate C header of platform-specific features
850
851 print-pch-checksum
852 C ObjC C++ ObjC++
853 Print a checksum of the executable for PCH validity checking, and stop
854
855 remap
856 C ObjC C++ ObjC++
857 Remap file names when including files
858
859 std=c++98
860 C++ ObjC++
861 Conform to the ISO 1998 C++ standard
862
863 std=c++0x
864 C++ ObjC++
865 Conform to the ISO 1998 C++ standard, with extensions that are likely to
866 become a part of the upcoming ISO C++ standard, dubbed C++0x. Note that the
867 extensions enabled by this mode are experimental and may be removed in
868 future releases of GCC.
869
870 std=c89
871 C ObjC
872 Conform to the ISO 1990 C standard
873
874 std=c99
875 C ObjC
876 Conform to the ISO 1999 C standard
877
878 std=c9x
879 C ObjC
880 Deprecated in favor of -std=c99
881
882 std=gnu++98
883 C++ ObjC++
884 Conform to the ISO 1998 C++ standard with GNU extensions
885
886 std=gnu++0x
887 C++ ObjC++
888 Conform to the ISO 1998 C++ standard, with GNU extensions and
889 extensions that are likely to become a part of the upcoming ISO C++
890 standard, dubbed C++0x. Note that the extensions enabled by this mode
891 are experimental and may be removed in future releases of GCC.
892
893 std=gnu89
894 C ObjC
895 Conform to the ISO 1990 C standard with GNU extensions
896
897 std=gnu99
898 C ObjC
899 Conform to the ISO 1999 C standard with GNU extensions
900
901 std=gnu9x
902 C ObjC
903 Deprecated in favor of -std=gnu99
904
905 std=iso9899:1990
906 C ObjC
907 Conform to the ISO 1990 C standard
908
909 std=iso9899:199409
910 C ObjC
911 Conform to the ISO 1990 C standard as amended in 1994
912
913 std=iso9899:1999
914 C ObjC
915 Conform to the ISO 1999 C standard
916
917 std=iso9899:199x
918 C ObjC
919 Deprecated in favor of -std=iso9899:1999
920
921 traditional-cpp
922 C ObjC C++ ObjC++
923 Enable traditional preprocessing
924
925 trigraphs
926 C ObjC C++ ObjC++
927 -trigraphs      Support ISO C trigraphs
928
929 undef
930 C ObjC C++ ObjC++
931 Do not predefine system-specific and GCC-specific macros
932
933 v
934 C ObjC C++ ObjC++
935 Enable verbose output
936
937 w
938 C ObjC C++ ObjC++
939 ; Documented in common.opt
940
941 ; This comment is to ensure we retain the blank line above.