summaryrefslogtreecommitdiff
path: root/gcc/c.opt
blob: 15c344b887e8355c8228c88d5d84978f5604057e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
; Options for the C, ObjC, C++ and ObjC++ front ends.
; Copyright (C) 2003 Free Software Foundation, Inc.
;
; 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.
; 
; 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.
; 
; 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
; Software Foundation, 59 Temple Place - Suite 330, Boston, MA
; 02111-1307, USA.


; This file is processed by the script opts.sh.  It is a database of
; command line options, with each record separated by a blank line,
; and each field appearing on its own line.  The first field is the
; command-line switch with the leading "-" removed.  All options
; beginning with "f" or "W" are implicitly assumed to take a "no-"
; form; this form should not be listed.  If you do not want this
; negative form and you want it to be automatically rejected, add
; RejectNegative to the second field.

; The second field is a space-separated list of which parts of the
; compiler recognize the switch, as declared by "Language" entries.
; If the switch takes an argument, then you should also specify
; "Joined" and/or "Separate" to indicate where the argument can
; appear.  If a Joined argument can legitimately be omitted, specify
; "JoinedOrMissing" instead of "Joined".  If the argument to a switch
; is a non-negative integer, you can specify "UInteger" and the switch
; decoder will convert the argument for you, or complain to the user
; if the argument is invalid.

; Comments can appear on their own line anwhere in the file, preceded
; by a semicolon.  Whitespace is permitted before the semicolon.

; For each switch XXX below, an enumeration constant is created by the
; script opts.sh spelt OPT_XXX, but with all non-alphanumeric
; characters replaced with an underscore.

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

Language
C

Language
ObjC

Language
C++

Language
ObjC++

-help
C ObjC C++ ObjC++

-output-pch=
C ObjC C++ ObjC++ Joined Separate

A
C ObjC C++ ObjC++ Joined Separate

C
C ObjC C++ ObjC++

CC
C ObjC C++ ObjC++

D
C ObjC C++ ObjC++ Joined Separate

E
C ObjC C++ ObjC++

H
C ObjC C++ ObjC++

I
C ObjC C++ ObjC++ Joined Separate

M
C ObjC C++ ObjC++

MD
C ObjC C++ ObjC++ Separate

MF
C ObjC C++ ObjC++ Joined Separate

MG
C ObjC C++ ObjC++

MM
C ObjC C++ ObjC++

MMD
C ObjC C++ ObjC++ Separate

MP
C ObjC C++ ObjC++

MQ
C ObjC C++ ObjC++ Joined Separate

MT
C ObjC C++ ObjC++ Joined Separate

P
C ObjC C++ ObjC++

U
C ObjC C++ ObjC++ Joined Separate

Wabi
C++ ObjC++

Wall
C ObjC C++ ObjC++

Wbad-function-cast
C ObjC

Wcast-qual
C ObjC C++ ObjC++

Wchar-subscripts
C ObjC C++ ObjC++

Wcomment
C ObjC C++ ObjC++

Wcomments
C ObjC C++ ObjC++

Wconversion
C ObjC C++ ObjC++

Wctor-dtor-privacy
C++ ObjC++

Wdeprecated
C++ ObjC++

Wdiv-by-zero
C ObjC

Weffc++
C++ ObjC++

Wendif-labels
C ObjC C++ ObjC++

Werror
C ObjC C++ ObjC++

Werror-implicit-function-declaration
C ObjC RejectNegative

Wfloat-equal
C ObjC C++ ObjC++

Wformat
C ObjC C++ ObjC++

Wformat-extra-args
C ObjC C++ ObjC++

Wformat-nonliteral
C ObjC C++ ObjC++

Wformat-security
C ObjC C++ ObjC++

Wformat-y2k
C ObjC C++ ObjC++

Wformat-zero-length
C ObjC

Wformat=
C ObjC C++ ObjC++ Joined

Wimplicit
C ObjC C++ ObjC++

Wimplicit-function-declaration
C ObjC

Wimplicit-int
C ObjC

Wimport
C ObjC C++ ObjC++

Winvalid-offsetof
C++ ObjC++

Winvalid-pch
C ObjC C++ ObjC++

Wlong-long
C ObjC C++ ObjC++

Wmain
C ObjC

Wmissing-braces
C ObjC C++ ObjC++

Wmissing-declarations
C ObjC

Wmissing-format-attribute
C ObjC C++ ObjC++

Wmissing-prototypes
C ObjC

Wmultichar
C ObjC C++ ObjC++

Wnested-externs
C ObjC

Wnon-template-friend
C++ ObjC++

Wnon-virtual-dtor
C++ ObjC++

Wnonnull
C ObjC

Wold-style-cast
C++ ObjC++

Woverloaded-virtual
C++ ObjC++

Wparentheses
C ObjC C++ ObjC++

Wpmf-conversions
C++ ObjC++

Wpointer-arith
C ObjC C++ ObjC++

Wprotocol
ObjC ObjC++

Wredundant-decls
C ObjC C++ ObjC++

Wreorder
C++ ObjC++

Wreturn-type
C ObjC C++ ObjC++

Wselector
ObjC ObjC++

Wsequence-point
C ObjC

Wsign-compare
C ObjC C++ ObjC++

Wsign-promo
C++ ObjC++

Wstrict-prototypes
C ObjC

Wsynth
C++ ObjC++

Wsystem-headers
C ObjC C++ ObjC++

Wtraditional
C ObjC

Wtrigraphs
C ObjC C++ ObjC++

Wundeclared-selector
ObjC ObjC++

Wundef
C ObjC C++ ObjC++

Wunknown-pragmas
C ObjC C++ ObjC++

Wunused-macros
C ObjC C++ ObjC++

Wwrite-strings
C ObjC C++ ObjC++

ansi
C ObjC C++ ObjC++

d
C ObjC C++ ObjC++ Joined

fabi-version=
C++ ObjC++ Joined UInteger

faccess-control
C++ ObjC++

fall-virtual
C++ ObjC++

falt-external-templates
C++ ObjC++

fasm
C ObjC C++ ObjC++

fbuiltin
C ObjC C++ ObjC++

fbuiltin-
C ObjC C++ ObjC++ Joined

fcheck-new
C++ ObjC++

fcond-mismatch
C ObjC C++ ObjC++

fconserve-space
C++ ObjC++

fconst-strings
C++ ObjC++

fconstant-string-class=
ObjC ObjC++ Joined

fdefault-inline
C++ ObjC++

fdollars-in-identifiers
C ObjC C++ ObjC++

fdump-
C ObjC C++ ObjC++ Joined RejectNegative

felide-constructors
C++ ObjC++

fenforce-eh-specs
C++ ObjC++

fenum-int-equiv
C++ ObjC++

fexternal-templates
C++ ObjC++

ffixed-form
C ObjC

ffixed-line-length-
C ObjC Joined

ffor-scope
C++ ObjC++

ffreestanding
C ObjC

fgnu-keywords
C++ ObjC++

fgnu-runtime
ObjC ObjC++

fguiding-decls
C++ ObjC++

fhandle-exceptions
C++ ObjC++

fhonor-std
C++ ObjC++

fhosted
C ObjC

fhuge-objects
C++ ObjC++

fimplement-inlines
C++ ObjC++

fimplicit-inline-templates
C++ ObjC++

fimplicit-templates
C++ ObjC++

flabels-ok
C++ ObjC++

fms-extensions
C ObjC C++ ObjC++

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

fnew-abi
C++ ObjC++

fnext-runtime
ObjC ObjC++

fnonansi-builtins
C++ ObjC++

fnonnull-objects
C++ ObjC++

foperator-names
C++ ObjC++

foptional-diags
C++ ObjC++

fpch-deps
C ObjC C++ ObjC++

fpermissive
C++ ObjC++

fpreprocessed
C ObjC C++ ObjC++

frepo
C++ ObjC++

frtti
C++ ObjC++

fshort-double
C ObjC C++ ObjC++

fshort-enums
C ObjC C++ ObjC++

fshort-wchar
C ObjC C++ ObjC++

fshow-column
C ObjC C++ ObjC++

fsigned-bitfields
C ObjC C++ ObjC++

fsigned-char
C ObjC C++ ObjC++

fsquangle
C++ ObjC++

fstats
C++ ObjC++

fstrict-prototype
C++ ObjC++

ftabstop=
C ObjC C++ ObjC++ Joined RejectNegative UInteger

ftemplate-depth-
C++ ObjC++ Joined RejectNegative UInteger 

fthis-is-variable
C++ ObjC++

funsigned-bitfields
C ObjC C++ ObjC++

funsigned-char
C ObjC C++ ObjC++

fuse-cxa-atexit
C++ ObjC++

fvtable-gc
C++ ObjC++

fvtable-thunks
C++ ObjC++

fweak
C++ ObjC++

fxref
C++ ObjC++

gen-decls
ObjC ObjC++

idirafter
C ObjC C++ ObjC++ Joined Separate

imacros
C ObjC C++ ObjC++ Joined Separate

include
C ObjC C++ ObjC++ Joined Separate

iprefix
C ObjC C++ ObjC++ Joined Separate

isysroot
C ObjC C++ ObjC++ Joined Separate

isystem
C ObjC C++ ObjC++ Joined Separate

iwithprefix
C ObjC C++ ObjC++ Joined Separate

iwithprefixbefore
C ObjC C++ ObjC++ Joined Separate

lang-asm
C

lang-objc
C ObjC C++ ObjC++

nostdinc
C ObjC C++ ObjC++

nostdinc++
C ObjC C++ ObjC++

o
C ObjC C++ ObjC++ Joined Separate

pedantic
C ObjC C++ ObjC++

pedantic-errors
C ObjC C++ ObjC++

print-objc-runtime-info
ObjC ObjC++

remap
C ObjC C++ ObjC++

std=c++98
C++ ObjC++

std=c89
C ObjC

std=c99
C ObjC

std=c9x
C ObjC

std=gnu++98
C++ ObjC++

std=gnu89
C ObjC

std=gnu99
C ObjC

std=gnu9x
C ObjC

std=iso9899:1990
C ObjC

std=iso9899:199409
C ObjC

std=iso9899:1999
C ObjC

std=iso9899:199x
C ObjC

traditional-cpp
C ObjC C++ ObjC++

trigraphs
C ObjC C++ ObjC++

undef
C ObjC C++ ObjC++

v
C ObjC C++ ObjC++

w
C ObjC C++ ObjC++

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