c.opt 23.1 KB
Newer Older
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 5 6 7 8 9
;
; This file is part of GCC.
;
; GCC is free software; you can redistribute it and/or modify it under
; the terms of the GNU General Public License as published by the Free
; Software Foundation; either version 2, or (at your option) any later
; version.
Mike Stump committed
10
;
11 12 13 14
; GCC is distributed in the hope that it will be useful, but WITHOUT ANY
; WARRANTY; without even the implied warranty of MERCHANTABILITY or
; FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
; for more details.
Mike Stump committed
15
;
16 17
; You should have received a copy of the GNU General Public License
; along with GCC; see the file COPYING.  If not, write to the Free
Kelley Cook committed
18 19
; Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
; 02110-1301, USA.
20

21
; See the GCC internals manual for a description of this file's format.
22 23 24

; Please try to keep this file in ASCII collating order.

25 26 27 28 29 30 31 32 33 34 35 36
Language
C

Language
ObjC

Language
C++

Language
ObjC++

37 38 39 40 41
-output-pch=
C ObjC C++ ObjC++ Joined Separate

A
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 45

C
C ObjC C++ ObjC++
46
Do not discard comments
47 48 49

CC
C ObjC C++ ObjC++
50
Do not discard comments in macro expansions
51 52 53

D
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 60
F
C ObjC C++ ObjC++ Joined Separate
61
-F <dir>	Add <dir> to the end of the main framework include path
62

63 64
H
C ObjC C++ ObjC++
65
Print the name of header files as they are used
66 67 68

I
C ObjC C++ ObjC++ Joined Separate
69
-I <dir>	Add <dir> to the end of the main include path
70 71 72

M
C ObjC C++ ObjC++
73
Generate make dependencies
74 75 76

MD
C ObjC C++ ObjC++ Separate
77
Generate make dependencies and compile
78 79 80

MF
C ObjC C++ ObjC++ Joined Separate
81
-MF <file>	Write dependency output to the given file
82 83 84

MG
C ObjC C++ ObjC++
85
Treat missing header files as generated files
86 87 88

MM
C ObjC C++ ObjC++
89
Like -M but ignore system header files
90 91 92

MMD
C ObjC C++ ObjC++ Separate
93
Like -MD but ignore system header files
94 95 96

MP
C ObjC C++ ObjC++
97
Generate phony targets for all headers
98 99 100

MQ
C ObjC C++ ObjC++ Joined Separate
101
-MQ <target>	Add a MAKE-quoted target
102 103 104

MT
C ObjC C++ ObjC++ Joined Separate
105
-MT <target>	Add an unquoted target
106 107 108

P
C ObjC C++ ObjC++
109
Do not generate #line directives
110 111 112

U
C ObjC C++ ObjC++ Joined Separate
113
-U<macro>	Undefine <macro>
114 115

Wabi
116
C++ ObjC++ Var(warn_abi) Warning
117
Warn about things that will change when compiling with an ABI-compliant compiler
118

119 120 121 122
Waddress
C ObjC C++ ObjC++ Var(warn_address) Warning
Warn about suspicious uses of memory addresses

123
Wall
124
C ObjC C++ ObjC++ Warning
125
Enable most warning messages
126

127 128 129 130
Wtype-limits
C ObjC C++ ObjC++ Var(warn_type_limits) Init(-1) Warning
Warn if a comparison is always true or always false due to the limited range of the data type

131
Wassign-intercept
132
ObjC ObjC++ Var(warn_assign_intercept) Warning
133 134
Warn whenever an Objective-C assignment is being intercepted by the garbage collector

135
Wbad-function-cast
136
C ObjC Var(warn_bad_function_cast) Warning
137
Warn about casting functions to incompatible types
138

139
Wc++-compat
140
C ObjC Var(warn_cxx_compat) Warning
141 142
Warn about C constructs that are not in the common subset of C and C++

143
Wc++0x-compat
144
C++ ObjC++ Var(warn_cxx0x_compat) Warning
145
Warn about C++ constructs whose meaning differs between ISO C++ 1998 and ISO C++ 200x
146

147
Wcast-qual
148
C ObjC C++ ObjC++ Var(warn_cast_qual) Warning
149
Warn about casts which discard qualifiers
150 151

Wchar-subscripts
152
C ObjC C++ ObjC++ Var(warn_char_subscripts) Warning
153
Warn about subscripts whose type is \"char\"
154

155
Wclobbered
156
C ObjC C++ ObjC++ Var(warn_clobbered) Init(-1) Warning
157 158
Warn about variables that might be changed by \"longjmp\" or \"vfork\"

159
Wcomment
160
C ObjC C++ ObjC++ Warning
161
Warn about possibly nested block comments, and C++ comments spanning more than one physical line
162 163

Wcomments
164
C ObjC C++ ObjC++ Warning
165
Synonym for -Wcomment
166 167

Wconversion
168
C ObjC C++ ObjC++ Var(warn_conversion) Warning
169
Warn for implicit type conversions that may change a value
170

171 172 173 174
Wsign-conversion
C ObjC C++ ObjC++ Var(warn_sign_conversion) Init(-1)
Warn for implicit type conversions between signed and unsigned integers

175
Wctor-dtor-privacy
176
C++ ObjC++ Var(warn_ctor_dtor_privacy) Warning
177
Warn when all constructors and destructors are private
178

179
Wdeclaration-after-statement
180
C ObjC Var(warn_declaration_after_statement) Warning
181 182
Warn when a declaration is found after a statement

183
Wdeprecated
184
C++ ObjC++ Var(warn_deprecated) Init(1) Warning
185
Warn about deprecated compiler features
186 187

Wdiv-by-zero
188
C ObjC C++ ObjC++ Var(warn_div_by_zero) Init(1) Warning
189
Warn about compile-time integer division by zero
190 191

Weffc++
192
C++ ObjC++ Var(warn_ecpp) Warning
193
Warn about violations of Effective C++ style rules
194

195
Wempty-body
196
C ObjC C++ ObjC++ Var(warn_empty_body) Init(-1) Warning
197 198
Warn about an empty body in an if or else statement

199
Wendif-labels
200
C ObjC C++ ObjC++ Warning
201
Warn about stray tokens after #elif and #endif
202 203 204

Werror
C ObjC C++ ObjC++
205
; Documented in common.opt
206 207

Werror-implicit-function-declaration
208
C ObjC RejectNegative Warning
209
This switch is deprecated; use -Werror=implicit-function-declaration instead
210 211

Wfloat-equal
212
C ObjC C++ ObjC++ Var(warn_float_equal) Warning
213
Warn if testing floating point numbers for equality
214 215

Wformat
216
C ObjC C++ ObjC++ Warning
217
Warn about printf/scanf/strftime/strfmon format string anomalies
218 219

Wformat-extra-args
220
C ObjC C++ ObjC++ Var(warn_format_extra_args) Warning
221
Warn if passing too many arguments to a function for its format string
222 223

Wformat-nonliteral
224
C ObjC C++ ObjC++ Var(warn_format_nonliteral) Warning
225
Warn about format strings that are not literals
226

227
Wformat-contains-nul
228
C ObjC C++ ObjC++ Var(warn_format_contains_nul) Warning
229 230
Warn about format strings that contain NUL bytes

231
Wformat-security
232
C ObjC C++ ObjC++ Var(warn_format_security) Warning
233
Warn about possible security problems with format functions
234 235

Wformat-y2k
236
C ObjC C++ ObjC++ Var(warn_format_y2k) Warning
237
Warn about strftime formats yielding 2-digit years
238 239

Wformat-zero-length
240
C ObjC Var(warn_format_zero_length) Warning
241
Warn about zero-length formats
242 243

Wformat=
244
C ObjC C++ ObjC++ Joined Warning
245

Andrew Pinski committed
246
Winit-self
247
C ObjC C++ ObjC++ Var(warn_init_self) Warning
248
Warn about variables which are initialized to themselves
Andrew Pinski committed
249

250
Wimplicit
251
C ObjC C++ ObjC++ Warning
252 253

Wimplicit-function-declaration
254
C ObjC Var(warn_implicit_function_declaration) Init(-1) Warning
255
Warn about implicit function declarations
256 257

Wimplicit-int
258
C ObjC Var(warn_implicit_int) Warning
259
Warn when a declaration does not specify a type
260 261 262

Wimport
C ObjC C++ ObjC++
263
Deprecated.  This switch has no effect
264

265
Wint-to-pointer-cast
266
C ObjC Var(warn_int_to_pointer_cast) Init(1) Warning
267 268
Warn when there is a cast to a pointer from an integer of a different size

269
Winvalid-offsetof
270
C++ ObjC++ Var(warn_invalid_offsetof) Init(1) Warning
271
Warn about invalid uses of the \"offsetof\" macro
272 273

Winvalid-pch
274
C ObjC C++ ObjC++ Warning
275
Warn about PCH files that are found but not used
276 277

Wlong-long
278
C ObjC C++ ObjC++ Var(warn_long_long) Init(1) Warning
279
Do not warn about using \"long long\" when -pedantic
280 281

Wmain
282
C ObjC C++ ObjC++ Warning
283
Warn about suspicious declarations of \"main\"
284 285

Wmissing-braces
286
C ObjC C++ ObjC++ Var(warn_missing_braces) Warning
287
Warn about possibly missing braces around initializers
288 289

Wmissing-declarations
290
C ObjC C++ ObjC++ Var(warn_missing_declarations) Warning
291
Warn about global functions without previous declarations
292

293
Wmissing-field-initializers
294
C ObjC C++ ObjC++ Var(warn_missing_field_initializers) Init(-1) Warning
295 296
Warn about missing fields in struct initializers

297
Wmissing-format-attribute
298
C ObjC C++ ObjC++ Var(warn_missing_format_attribute) Warning
299
Warn about functions which might be candidates for format attributes
300

301
Wmissing-include-dirs
302
C ObjC C++ ObjC++ Warning
303 304
Warn about user-specified include directories that do not exist

305
Wmissing-parameter-type
306
C ObjC Var(warn_missing_parameter_type) Init(-1) Warning
307 308
Warn about function parameters declared without a type specifier in K&R-style functions

309
Wmissing-prototypes
310
C ObjC Var(warn_missing_prototypes) Warning
311
Warn about global functions without prototypes
312 313

Wmultichar
314
C ObjC C++ ObjC++ Warning
315
Warn about use of multi-character character constants
316 317

Wnested-externs
318
C ObjC Var(warn_nested_externs) Warning
319
Warn about \"extern\" declarations not at file scope
320 321

Wnon-template-friend
322
C++ ObjC++ Var(warn_nontemplate_friend) Init(1) Warning
323
Warn when non-templatized friend functions are declared within a template
324 325

Wnon-virtual-dtor
326
C++ ObjC++ Var(warn_nonvdtor) Warning
327
Warn about non-virtual destructors
328 329

Wnonnull
330
C ObjC Var(warn_nonnull) Warning
331
Warn about NULL being passed to argument slots marked as requiring non-NULL
332

Geoffrey Keating committed
333
Wnormalized=
334
C ObjC C++ ObjC++ Joined Warning
Geoffrey Keating committed
335 336
-Wnormalized=<id|nfc|nfkc>	Warn about non-normalised Unicode strings

337
Wold-style-cast
338
C++ ObjC++ Var(warn_old_style_cast) Warning
339
Warn if a C-style cast is used in a program
340

341
Wold-style-declaration
342
C ObjC Var(warn_old_style_declaration) Init(-1) Warning
343 344
Warn for obsolescent usage in a declaration

345
Wold-style-definition
346
C ObjC Var(warn_old_style_definition) Warning
347 348
Warn if an old-style parameter definition is used

349
Woverlength-strings
350
C ObjC C++ ObjC++ Var(warn_overlength_strings) Init(-1) Warning
351 352
Warn if a string is longer than the maximum portable length specified by the standard

353
Woverloaded-virtual
354
C++ ObjC++ Var(warn_overloaded_virtual) Warning
355
Warn about overloaded virtual function names
356

357
Woverride-init
358
C ObjC Var(warn_override_init) Init(-1) Warning
359 360
Warn about overriding initializers without side effects

361
Wparentheses
362
C ObjC C++ ObjC++ Var(warn_parentheses) Warning
363
Warn about possibly missing parentheses
364 365

Wpmf-conversions
366
C++ ObjC++ Var(warn_pmf2ptr) Init(1) Warning
367
Warn when converting the type of pointers to member functions
368 369

Wpointer-arith
370
C ObjC C++ ObjC++ Var(warn_pointer_arith) Warning
371
Warn about function pointer arithmetic
372

373
Wpointer-to-int-cast
374
C ObjC Var(warn_pointer_to_int_cast) Init(1) Warning
375 376
Warn when a pointer is cast to an integer of a different size

377
Wpragmas
378
C ObjC C++ ObjC++ Var(warn_pragmas) Init(1) Warning
379 380
Warn about misuses of pragmas

381
Wprotocol
382
ObjC ObjC++ Var(warn_protocol) Init(1) Warning
383
Warn if inherited methods are unimplemented
384 385

Wredundant-decls
386
C ObjC C++ ObjC++ Var(warn_redundant_decls) Warning
387
Warn about multiple declarations of the same object
388 389

Wreorder
390
C++ ObjC++ Var(warn_reorder) Warning
391
Warn when the compiler reorders code
392 393

Wreturn-type
394
C ObjC C++ ObjC++ Var(warn_return_type) Warning
395
Warn whenever a function's return type defaults to \"int\" (C), or about inconsistent return types (C++)
396 397

Wselector
398
ObjC ObjC++ Var(warn_selector) Warning
399
Warn if a selector has multiple methods
400 401

Wsequence-point
402
C ObjC C++ ObjC++ Var(warn_sequence_point) Warning
403
Warn about possible violations of sequence point rules
404 405

Wsign-compare
406
C ObjC C++ ObjC++ Var(warn_sign_compare) Init(-1) Warning
407
Warn about signed-unsigned comparisons
408 409

Wsign-promo
410
C++ ObjC++ Var(warn_sign_promo) Warning
411
Warn when overload promotes from unsigned to signed
412

413
Wstrict-null-sentinel
414
C++ ObjC++ Warning
415 416
Warn about uncasted NULL used as sentinel

417
Wstrict-prototypes
418
C ObjC Var(warn_strict_prototypes) Warning
419
Warn about unprototyped function declarations
420

421
Wstrict-selector-match
422
ObjC ObjC++ Var(warn_strict_selector_match) Warning
423 424
Warn if type signatures of candidate methods do not match exactly

425
Wsynth
426
C++ ObjC++ Var(warn_synth) Warning
427
Warn when synthesis behavior differs from Cfront
428 429

Wsystem-headers
430
C ObjC C++ ObjC++ Warning
431
Do not suppress warnings from system headers
432 433

Wtraditional
434
C ObjC Var(warn_traditional) Warning
435
Warn about features not present in traditional C
436

437
Wtraditional-conversion
438
C ObjC Var(warn_traditional_conversion) Warning
439 440
Warn of prototypes causing type conversions different from what would happen in the absence of prototype

441
Wtrigraphs
442
C ObjC C++ ObjC++ Warning
443
Warn if trigraphs are encountered that might affect the meaning of the program
444 445

Wundeclared-selector
446
ObjC ObjC++ Var(warn_undeclared_selector) Warning
447
Warn about @selector()s without previously declared methods
448 449

Wundef
450
C ObjC C++ ObjC++ Warning
451
Warn if an undefined macro is used in an #if directive
452 453

Wunknown-pragmas
454
C ObjC C++ ObjC++ Warning
455
Warn about unrecognized pragmas
456 457

Wunused-macros
458
C ObjC C++ ObjC++ Warning
459
Warn about macros defined in the main file that are not used
460

461
Wvariadic-macros
462
C ObjC C++ ObjC++ Warning
463 464
Do not warn about using variadic macros when -pedantic

465 466 467 468
Wvla
C ObjC C++ ObjC++ Var(warn_vla) Init(-1) Warning
Warn if a variable length array is used

469
Wwrite-strings
470
C ObjC C++ ObjC++ Var(warn_write_strings) Warning
471
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.
472

Andreas Jaeger committed
473
Wpointer-sign
474
C ObjC Var(warn_pointer_sign) Init(-1) Warning
475
Warn when a pointer differs in signedness in an assignment
Andreas Jaeger committed
476

477 478
ansi
C ObjC C++ ObjC++
479
A synonym for -std=c89 (for C) or -std=c++98 (for C++)
480 481 482

d
C ObjC C++ ObjC++ Joined
483
; Documented in common.opt.  FIXME - what about -dI, -dD, -dN and -dD?
484 485 486

faccess-control
C++ ObjC++
487
Enforce class member access control semantics
488 489 490 491 492 493

fall-virtual
C++ ObjC++

falt-external-templates
C++ ObjC++
494
Change when template instances are emitted
495 496 497

fasm
C ObjC C++ ObjC++
498
Recognize the \"asm\" keyword
499 500 501

fbuiltin
C ObjC C++ ObjC++
502
Recognize built-in functions
503 504 505 506 507 508

fbuiltin-
C ObjC C++ ObjC++ Joined

fcheck-new
C++ ObjC++
509
Check the return value of new
510 511 512

fcond-mismatch
C ObjC C++ ObjC++
513
Allow the arguments of the '?' operator to have different types
514 515 516

fconserve-space
C++ ObjC++
517
Reduce the size of object files
518 519 520

fconstant-string-class=
ObjC ObjC++ Joined
521
-fconst-string-class=<name>	Use class <name> for constant strings
522 523 524

fdefault-inline
C++ ObjC++
525
Inline member functions by default
526 527 528

fdollars-in-identifiers
C ObjC C++ ObjC++
529
Permit '$' as an identifier character
530 531 532 533 534 535

felide-constructors
C++ ObjC++

fenforce-eh-specs
C++ ObjC++
536
Generate code to check exception specifications
537 538 539 540

fenum-int-equiv
C++ ObjC++

541 542
fexec-charset=
C ObjC C++ ObjC++ Joined RejectNegative
543
-fexec-charset=<cset>	Convert all strings and character constants to character set <cset>
544

545 546 547 548
fextended-identifiers
C ObjC C++ ObjC++
Permit universal character names (\\u and \\U) in identifiers

Eric Christopher committed
549 550
finput-charset=
C ObjC C++ ObjC++ Joined RejectNegative
551
-finput-charset=<cset>	Specify the default character set for source files
Eric Christopher committed
552 553


554 555 556 557 558
fexternal-templates
C++ ObjC++

ffor-scope
C++ ObjC++
559
Scope of for-init-statement variables is local to the loop
560 561

ffreestanding
562
C ObjC C++ ObjC++
563
Do not assume that standard C libraries and \"main\" exist
564 565 566

fgnu-keywords
C++ ObjC++
567
Recognize GNU-defined keywords
568 569 570

fgnu-runtime
ObjC ObjC++
571
Generate code for GNU runtime environment
572

573
fgnu89-inline
574
C ObjC Var(flag_gnu89_inline) Init(-1)
575 576
Use traditional GNU semantics for inline functions

577 578 579 580
fguiding-decls
C++ ObjC++

fhandle-exceptions
581
C++ ObjC++ Optimization
582 583 584 585 586 587

fhonor-std
C++ ObjC++

fhosted
C ObjC
588
Assume normal C execution environment
589 590 591

fhuge-objects
C++ ObjC++
592
Enable support for huge objects
593 594 595

fimplement-inlines
C++ ObjC++
596
Export functions even if they can be inlined
597 598 599

fimplicit-inline-templates
C++ ObjC++
600
Emit implicit instantiations of inline templates
601 602 603

fimplicit-templates
C++ ObjC++
604
Emit implicit instantiations of templates
605

606
ffriend-injection
607
C++ ObjC++ Var(flag_friend_injection)
608 609
Inject friend functions into enclosing namespace

610 611 612
flabels-ok
C++ ObjC++

613 614 615 616
flax-vector-conversions
C ObjC C++ ObjC++
Allow implicit conversions between vectors with differing numbers of subparts and/or differing element types.

617 618
fms-extensions
C ObjC C++ ObjC++
619
Don't warn about uses of Microsoft extensions
620 621 622 623 624 625 626 627 628

fname-mangling-version-
C++ ObjC++ Joined

fnew-abi
C++ ObjC++

fnext-runtime
ObjC ObjC++
629 630 631 632 633
Generate code for NeXT (Apple Mac OS X) runtime environment

fnil-receivers
ObjC ObjC++
Assume that receivers of Objective-C messages may be nil
634 635 636 637 638 639 640

fnonansi-builtins
C++ ObjC++

fnonnull-objects
C++ ObjC++

641 642 643 644 645 646 647 648 649 650 651 652
; Generate special '- .cxx_construct' and '- .cxx_destruct' methods
; to initialize any non-POD ivars in Objective-C++ classes.
fobjc-call-cxx-cdtors
ObjC++ Var(flag_objc_call_cxx_cdtors)
Generate special Objective-C methods to initialize/destroy non-POD C++ ivars, if needed

fobjc-direct-dispatch
ObjC ObjC++ Var(flag_objc_direct_dispatch)
Allow fast jumps to the message dispatcher

; Nonzero means that we will allow new ObjC exception syntax (@throw,
; @try, etc.) in source code.
653
fobjc-exceptions
654
ObjC ObjC++ Var(flag_objc_exceptions)
655 656
Enable Objective-C exception and synchronization syntax

657 658 659 660 661
fobjc-gc
ObjC ObjC++ Var(flag_objc_gc)
Enable garbage collection (GC) in Objective-C/Objective-C++ programs

; Nonzero means that we generate NeXT setjmp based exceptions.
662
fobjc-sjlj-exceptions
663
ObjC ObjC++ Var(flag_objc_sjlj_exceptions) Init(-1)
664 665
Enable Objective-C setjmp exception handling runtime

Diego Novillo committed
666 667 668 669
fopenmp
C ObjC C++ ObjC++ Var(flag_openmp)
Enable OpenMP

670 671
foperator-names
C++ ObjC++
672
Recognize C++ kewords like \"compl\" and \"xor\"
673 674 675

foptional-diags
C++ ObjC++
676
Enable optional diagnostics
677 678 679 680

fpch-deps
C ObjC C++ ObjC++

681 682 683 684
fpch-preprocess
C ObjC C++ ObjC++
Look for and use PCH files even when preprocessing

685 686
fpermissive
C++ ObjC++
687
Downgrade conformance errors to warnings
688 689 690

fpreprocessed
C ObjC C++ ObjC++
691
Treat the input file as already preprocessed
692

693 694 695 696
freplace-objc-classes
ObjC ObjC++
Used in Fix-and-Continue mode to indicate that object files may be swapped in at runtime

697 698
frepo
C++ ObjC++
699
Enable automatic template instantiation
700 701

frtti
702
C++ ObjC++ Optimization
703
Generate run time type descriptor information
704 705

fshort-double
706
C ObjC C++ ObjC++ Optimization
707
Use the same size for double as for float
708 709

fshort-enums
710
C ObjC C++ ObjC++ Optimization
711
Use the narrowest integer type possible for enumeration types
712 713

fshort-wchar
714
C ObjC C++ ObjC++ Optimization
715
Force the underlying type for \"wchar_t\" to be \"unsigned short\"
716 717 718

fsigned-bitfields
C ObjC C++ ObjC++
719
When \"signed\" or \"unsigned\" is not given make the bitfield signed
720 721 722

fsigned-char
C ObjC C++ ObjC++
723
Make \"char\" signed by default
724 725 726 727 728 729

fsquangle
C++ ObjC++

fstats
C++ ObjC++
730
Display statistics accumulated during compilation
731 732 733 734 735

fstrict-prototype
C++ ObjC++

ftabstop=
736
C ObjC C++ ObjC++ Joined RejectNegative UInteger
737
-ftabstop=<number>	Distance between tab stops for column reporting
738 739

ftemplate-depth-
Mike Stump committed
740
C++ ObjC++ Joined RejectNegative UInteger
741
-ftemplate-depth-<number>	Specify maximum template instantiation depth
742 743 744 745

fthis-is-variable
C++ ObjC++

746
fthreadsafe-statics
747
C++ ObjC++ Optimization
748
-fno-threadsafe-statics	Do not generate thread-safe code for initializing local statics
749

750 751
funsigned-bitfields
C ObjC C++ ObjC++
752
When \"signed\" or \"unsigned\" is not given make the bitfield unsigned
753 754 755

funsigned-char
C ObjC C++ ObjC++
756
Make \"char\" unsigned by default
757 758 759

fuse-cxa-atexit
C++ ObjC++
760
Use __cxa_atexit to register destructors
761

Geoffrey Keating committed
762 763 764 765
fuse-cxa-get-exception-ptr
C++ ObjC++
Use __cxa_get_exception_ptr in exception handling

766
fvisibility-inlines-hidden
767
C++ ObjC++
768 769
Marks all inlined methods as having hidden visibility

770 771
fvtable-gc
C++ ObjC++
772
Discard unused virtual functions
773 774 775

fvtable-thunks
C++ ObjC++
776
Implement vtables using thunks
777 778 779

fweak
C++ ObjC++
780
Emit common-like symbols as weak symbols
781

782 783
fwide-exec-charset=
C ObjC C++ ObjC++ Joined RejectNegative
784
-fwide-exec-charset=<cset>	Convert all wide strings and character constants to character set <cset>
785

786 787 788 789
fworking-directory
C ObjC C++ ObjC++
Generate a #line directive pointing at the current working directory

790 791
fxref
C++ ObjC++
792
Emit cross referencing information
793

794 795 796 797
fzero-link
ObjC ObjC++
Generate lazy class lookup (via objc_getClass()) for use in Zero-Link mode

798 799
gen-decls
ObjC ObjC++
800
Dump declarations to a .decl file
801

802 803 804 805 806 807 808 809 810 811 812 813
femit-struct-debug-baseonly
C ObjC C++ ObjC++
-femit-struct-debug-baseonly	Aggressive reduced debug info for structs

femit-struct-debug-reduced
C ObjC C++ ObjC++
-femit-struct-debug-reduced	Conservative reduced debug info for structs

femit-struct-debug-detailed=
C ObjC C++ ObjC++ Joined
-femit-struct-debug-detailed=<spec-list>	Detailed reduced debug info for structs

814 815
idirafter
C ObjC C++ ObjC++ Joined Separate
816
-idirafter <dir>	Add <dir> to the end of the system include path
817 818 819

imacros
C ObjC C++ ObjC++ Joined Separate
820
-imacros <file>	Accept definition of macros in <file>
821

822 823 824 825
imultilib
C ObjC C++ ObjC++ Joined Separate
-imultilib <dir> Set <dir> to be the multilib include subdirectory

826 827
include
C ObjC C++ ObjC++ Joined Separate
828
-include <file>	Include the contents of <file> before other files
829 830 831

iprefix
C ObjC C++ ObjC++ Joined Separate
832
-iprefix <path>	Specify <path> as a prefix for next two options
833 834 835

isysroot
C ObjC C++ ObjC++ Joined Separate
836
-isysroot <dir>	Set <dir> to be the system root directory
837 838 839

isystem
C ObjC C++ ObjC++ Joined Separate
840
-isystem <dir>	Add <dir> to the start of the system include path
841

842 843 844 845
iquote
C ObjC C++ ObjC++ Joined Separate
-iquote <dir>	Add <dir> to the end of the quote include path

846 847
iwithprefix
C ObjC C++ ObjC++ Joined Separate
848
-iwithprefix <dir>	Add <dir> to the end of the system include path
849 850 851

iwithprefixbefore
C ObjC C++ ObjC++ Joined Separate
852
-iwithprefixbefore <dir>	Add <dir> to the end of the main include path
853 854

lang-asm
855
C Undocumented
856

857 858 859
lang-fortran
C Undocumented

860
lang-objc
861
C ObjC C++ ObjC++ Undocumented
862 863 864

nostdinc
C ObjC C++ ObjC++
865
Do not search standard system include directories (those specified with -isystem will still be used)
866 867

nostdinc++
868 869
C++ ObjC++
Do not search standard system include directories for C++
870 871 872

o
C ObjC C++ ObjC++ Joined Separate
873
; Documented in common.opt
874 875 876

pedantic
C ObjC C++ ObjC++
877
; Documented in common.opt
878 879 880

pedantic-errors
C ObjC C++ ObjC++
881
; Documented in common.opt
882 883 884

print-objc-runtime-info
ObjC ObjC++
885
Generate C header of platform-specific features
886

887 888
print-pch-checksum
C ObjC C++ ObjC++
889
Print a checksum of the executable for PCH validity checking, and stop
890

891 892
remap
C ObjC C++ ObjC++
893
Remap file names when including files
894 895 896

std=c++98
C++ ObjC++
897
Conform to the ISO 1998 C++ standard
898

899 900 901 902 903 904 905
std=c++0x
C++ ObjC++
Conform to the ISO 1998 C++ standard, with extensions that are likely to
become a part of the upcoming ISO C++ standard, dubbed C++0x. Note that the
extensions enabled by this mode are experimental and may be removed in
future releases of GCC.

906 907
std=c89
C ObjC
908
Conform to the ISO 1990 C standard
909 910 911

std=c99
C ObjC
912
Conform to the ISO 1999 C standard
913 914 915

std=c9x
C ObjC
916
Deprecated in favor of -std=c99
917 918 919

std=gnu++98
C++ ObjC++
920
Conform to the ISO 1998 C++ standard with GNU extensions
921

922 923 924 925 926 927 928
std=gnu++0x
C++ ObjC++
Conform to the ISO 1998 C++ standard, with GNU extensions and
extensions that are likely to become a part of the upcoming ISO C++
standard, dubbed C++0x. Note that the extensions enabled by this mode
are experimental and may be removed in future releases of GCC.

929 930
std=gnu89
C ObjC
931
Conform to the ISO 1990 C standard with GNU extensions
932 933 934

std=gnu99
C ObjC
935
Conform to the ISO 1999 C standard with GNU extensions
936 937 938

std=gnu9x
C ObjC
939
Deprecated in favor of -std=gnu99
940 941 942

std=iso9899:1990
C ObjC
943
Conform to the ISO 1990 C standard
944 945 946

std=iso9899:199409
C ObjC
947
Conform to the ISO 1990 C standard as amended in 1994
948 949 950

std=iso9899:1999
C ObjC
951
Conform to the ISO 1999 C standard
952 953 954

std=iso9899:199x
C ObjC
955
Deprecated in favor of -std=iso9899:1999
956 957 958

traditional-cpp
C ObjC C++ ObjC++
959
Enable traditional preprocessing
960 961 962

trigraphs
C ObjC C++ ObjC++
963
-trigraphs	Support ISO C trigraphs
964 965 966

undef
C ObjC C++ ObjC++
967
Do not predefine system-specific and GCC-specific macros
968 969 970

v
C ObjC C++ ObjC++
971
Enable verbose output
972 973 974

w
C ObjC C++ ObjC++
975
; Documented in common.opt
976 977

; This comment is to ensure we retain the blank line above.