get mxge to build, stage 29/many
[dragonfly.git] / contrib / gcc-3.4 / gcc / c.opt
blob7160dabbc55d3044634afa4492b4a3cfd83b8b5d
1 ; Options for the C, ObjC, C++ and ObjC++ front ends.
2 ; Copyright (C) 2003 Free Software Foundation, Inc.
4 ; This file is part of GCC.
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, 59 Temple Place - Suite 330, Boston, MA
19 ; 02111-1307, USA.
22 ; This file is processed by the script opts.sh.  It is a database of
23 ; command line options, with each record separated by a blank line,
24 ; and each field appearing on its own line.  The first field is the
25 ; command-line switch with the leading "-" removed.  All options
26 ; beginning with "f" or "W" are implicitly assumed to take a "no-"
27 ; form; this form should not be listed.  If you do not want this
28 ; negative form and you want it to be automatically rejected, add
29 ; RejectNegative to the second field.
31 ; The second field is a space-separated list of which parts of the
32 ; compiler recognize the switch, as declared by "Language" entries.
33 ; If the switch takes an argument, then you should also specify
34 ; "Joined" and/or "Separate" to indicate where the argument can
35 ; appear.  If a Joined argument can legitimately be omitted, specify
36 ; "JoinedOrMissing" instead of "Joined".  If the argument to a switch
37 ; is a non-negative integer, you can specify "UInteger" and the switch
38 ; decoder will convert the argument for you, or complain to the user
39 ; if the argument is invalid.
41 ; The third field is the help text to output with --help.  This is
42 ; automatically line-wrapped on output.  Normally the switch is output
43 ; automatically, with the help text on the right hand side of the
44 ; output.  However, if the help text contains a tab character, the
45 ; text to the left of the tab is output instead of the switch, and the
46 ; text to its right forms the help.  This is useful for elaborating on
47 ; what type of argument a switch takes, for example.  If the second
48 ; field contains "Undocumented" then nothing is output with --help.
49 ; Only do this with good reason like the switch being internal between
50 ; the driver and the front end - it is not an excuse to leave a switch
51 ; undocumented.
53 ; Comments can appear on their own line anwhere in the file, preceded
54 ; by a semicolon.  Whitespace is permitted before the semicolon.
56 ; For each switch XXX below, an enumeration constant is created by the
57 ; script opts.sh spelt OPT_XXX, but with all non-alphanumeric
58 ; characters replaced with an underscore.
60 ; Please try to keep this file in ASCII collating order.
62 Language
65 Language
66 ObjC
68 Language
69 C++
71 Language
72 ObjC++
74 -output-pch=
75 C ObjC C++ ObjC++ Joined Separate
78 C ObjC C++ ObjC++ Joined Separate
79 -A<question>=<answer>   Assert the <answer> to <question>.  Putting '-' before <question> disables the <answer> to <question>
82 C ObjC C++ ObjC++
83 Do not discard comments
86 C ObjC C++ ObjC++
87 Do not discard comments in macro expansions
90 C ObjC C++ ObjC++ Joined Separate
91 -D<macro>[=<val>]       Define a <macro> with <val> as its value.  If just <macro> is given, <val> is taken to be 1
94 C ObjC C++ ObjC++ Undocumented
97 C ObjC C++ ObjC++
98 Print the name of header files as they are used
101 C ObjC C++ ObjC++ Joined Separate
102 -I <dir>        Add <dir> to the end of the main include path.  -I- gives more include path control; see info documentation
105 C ObjC C++ ObjC++
106 Generate make dependencies
109 C ObjC C++ ObjC++ Separate
110 Generate make dependencies and compile
113 C ObjC C++ ObjC++ Joined Separate
114 -MF <file>      Write dependency output to the given file
117 C ObjC C++ ObjC++
118 Treat missing header files as generated files
121 C ObjC C++ ObjC++
122 Like -M but ignore system header files
125 C ObjC C++ ObjC++ Separate
126 Like -MD but ignore system header files
129 C ObjC C++ ObjC++
130 Generate phony targets for all headers
133 C ObjC C++ ObjC++ Joined Separate
134 -MQ <target>    Add a MAKE-quoted target
137 C ObjC C++ ObjC++ Joined Separate
138 -MT <target>    Add an unquoted target
141 C ObjC C++ ObjC++
142 Do not generate #line directives
145 C ObjC C++ ObjC++ Joined Separate
146 -U<macro>       Undefine <macro>
148 Wabi
149 C++ ObjC++
151 Wall
152 C ObjC C++ ObjC++
153 Enable most warning messages
155 Wbad-function-cast
156 C ObjC
157 Warn about casting functions to incompatible types
159 Wcast-qual
160 C ObjC C++ ObjC++
161 Warn about casts which discard qualifiers
163 Wchar-subscripts
164 C ObjC C++ ObjC++
165 Warn about subscripts whose type is \"char\"
167 Wcomment
168 C ObjC C++ ObjC++
169 Warn about possibly nested block comments, and C++ comments spanning more than one physical line
171 Wcomments
172 C ObjC C++ ObjC++
173 Synonym for -Wcomment
175 Wconversion
176 C ObjC C++ ObjC++
177 Warn about possibly confusing type conversions
179 Wctor-dtor-privacy
180 C++ ObjC++
181 Warn when all constructors and destructors are private
183 Wdeclaration-after-statement
184 C ObjC
185 Warn when a declaration is found after a statement
187 Wdeprecated
188 C++ ObjC++
189 Warn about deprecated compiler features
191 Wdiv-by-zero
192 C ObjC
193 Warn about compile-time integer division by zero
195 Weffc++
196 C++ ObjC++
197 Warn about violations of Effective C++ style rules
199 Wendif-labels
200 C ObjC C++ ObjC++
201 Warn about stray tokens after #elif and #endif
203 Werror
204 C ObjC C++ ObjC++
205 ; Documented in common.opt
207 Werror-implicit-function-declaration
208 C ObjC RejectNegative
209 Make implicit function declarations an error
211 Wfloat-equal
212 C ObjC C++ ObjC++
213 Warn if testing floating point numbers for equality
215 Wformat
216 C ObjC C++ ObjC++
217 Warn about printf/scanf/strftime/strfmon format string anomalies
219 Wformat-extra-args
220 C ObjC C++ ObjC++
221 Warn if passing too many arguments to a function for its format string
223 Wformat-nonliteral
224 C ObjC C++ ObjC++
225 Warn about format strings that are not literals
227 Wformat-security
228 C ObjC C++ ObjC++
229 Warn about possible security problems with format functions
231 Wformat-y2k
232 C ObjC C++ ObjC++
233 Warn about strftime formats yielding 2-digit years
235 Wformat-zero-length
236 C ObjC
238 Wformat=
239 C ObjC C++ ObjC++ Joined
241 Winit-self
242 C ObjC C++ ObjC++
243 Warn about variables which are initialized to themselves.
245 Wimplicit
246 C ObjC C++ ObjC++
248 Wimplicit-function-declaration
249 C ObjC
250 Warn about implicit function declarations
252 Wimplicit-int
253 C ObjC
254 Warn when a declaration does not specify a type
256 Wimport
257 C ObjC C++ ObjC++
258 Deprecated.  This switch has no effect.
260 Winvalid-offsetof
261 C++ ObjC++
262 Warn about invalid uses of the \"offsetof\" macro
264 Winvalid-pch
265 C ObjC C++ ObjC++
266 Warn about PCH files that are found but not used
268 Wlong-long
269 C ObjC C++ ObjC++
270 Do not warn about using \"long long\" when -pedantic
272 Wmain
273 C ObjC
274 Warn about suspicious declarations of \"main\"
276 Wmissing-braces
277 C ObjC C++ ObjC++
278 Warn about possibly missing braces around initializers
280 Wmissing-declarations
281 C ObjC
282 Warn about global functions without previous declarations
284 Wmissing-format-attribute
285 C ObjC C++ ObjC++
286 Warn about functions which might be candidates for format attributes
288 Wmissing-prototypes
289 C ObjC
290 Warn about global functions without prototypes
292 Wmultichar
293 C ObjC C++ ObjC++
294 Warn about use of multi-character character constants
296 Wnested-externs
297 C ObjC
298 Warn about \"extern\" declarations not at file scope
300 Wnon-template-friend
301 C++ ObjC++
302 Warn when non-templatized friend functions are declared within a template
304 Wnon-virtual-dtor
305 C++ ObjC++
306 Warn about non-virtual destructors
308 Wnonnull
309 C ObjC
311 Wold-style-cast
312 C++ ObjC++
313 Warn if a C-style cast is used in a program
315 Wold-style-definition
316 C ObjC
317 Warn if an old-style parameter definition is used
319 Woverloaded-virtual
320 C++ ObjC++
321 Warn about overloaded virtual function names
323 Wparentheses
324 C ObjC C++ ObjC++
325 Warn about possibly missing parentheses
327 Wpmf-conversions
328 C++ ObjC++
329 Warn when converting the type of pointers to member functions
331 Wpointer-arith
332 C ObjC C++ ObjC++
333 Warn about function pointer arithmetic
335 Wprotocol
336 ObjC ObjC++
337 Warn if inherited methods are unimplemented
339 Wredundant-decls
340 C ObjC C++ ObjC++
341 Warn about multiple declarations of the same object
343 Wreorder
344 C++ ObjC++
345 Warn when the compiler reorders code
347 Wreturn-type
348 C ObjC C++ ObjC++
349 Warn whenever a function's return type defaults to \"int\" (C), or about inconsistent return types (C++)
351 Wselector
352 ObjC ObjC++
353 Warn if a selector has multiple methods
355 Wsequence-point
356 C ObjC
357 Warn about possible violations of sequence point rules
359 Wsign-compare
360 C ObjC C++ ObjC++
361 Warn about signed-unsigned comparisons
363 Wsign-promo
364 C++ ObjC++
365 Warn when overload promotes from unsigned to signed
367 Wstrict-prototypes
368 C ObjC
369 Warn about unprototyped function declarations
371 Wsynth
372 C++ ObjC++
373 Warn when synthesis behavior differs from Cfront
375 Wsystem-headers
376 C ObjC C++ ObjC++
377 Do not suppress warnings from system headers
379 Wtraditional
380 C ObjC
381 Warn about features not present in traditional C
383 Wtrigraphs
384 C ObjC C++ ObjC++
385 Warn if trigraphs are encountered that might affect the meaning of the program
387 Wundeclared-selector
388 ObjC ObjC++
390 Wundef
391 C ObjC C++ ObjC++
392 Warn if an undefined macro is used in an #if directive
394 Wunknown-pragmas
395 C ObjC C++ ObjC++
396 Warn about unrecognized pragmas
398 Wunused-macros
399 C ObjC C++ ObjC++
400 Warn about macros defined in the main file that are not used
402 Wwrite-strings
403 C ObjC C++ ObjC++
404 Give strings the type \"array of char\"
406 ansi
407 C ObjC C++ ObjC++
408 A synonym for -std=c89 (for C) or -std=c++98 (for C++).
411 C ObjC C++ ObjC++ Joined
412 ; Documented in common.opt.  FIXME - what about -dI, -dD, -dN and -dD?
414 faccess-control
415 C++ ObjC++
416 Enforce class member access control semantics
418 fall-virtual
419 C++ ObjC++
421 falt-external-templates
422 C++ ObjC++
423 Change when template instances are emitted
425 fasm
426 C ObjC C++ ObjC++
427 Recognize the \"asm\" keyword
429 fbuiltin
430 C ObjC C++ ObjC++
431 Recognize built-in functions
433 fbuiltin-
434 C ObjC C++ ObjC++ Joined
436 fcheck-new
437 C++ ObjC++
438 Check the return value of new
440 fcond-mismatch
441 C ObjC C++ ObjC++
442 Allow the arguments of the '?' operator to have different types
444 fconserve-space
445 C++ ObjC++
446 Reduce the size of object files
448 fconst-strings
449 C++ ObjC++
450 Make string literals \"const char[]\" not \"char[]\"
452 fconstant-string-class=
453 ObjC ObjC++ Joined
454 -fconst-string-class=<name>     Use class <name> for constant strings
456 fdefault-inline
457 C++ ObjC++
458 Inline member functions by default
460 fdollars-in-identifiers
461 C ObjC C++ ObjC++
462 Permit '$' as an identifier character
464 fdump-
465 C ObjC C++ ObjC++ Joined RejectNegative
466 -fdump-<type>   Dump various compiler internals to a file
468 felide-constructors
469 C++ ObjC++
471 fenforce-eh-specs
472 C++ ObjC++
473 Generate code to check exception specifications
475 fenum-int-equiv
476 C++ ObjC++
478 fexec-charset=
479 C ObjC C++ ObjC++ Joined RejectNegative
480 -fexec-charset=<cset>   Convert all strings and character constants to character set <cset>
482 finput-charset=
483 C ObjC C++ ObjC++ Joined RejectNegative
484 -finput-charset=<cset>      Specify the default character set for source files.
487 fexternal-templates
488 C++ ObjC++
490 ffixed-form
491 C ObjC
493 ffixed-line-length-
494 C ObjC Joined
496 ffor-scope
497 C++ ObjC++
498 Scope of for-init-statement variables is local to the loop
500 ffreestanding
501 C ObjC
502 Do not assume that standard C libraries and \"main\" exist
504 fgnu-keywords
505 C++ ObjC++
506 Recognize GNU-defined keywords
508 fgnu-runtime
509 ObjC ObjC++
510 Generate code for GNU runtime environment
512 fguiding-decls
513 C++ ObjC++
515 fhandle-exceptions
516 C++ ObjC++
518 fhonor-std
519 C++ ObjC++
521 fhosted
522 C ObjC
523 Assume normal C execution environment
525 fhuge-objects
526 C++ ObjC++
527 Enable support for huge objects
529 fimplement-inlines
530 C++ ObjC++
531 Export functions even if they can be inlined
533 fimplicit-inline-templates
534 C++ ObjC++
535 Emit implicit instantiations of inline templates
537 fimplicit-templates
538 C++ ObjC++
539 Emit implicit instantiations of templates
541 flabels-ok
542 C++ ObjC++
544 fms-extensions
545 C ObjC C++ ObjC++
546 Don't warn about uses of Microsoft extensions
548 fname-mangling-version-
549 C++ ObjC++ Joined
551 fnew-abi
552 C++ ObjC++
554 fnext-runtime
555 ObjC ObjC++
556 Generate code for NeXT (Apple Mac OS X) runtime environment
558 fnil-receivers
559 ObjC ObjC++
560 Assume that receivers of Objective-C messages may be nil
562 fnonansi-builtins
563 C++ ObjC++
565 fnonnull-objects
566 C++ ObjC++
568 fobjc-exceptions
569 ObjC ObjC++
570 Enable Objective-C exception and synchronization syntax
572 foperator-names
573 C++ ObjC++
574 Recognize C++ kewords like \"compl\" and \"xor\"
576 foptional-diags
577 C++ ObjC++
578 Enable optional diagnostics
580 fpch-deps
581 C ObjC C++ ObjC++
583 fpermissive
584 C++ ObjC++
585 Downgrade conformance errors to warnings
587 fpreprocessed
588 C ObjC C++ ObjC++
589 Treat the input file as already preprocessed
591 freplace-objc-classes
592 ObjC ObjC++
593 Used in Fix-and-Continue mode to indicate that object files may be swapped in at runtime
595 frepo
596 C++ ObjC++
597 Enable automatic template instantiation
599 frtti
600 C++ ObjC++
601 Generate run time type descriptor information
603 fshort-double
604 C ObjC C++ ObjC++
605 Use the same size for double as for float
607 fshort-enums
608 C ObjC C++ ObjC++
609 Use the narrowest integer type possible for enumeration types
611 fshort-wchar
612 C ObjC C++ ObjC++
613 Force the underlying type for \"wchar_t\" to be \"unsigned short\"
615 fshow-column
616 C ObjC C++ ObjC++
618 fsigned-bitfields
619 C ObjC C++ ObjC++
620 When \"signed\" or \"unsigned\" is not given make the bitfield signed
622 fsigned-char
623 C ObjC C++ ObjC++
624 Make \"char\" signed by default
626 fsquangle
627 C++ ObjC++
629 fstats
630 C++ ObjC++
631 Display statistics accumulated during compilation
633 fstrict-prototype
634 C++ ObjC++
636 ftabstop=
637 C ObjC C++ ObjC++ Joined RejectNegative UInteger
638 -ftabstop=<number>      Distance between tab stops for column reporting
640 ftemplate-depth-
641 C++ ObjC++ Joined RejectNegative UInteger 
642 -ftemplate-depth-<number>       Specify maximum template instantiation depth
644 fthis-is-variable
645 C++ ObjC++
647 funsigned-bitfields
648 C ObjC C++ ObjC++
649 When \"signed\" or \"unsigned\" is not given make the bitfield unsigned
651 funsigned-char
652 C ObjC C++ ObjC++
653 Make \"char\" unsigned by default
655 fuse-cxa-atexit
656 C++ ObjC++
657 Use __cxa_atexit to register destructors
659 fvtable-gc
660 C++ ObjC++
661 Discard unused virtual functions
663 fvtable-thunks
664 C++ ObjC++
665 Implement vtables using thunks
667 fweak
668 C++ ObjC++
669 Emit common-like symbols as weak symbols
671 fwide-exec-charset=
672 C ObjC C++ ObjC++ Joined RejectNegative
673 -fwide-exec-charset=<cset>      Convert all wide strings and character constants to character set <cset>
675 fworking-directory
676 C ObjC C++ ObjC++
677 Generate a #line directive pointing at the current working directory
679 fxref
680 C++ ObjC++
681 Emit cross referencing information
683 fzero-link
684 ObjC ObjC++
685 Generate lazy class lookup (via objc_getClass()) for use in Zero-Link mode
687 gen-decls
688 ObjC ObjC++
689 Dump declarations to a .decl file
691 idirafter
692 C ObjC C++ ObjC++ Joined Separate
693 -idirafter <dir>        Add <dir> to the end of the system include path
695 imacros
696 C ObjC C++ ObjC++ Joined Separate
697 -imacros <file> Accept definition of macros in <file>
699 include
700 C ObjC C++ ObjC++ Joined Separate
701 -include <file> Include the contents of <file> before other files
703 iprefix
704 C ObjC C++ ObjC++ Joined Separate
705 -iprefix <path> Specify <path> as a prefix for next two options
707 isysroot
708 C ObjC C++ ObjC++ Joined Separate
709 -isysroot <dir> Set <dir> to be the system root directory
711 isystem
712 C ObjC C++ ObjC++ Joined Separate
713 -isystem <dir>  Add <dir> to the start of the system include path
715 iwithprefix
716 C ObjC C++ ObjC++ Joined Separate
717 -iwithprefix <dir>      Add <dir> to the end of the system include path
719 iwithprefixbefore
720 C ObjC C++ ObjC++ Joined Separate
721 -iwithprefixbefore <dir>        Add <dir> to the end of the main include path
723 lang-asm
724 C Undocumented
726 lang-objc
727 C ObjC C++ ObjC++ Undocumented
729 nostdinc
730 C ObjC C++ ObjC++
731 Do not search standard system include directories (those specified with -isystem will still be used)
733 nostdinc++
734 C++ ObjC++
735 Do not search standard system include directories for C++
738 C ObjC C++ ObjC++ Joined Separate
739 ; Documented in common.opt
741 pedantic
742 C ObjC C++ ObjC++
743 ; Documented in common.opt
745 pedantic-errors
746 C ObjC C++ ObjC++
747 ; Documented in common.opt
749 print-objc-runtime-info
750 ObjC ObjC++
751 Generate C header of platform-specific features
753 remap
754 C ObjC C++ ObjC++
755 Remap file names when including files
757 std=c++98
758 C++ ObjC++
759 Conform to the ISO 1998 C++ standard
761 std=c89
762 C ObjC
763 Conform to the ISO 1990 C standard
765 std=c99
766 C ObjC
767 Conform to the ISO 1999 C standard
769 std=c9x
770 C ObjC
771 Deprecated in favor of -std=c99
773 std=gnu++98
774 C++ ObjC++
775 Conform to the ISO 1998 C++ standard with GNU extensions
777 std=gnu89
778 C ObjC
779 Conform to the ISO 1990 C standard with GNU extensions
781 std=gnu99
782 C ObjC
783 Conform to the ISO 1999 C standard with GNU extensions
785 std=gnu9x
786 C ObjC
787 Deprecated in favor of -std=gnu99
789 std=iso9899:1990
790 C ObjC
791 Conform to the ISO 1990 C standard
793 std=iso9899:199409
794 C ObjC
795 Conform to the ISO 1990 C standard as amended in 1994
797 std=iso9899:1999
798 C ObjC
799 Conform to the ISO 1999 C standard
801 std=iso9899:199x
802 C ObjC
803 Deprecated in favor of -std=iso9899:1999
805 traditional-cpp
806 C ObjC C++ ObjC++
807 Enable traditional preprocessing
809 trigraphs
810 C ObjC C++ ObjC++
811 -trigraphs      Support ISO C trigraphs
813 undef
814 C ObjC C++ ObjC++
815 Do not predefine system-specific and GCC-specific macros
818 C ObjC C++ ObjC++
819 Enable verbose output
822 C ObjC C++ ObjC++
823 ; Documented in common.opt
825 ; This comment is to ensure we retain the blank line above.