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