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