Daily bump.
[official-gcc.git] / gcc / common.opt
blob755e1a233b7ac51f071e3648bc0761deef877f06
1 ; Options for the language- and target-independent parts of the compiler.
3 ; Copyright (C) 2003-2021 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 (options.texi) for a description of this file's format.
23 ; Please try to keep this file in ASCII collating order.
25 Variable
26 int target_flags
28 Variable
29 int optimize
31 Variable
32 int optimize_size
34 Variable
35 int optimize_debug
37 ; Not used directly to control optimizations, only to save -Ofast
38 ; setting for "optimize" attributes.
39 Variable
40 int optimize_fast
42 ; True if this is the lto front end.  This is used to disable gimple
43 ; generation and lowering passes that are normally run on the output
44 ; of a front end.  These passes must be bypassed for lto since they
45 ; have already been done before the gimple was written.
46 Variable
47 bool in_lto_p = false
49 ; This variable is set to non-0 only by LTO front-end.  1 indicates that
50 ; the output produced will be used for incremental linking (thus weak symbols
51 ; can still be bound) and 2 indicates that the IL is going to be linked and
52 ; and output to LTO object file.
53 Variable
54 enum incremental_link flag_incremental_link = INCREMENTAL_LINK_NONE
56 ; 0 means straightforward implementation of complex divide acceptable.
57 ; 1 means wide ranges of inputs must work for complex divide.
58 ; 2 means C99-like requirements for complex multiply and divide.
59 Variable
60 int flag_complex_method = 1
62 Variable
63 int flag_default_complex_method = 1
65 ; Language specific warning pass for unused results.
66 Variable
67 bool flag_warn_unused_result = false
69 ; Nonzero if we should write GIMPLE bytecode for link-time optimization.
70 Variable
71 int flag_generate_lto
73 ; Nonzero if we should write GIMPLE bytecode for offload compilation.
74 Variable
75 int flag_generate_offload = 0
77 ; Nonzero means we should be saving declaration info into a .X file.
78 Variable
79 int flag_gen_aux_info = 0
81 ; Nonzero if we are compiling code for a shared library, zero for
82 ; executable.
83 Variable
84 int flag_shlib
86 ; These three are really VEC(char_p,heap) *.
88 Variable
89 void *flag_instrument_functions_exclude_functions
91 Variable
92 void *flag_instrument_functions_exclude_files
94 Variable
95 void *flag_ignored_attributes
97 ; Generic structs (e.g. templates not explicitly specialized)
98 ; may not have a compilation unit associated with them, and so
99 ; may need to be treated differently from ordinary structs.
101 ; Structs only handled by reference (indirectly), will also usually
102 ; not need as much debugging information.
104 Variable
105 enum debug_struct_file debug_struct_ordinary[DINFO_USAGE_NUM_ENUMS] = { DINFO_STRUCT_FILE_ANY, DINFO_STRUCT_FILE_ANY, DINFO_STRUCT_FILE_ANY }
107 Variable
108 enum debug_struct_file debug_struct_generic[DINFO_USAGE_NUM_ENUMS] = { DINFO_STRUCT_FILE_ANY, DINFO_STRUCT_FILE_ANY, DINFO_STRUCT_FILE_ANY }
110 ; True if we should exit after parsing options.
111 Variable
112 bool exit_after_options
114 ; Type(s) of debugging information we are producing (if any).  See
115 ; flag-types.h for the definitions of the different possible types of
116 ; debugging information.
117 Variable
118 uint32_t write_symbols = NO_DEBUG
120 ; Level of debugging information we are producing.  See flag-types.h
121 ; for the definitions of the different possible levels.
122 Variable
123 enum debug_info_levels debug_info_level = DINFO_LEVEL_NONE
125 ; Nonzero means use GNU-only extensions in the generated symbolic
126 ; debugging information.  Currently, this only has an effect when
127 ; write_symbols is set to DBX_DEBUG or XCOFF_DEBUG.
128 Variable
129 bool use_gnu_debug_info_extensions
131 ; Level of CTF debugging information we are producing.  See flag-types.h
132 ; for the definitions of the different possible levels.
133 Variable
134 enum ctf_debug_info_levels ctf_debug_info_level = CTFINFO_LEVEL_NONE
136 ; Original value of maximum field alignment in bytes, specified via
137 ; -fpack-struct=<value>.
138 Variable
139 unsigned int initial_max_fld_align = TARGET_DEFAULT_PACK_STRUCT
141 ; Type of stack check.
142 Variable
143 enum stack_check_type flag_stack_check = NO_STACK_CHECK
145 ; True if stack usage information needs to be computed.
146 Variable
147 bool flag_stack_usage_info = false
149 ; -dA causes debug commentary information to be produced in
150 ; the generated assembly code (to make it more readable).  This option
151 ; is generally only of use to those who actually need to read the
152 ; generated assembly code (perhaps while debugging the compiler itself).
153 ; Currently, this switch is only used by dwarf2out.c; however, it is intended
154 ; to be a catchall for printing debug information in the assembler file.
155 Variable
156 int flag_debug_asm
158 ; Balance between GNAT encodings and standard DWARF to emit.
159 Variable
160 enum dwarf_gnat_encodings gnat_encodings = DWARF_GNAT_ENCODINGS_DEFAULT
162 ; -dP causes the rtl to be emitted as a comment in assembly.
163 Variable
164 int flag_dump_rtl_in_asm
166 ; Whether -da was passed (used only in handle_common_deferred_options).
167 Variable
168 bool flag_dump_all_passed
170 ; Other flags saying which kinds of debugging dump have been requested.
172 Variable
173 int rtl_dump_and_exit
175 Variable
176 int flag_print_asm_name
178 ; Name of top-level original source file (what was input to cpp).
179 ; This comes from the #-command at the beginning of the actual input.
180 ; If there isn't any there, then this is the cc1 input file name.
181 Variable
182 const char *main_input_filename
184 ; Pointer to base name in main_input_filename, with directories and a
185 ; single final extension removed, and the length of this base
186 ; name.
188 Variable
189 const char *main_input_basename
191 Variable
192 int main_input_baselength
194 ; The base name used for auxiliary output files.
195 ; dump_base_name minus dump_base_ext.
197 Variable
198 const char *aux_base_name
200 ; Which options have been printed by --help.
201 Variable
202 char *help_printed
204 ; Which enums have been printed by --help.  0 = not printed, no
205 ; relevant options seen, 1 = relevant option seen, not yet printed, 2
206 ; = printed.
207 Variable
208 char *help_enum_printed
210 ; The number of columns for --help output.
211 Variable
212 unsigned int help_columns
214 ; Whether this options structure has been through finish_options
215 Variable
216 bool flag_opts_finished
218 ; What the sanitizer should instrument
219 Variable
220 unsigned int flag_sanitize
222 ; What sanitizers should recover from errors
223 Variable
224 unsigned int flag_sanitize_recover = (SANITIZE_UNDEFINED | SANITIZE_UNDEFINED_NONDEFAULT | SANITIZE_KERNEL_ADDRESS | SANITIZE_KERNEL_HWADDRESS) & ~(SANITIZE_UNREACHABLE | SANITIZE_RETURN)
226 ; What the coverage sanitizers should instrument
227 Variable
228 unsigned int flag_sanitize_coverage
230 ; Flag whether a prefix has been added to dump_base_name
231 Variable
232 bool dump_base_name_prefixed = false
234 ; What subset of registers should be zeroed on function return
235 Variable
236 unsigned int flag_zero_call_used_regs
239 Driver
241 -assemble
242 Driver Alias(S)
244 -compile
245 Driver Alias(c)
247 -completion=
248 Common Driver Joined Undocumented
249 Provide bash completion for options starting with provided string.
251 -coverage
252 Driver Alias(coverage)
254 -debug
255 Common Alias(g)
257 -dump
258 Common Separate Alias(d)
260 -dump=
261 Common Joined Alias(d)
263 -dumpbase
264 Driver Common Separate Alias(dumpbase)
266 -dumpbase-ext
267 Driver Common Separate Alias(dumpbase-ext)
269 -dumpdir
270 Driver Common Separate Alias(dumpdir)
272 -entry
273 Driver Separate Alias(e)
275 -entry=
276 Driver Joined Alias(e)
278 -extra-warnings
279 Common Warning Alias(Wextra)
281 -for-assembler
282 Driver Separate Alias(Xassembler)
284 -for-assembler=
285 Driver JoinedOrMissing Alias(Xassembler)
287 -for-linker
288 Driver Separate Alias(Xlinker)
290 -for-linker=
291 Driver JoinedOrMissing Alias(Xlinker)
293 -force-link
294 Driver Separate Alias(u)
296 -force-link=
297 Driver Joined Alias(u)
299 -help
300 Common Driver Var(help_flag)
301 Display this information.
303 -help=
304 Common Driver Joined
305 --help=<class>  Display descriptions of a specific class of options.  <class> is one or more of optimizers, target, warnings, undocumented, params.
307 -language
308 Driver Separate Alias(x)
310 -language=
311 Driver Joined Alias(x)
313 -library-directory
314 Driver Separate Alias(L)
316 -library-directory=
317 Driver Joined Alias(L)
319 -no-canonical-prefixes
320 Driver Alias(no-canonical-prefixes)
322 -no-standard-libraries
323 Driver Alias(nostdlib)
325 -no-sysroot-suffix
326 Driver Var(no_sysroot_suffix)
328 -no-warnings
329 Common Alias(w)
331 -optimize
332 Common Alias(O)
334 -output
335 Common Driver Separate Alias(o) MissingArgError(missing filename after %qs)
337 -output=
338 Common Driver Joined Alias(o) MissingArgError(missing filename after %qs)
340 -pass-exit-codes
341 Driver Alias(pass-exit-codes)
343 -pedantic
344 Common Alias(Wpedantic)
346 -pedantic-errors
347 Common Alias(pedantic-errors)
349 -pie
350 Driver Alias(pie)
352 -static-pie
353 Driver Alias(static-pie)
355 -pipe
356 Driver Alias(pipe)
358 -prefix
359 Driver Separate Alias(B)
361 -prefix=
362 Driver JoinedOrMissing Alias(B)
364 -preprocess
365 Driver Alias(E)
367 -print-file-name
368 Driver Separate Alias(print-file-name=)
370 -print-file-name=
371 Driver JoinedOrMissing Alias(print-file-name=)
373 -print-libgcc-file-name
374 Driver Alias(print-libgcc-file-name)
376 -print-multi-directory
377 Driver Alias(print-multi-directory)
379 -print-multi-lib
380 Driver Alias(print-multi-lib)
382 -print-multi-os-directory
383 Driver Alias(print-multi-os-directory)
385 -print-multiarch
386 Driver Alias(print-multiarch)
388 -print-prog-name
389 Driver Separate Alias(print-prog-name=)
391 -print-prog-name=
392 Driver JoinedOrMissing Alias(print-prog-name=)
394 -print-search-dirs
395 Driver Alias(print-search-dirs)
397 -print-sysroot
398 Driver Alias(print-sysroot)
400 -print-sysroot-headers-suffix
401 Driver Alias(print-sysroot-headers-suffix)
403 -profile
404 Common Alias(p)
406 -save-temps
407 Driver Alias(save-temps)
409 -shared
410 Driver Alias(shared)
412 -specs
413 Driver Separate Alias(specs=)
415 -specs=
416 Driver Joined Alias(specs=)
418 -static
419 Driver Alias(static)
421 -symbolic
422 Driver Alias(symbolic)
424 -target-help
425 Common Driver
426 Alias for --help=target.
428 -time
429 Driver Alias(time)
431 -verbose
432 Driver Alias(v)
434 ;; The driver used to convert options such as --help into forms such
435 ;; as -fhelp; the following four entries are for compatibility with
436 ;; any direct uses of those (undocumented) -f forms
437 fhelp
438 Common Driver Alias(-help)
440 fhelp=
441 Common Driver Joined Alias(-help=)
443 ftarget-help
444 Common Driver Alias(-target-help)
446 fversion
447 Common Driver Alias(-version)
449 -sysroot
450 Driver Separate Alias(-sysroot=)
452 -sysroot=
453 Driver JoinedOrMissing
455 -version
456 Common Driver
459 Driver Joined Separate
462 Driver
465 Driver Joined Separate
468 Driver
471 Common JoinedOrMissing Optimization
472 -O<number>      Set optimization level to <number>.
475 Common Optimization
476 Optimize for space rather than speed.
478 Ofast
479 Common Optimization
480 Optimize for speed disregarding exact standards compliance.
483 Common Optimization
484 Optimize for debugging experience rather than speed or size.
487 Driver
490 Driver Negative(Qy)
493 Driver Negative(Qn)
496 Driver Joined Separate
499 Driver
502 Driver Joined Separate
504 Tbss
505 Driver Separate
507 Tbss=
508 Driver Joined
510 Tdata
511 Driver Separate
513 Tdata=
514 Driver Joined
516 Ttext
517 Driver Separate
519 Ttext=
520 Driver Joined
523 Common RejectNegative Warning Alias(Wextra)
524 This switch is deprecated; use -Wextra instead.
527 Driver JoinedOrMissing RejectNegative
530 Driver JoinedOrMissing RejectNegative
533 Driver JoinedOrMissing RejectNegative
535 Waggregate-return
536 Common Var(warn_aggregate_return) Warning
537 Warn about returning structures, unions or arrays.
539 Waggressive-loop-optimizations
540 Common Var(warn_aggressive_loop_optimizations) Init(1) Warning
541 Warn if a loop with constant number of iterations triggers undefined behavior.
543 Warray-bounds
544 Common Var(warn_array_bounds) Warning
545 Warn if an array is accessed out of bounds.
547 Warray-bounds=
548 Common Joined RejectNegative UInteger Var(warn_array_bounds) Warning IntegerRange(0, 2)
549 Warn if an array is accessed out of bounds.
551 Wattributes
552 Common Var(warn_attributes) Init(1) Warning
553 Warn about inappropriate attribute usage.
555 Wattributes=
556 Common Joined
557 Do not warn about specified attributes.
559 Wattribute-alias
560 Common Alias(Wattribute_alias=, 1, 0) Warning
561 Warn about type safety and similar errors and mismatches in declarations with alias attributes.
563 Wattribute-alias=
564 Common Joined RejectNegative UInteger Var(warn_attribute_alias) Init(1) Warning IntegerRange(0, 2)
565 Warn about type safety and similar errors and mismatches in declarations with alias attributes.
567 Wcannot-profile
568 Common Var(warn_cannot_profile) Init(1) Warning
569 Warn when profiling instrumentation was requested, but could not be applied to
570 a certain function.
572 Wcast-align
573 Common Var(warn_cast_align) Warning
574 Warn about pointer casts which increase alignment.
576 Wcast-align=strict
577 Common Var(warn_cast_align,2) Warning
578 Warn about pointer casts which increase alignment.
580 Wcpp
581 Common Var(warn_cpp) Init(1) Warning
582 Warn when a #warning directive is encountered.
584 Wattribute-warning
585 Common Var(warn_attribute_warning) Init(1) Warning
586 Warn about uses of __attribute__((warning)) declarations.
588 Wdeprecated
589 Common Var(warn_deprecated) Init(1) Warning
590 Warn if a deprecated compiler feature, class, method, or field is used.
592 Wdeprecated-declarations
593 Common Var(warn_deprecated_decl) Init(1) Warning
594 Warn about uses of __attribute__((deprecated)) declarations.
596 Wdisabled-optimization
597 Common Var(warn_disabled_optimization) Warning
598 Warn when an optimization pass is disabled.
600 Werror
601 Common Var(warnings_are_errors)
602 Treat all warnings as errors.
604 Werror=
605 Common Joined
606 Treat specified warning as error.
608 Wextra
609 Common Var(extra_warnings) Warning
610 Print extra (possibly unwanted) warnings.
612 Wfatal-errors
613 Common Var(flag_fatal_errors)
614 Exit on the first error occurred.
616 Wframe-larger-than=
617 Common RejectNegative Joined Host_Wide_Int ByteSize Warning Var(warn_frame_larger_than_size) Init(HOST_WIDE_INT_MAX)
618 -Wframe-larger-than=<byte-size> Warn if a function's stack frame requires in excess of <byte-size>.
620 Wno-frame-larger-than
621 Common Alias(Wframe-larger-than=,18446744073709551615EiB,none) Warning
622 Disable -Wframe-larger-than= warning.  Equivalent to -Wframe-larger-than=<SIZE_MAX> or larger.
624 Wfree-nonheap-object
625 Common Var(warn_free_nonheap_object) Init(1) Warning
626 Warn when attempting to free a non-heap object.
628 Whsa
629 Common Ignore Warning
630 Does nothing.  Preserved for backward compatibility.
632 Wimplicit-fallthrough
633 Common Alias(Wimplicit-fallthrough=,3,0) Warning
635 Wimplicit-fallthrough=
636 Common Var(warn_implicit_fallthrough) RejectNegative Joined UInteger Warning IntegerRange(0, 5)
637 Warn when a switch case falls through.
639 Winfinite-recursion
640 Var(warn_infinite_recursion) Warning
641 Warn for infinitely recursive calls.
643 Winline
644 Common Var(warn_inline) Warning Optimization
645 Warn when an inlined function cannot be inlined.
647 Winvalid-memory-model
648 Common Var(warn_invalid_memory_model) Init(1) Warning
649 Warn when an atomic memory model parameter is known to be outside the valid range.
651 Wlarger-than-
652 Common RejectNegative Joined Warning Undocumented Alias(Wlarger-than=)
654 Wlarger-than=
655 Common RejectNegative Joined Host_Wide_Int ByteSize Warning Var(warn_larger_than_size) Init(HOST_WIDE_INT_MAX)
656 -Wlarger-than=<byte-size>       Warn if an object's size exceeds <byte-size>.
658 Wno-larger-than
659 Common Alias(Wlarger-than=,18446744073709551615EiB,none) Warning
660 Disable -Wlarger-than= warning.  Equivalent to -Wlarger-than=<SIZE_MAX> or larger.
662 Wnonnull-compare
663 Var(warn_nonnull_compare) Warning
664 Warn if comparing pointer parameter with nonnull attribute with NULL.
666 Wnull-dereference
667 Common Var(warn_null_dereference) Warning
668 Warn if dereferencing a NULL pointer may lead to erroneous or undefined behavior.
670 Wunsafe-loop-optimizations
671 Common Ignore Warning
672 Does nothing. Preserved for backward compatibility.
674 Wmissing-noreturn
675 Common Warning Alias(Wsuggest-attribute=noreturn)
677 Wodr
678 Common Var(warn_odr_violations) Init(1) Warning
679 Warn about some C++ One Definition Rule violations during link time optimization.
681 Woverflow
682 Common Var(warn_overflow) Init(1) Warning
683 Warn about overflow in arithmetic expressions.
685 Wlto-type-mismatch
686 Common Var(warn_lto_type_mismatch) Init(1) Warning
687 During link time optimization warn about mismatched types of global declarations.
689 Wpacked
690 Common Var(warn_packed) Warning
691 Warn when the packed attribute has no effect on struct layout.
693 Wpadded
694 Common Var(warn_padded) Warning
695 Warn when padding is required to align structure members.
697 Wpedantic
698 Common Var(pedantic) Init(0) Warning
699 Issue warnings needed for strict compliance to the standard.
701 Wreturn-local-addr
702 Common Var(warn_return_local_addr) Init(1) Warning
703 Warn about returning a pointer/reference to a local or temporary variable.
705 Wshadow
706 Common Var(warn_shadow) Warning
707 Warn when one variable shadows another.  Same as -Wshadow=global.
709 Wshadow=global
710 Common Warning Alias(Wshadow)
711 Warn when one variable shadows another (globally).
713 Wshadow=local
714 Common Var(warn_shadow_local) Warning EnabledBy(Wshadow)
715 Warn when one local variable shadows another local variable or parameter.
717 Wshadow-local
718 Common Warning Undocumented Alias(Wshadow=local)
720 Wshadow=compatible-local
721 Common Var(warn_shadow_compatible_local) Warning EnabledBy(Wshadow=local)
722 Warn when one local variable shadows another local variable or parameter of compatible type.
724 Wshadow-compatible-local
725 Common Warning Undocumented Alias(Wshadow=compatible-local)
727 Wstack-protector
728 Common Var(warn_stack_protect) Warning
729 Warn when not issuing stack smashing protection for some reason.
731 Wstack-usage=
732 Common Joined RejectNegative Host_Wide_Int ByteSize Var(warn_stack_usage) Warning Init(HOST_WIDE_INT_MAX)
733 -Wstack-usage=<byte-size>       Warn if stack usage might exceed <byte-size>.
735 Wno-stack-usage
736 Common Alias(Wstack-usage=,18446744073709551615EiB,none) Warning
737 Disable Wstack-usage= warning.  Equivalent to Wstack-usage=<SIZE_MAX> or larger.
739 Wstrict-aliasing
740 Common Warning
741 Warn about code which might break strict aliasing rules.
743 Wstrict-aliasing=
744 Common Joined RejectNegative UInteger Var(warn_strict_aliasing) Warning
745 Warn about code which might break strict aliasing rules.
747 Wstrict-overflow
748 Common Warning
749 Warn about optimizations that assume that signed overflow is undefined.
751 Wstrict-overflow=
752 Common Joined RejectNegative UInteger Var(warn_strict_overflow) Warning
753 Warn about optimizations that assume that signed overflow is undefined.
755 Wsuggest-attribute=cold
756 Common Var(warn_suggest_attribute_cold) Warning
757 Warn about functions which might be candidates for __attribute__((cold)).
759 Wsuggest-attribute=const
760 Common Var(warn_suggest_attribute_const) Warning
761 Warn about functions which might be candidates for __attribute__((const)).
763 Wsuggest-attribute=pure
764 Common Var(warn_suggest_attribute_pure) Warning
765 Warn about functions which might be candidates for __attribute__((pure)).
767 Wsuggest-attribute=noreturn
768 Common Var(warn_suggest_attribute_noreturn) Warning
769 Warn about functions which might be candidates for __attribute__((noreturn)).
771 Wsuggest-attribute=malloc
772 Common Var(warn_suggest_attribute_malloc) Warning
773 Warn about functions which might be candidates for __attribute__((malloc)).
775 Wsuggest-final-types
776 Common Var(warn_suggest_final_types) Warning
777 Warn about C++ polymorphic types where adding final keyword would improve code quality.
779 Wsuggest-final-methods
780 Common Var(warn_suggest_final_methods) Warning
781 Warn about C++ virtual methods where adding final keyword would improve code quality.
783 Wswitch-unreachable
784 Common Var(warn_switch_unreachable) Warning Init(1)
785 Warn about statements between switch's controlling expression and the first
786 case.
788 Wsystem-headers
789 Common Var(warn_system_headers) Warning
790 Do not suppress warnings from system headers.
792 Wtrampolines
793 Common Var(warn_trampolines) Warning
794 Warn whenever a trampoline is generated.
796 Wtype-limits
797 Common Var(warn_type_limits) Warning EnabledBy(Wextra)
798 Warn if a comparison is always true or always false due to the limited range of the data type.
800 Wuninitialized
801 Common Var(warn_uninitialized) Warning EnabledBy(Wextra)
802 Warn about uninitialized automatic variables.
804 Wmaybe-uninitialized
805 Common Var(warn_maybe_uninitialized) Warning EnabledBy(Wuninitialized)
806 Warn about maybe uninitialized automatic variables.
808 Wunreachable-code
809 Common Ignore Warning
810 Does nothing. Preserved for backward compatibility.
812 Wunused
813 Common Var(warn_unused) Init(0) Warning
814 Enable all -Wunused- warnings.
816 Wunused-but-set-parameter
817 Common Var(warn_unused_but_set_parameter) Warning EnabledBy(Wunused && Wextra)
818 Warn when a function parameter is only set, otherwise unused.
820 Wunused-but-set-variable
821 Common Var(warn_unused_but_set_variable) Warning EnabledBy(Wunused)
822 Warn when a variable is only set, otherwise unused.
824 Wunused-function
825 Common Var(warn_unused_function) Warning EnabledBy(Wunused)
826 Warn when a function is unused.
828 Wunused-label
829 Common Var(warn_unused_label) Warning EnabledBy(Wunused)
830 Warn when a label is unused.
832 Wunused-parameter
833 Common Var(warn_unused_parameter) Warning EnabledBy(Wunused && Wextra)
834 Warn when a function parameter is unused.
836 Wunused-value
837 Common Var(warn_unused_value) Warning EnabledBy(Wunused)
838 Warn when an expression value is unused.
840 Wunused-variable
841 Common Var(warn_unused_variable) Warning EnabledBy(Wunused)
842 Warn when a variable is unused.
844 Wcoverage-mismatch
845 Common Var(warn_coverage_mismatch) Init(1) Warning
846 Warn in case profiles in -fprofile-use do not match.
848 Wcoverage-invalid-line-number
849 Common Var(warn_coverage_invalid_linenum) Init(1) Warning
850 Warn in case a function ends earlier than it begins due to an invalid linenum macros.
852 Wmissing-profile
853 Common Var(warn_missing_profile) Init(1) Warning
854 Warn in case profiles in -fprofile-use do not exist.
856 Wvector-operation-performance
857 Common Var(warn_vector_operation_performance) Warning
858 Warn when a vector operation is compiled outside the SIMD.
860 Wtsan
861 Common Var(warn_tsan) Init(1) Warning
862 Warn about unsupported features in ThreadSanitizer.
864 Xassembler
865 Driver Separate
867 Xlinker
868 Driver Separate
870 Xpreprocessor
871 Driver Separate
874 Driver
876 aux-info
877 Common Separate Var(aux_info_file_name)
878 -aux-info <file>        Emit declaration information into <file>.
880 aux-info=
881 Common Joined Alias(aux-info)
883 coverage
884 Driver
887 Driver
890 Common Joined
891 -d<letters>     Enable dumps from specific passes of the compiler.
893 dumpbase
894 Driver Common Separate Var(dump_base_name)
895 -dumpbase <file>        Set the file basename to be used for dumps.
897 dumpbase-ext
898 Driver Common Separate Var(dump_base_ext)
899 -dumpbase-ext .<ext>    Drop a trailing .<ext> from the dump basename to name auxiliary output files.
901 dumpdir
902 Driver Common Separate Var(dump_dir_name)
903 -dumpdir <dir>  Set the directory name to be used for dumps.
905 dumpmachine
906 Driver
908 dumpspecs
909 Driver
911 dumpversion
912 Driver
914 dumpfullversion
915 Driver
918 Driver Joined Separate
920 ; This option has historically been passed down to the linker by an
921 ; accident of a %{e*} spec, so ensure it continues to be passed down
922 ; as a single option.  The supported option for this purpose is
923 ; -rdynamic.  See PR 47390.
924 export-dynamic
925 Driver Undocumented
927 ; The version of the C++ ABI in use.  The following values are allowed:
929 ; 0: The version of the ABI believed most conformant with the C++ ABI
930 ;    specification.  This ABI may change as bugs are discovered and fixed.
931 ;    Therefore, 0 will not necessarily indicate the same ABI in different
932 ;    versions of G++.
934 ; 1: The version of the ABI first used in G++ 3.2.  No longer selectable.
936 ; 2: The version of the ABI first used in G++ 3.4, and the default
937 ;    until GCC 4.9.
939 ; 3: The version of the ABI that fixes the missing underscore
940 ;    in template non-type arguments of pointer type.
942 ; 4: The version of the ABI that introduces unambiguous mangling of
943 ;    vector types.  First selectable in G++ 4.5.
945 ; 5: The version of the ABI that ignores attribute const/noreturn
946 ;    in function pointer mangling, and corrects mangling of decltype and
947 ;    function parameters used in other parameters and the return type.
948 ;    First selectable in G++ 4.6.
950 ; 6: The version of the ABI that doesn't promote scoped enums to int and
951 ;    changes the mangling of template argument packs, const/static_cast,
952 ;    prefix ++ and --, and a class scope function used as a template
953 ;    argument.
954 ;    First selectable in G++ 4.7.
956 ; 7: The version of the ABI that treats nullptr_t as a builtin type and
957 ;    corrects the mangling of lambdas in default argument scope.
958 ;    First selectable in G++ 4.8.
960 ; 8: The version of the ABI that corrects the substitution behavior of
961 ;    function types with function-cv-qualifiers.
962 ;    First selectable in G++ 4.9 and default in G++ 5.
964 ; 9: The version of the ABI that corrects the alignment of nullptr_t.
965 ;    First selectable and default in G++ 5.2.
967 ; 10: The version of the ABI that mangles attributes that affect type
968 ;     identity, such as ia32 calling convention attributes (stdcall, etc.)
969 ;     Default in G++ 6 (set in c_common_post_options).
971 ; 11: The version of the ABI that corrects mangling of sizeof... expressions
972 ;     and introduces new inheriting constructor handling.
973 ;     Default in G++ 7.
975 ; 12: Corrects the calling convention for classes with only deleted copy/move
976 ;     constructors and changes passing/returning of empty records.
977 ;     Default in G++ 8.1.
979 ; 13: Fixes the accidental change in 12 to the calling convention for classes
980 ;     with deleted copy constructor and trivial move constructor.
981 ;     Default in G++ 8.2.
983 ; 14: Corrects the mangling of nullptr expression.
984 ;     Default in G++ 10.
986 ; 15: Corrects G++ 10 ABI tag regression [PR98481].
987 ;     Available, but not default, in G++ 10.3.
989 ; 16: Changes the mangling of __alignof__ to be distinct from that of alignof.
990 ;     Adds missing 'on' in mangling of operator names in some cases.
991 ;     Default in G++ 11.
993 ; Additional positive integers will be assigned as new versions of
994 ; the ABI become the default version of the ABI.
995 fabi-version=
996 Common Joined RejectNegative UInteger Var(flag_abi_version) Init(0)
997 The version of the C++ ABI in use.
999 faggressive-loop-optimizations
1000 Common Var(flag_aggressive_loop_optimizations) Optimization Init(1)
1001 Aggressively optimize loops using language constraints.
1003 falign-functions
1004 Common Var(flag_align_functions) Optimization
1005 Align the start of functions.
1007 falign-functions=
1008 Common RejectNegative Joined Var(str_align_functions) Optimization
1010 flimit-function-alignment
1011 Common Var(flag_limit_function_alignment) Optimization Init(0)
1013 falign-jumps
1014 Common Var(flag_align_jumps) Optimization
1015 Align labels which are only reached by jumping.
1017 falign-jumps=
1018 Common RejectNegative Joined Var(str_align_jumps) Optimization
1020 falign-labels
1021 Common Var(flag_align_labels) Optimization
1022 Align all labels.
1024 falign-labels=
1025 Common RejectNegative Joined Var(str_align_labels) Optimization
1027 falign-loops
1028 Common Var(flag_align_loops) Optimization
1029 Align the start of loops.
1031 falign-loops=
1032 Common RejectNegative Joined Var(str_align_loops) Optimization
1034 fallow-store-data-races
1035 Common Var(flag_store_data_races) Optimization
1036 Allow the compiler to introduce new data races on stores.
1038 fanalyzer
1039 Common Var(flag_analyzer)
1040 Enable static analysis pass.
1042 fargument-alias
1043 Common Ignore
1044 Does nothing. Preserved for backward compatibility.
1046 fargument-noalias
1047 Common Ignore
1048 Does nothing. Preserved for backward compatibility.
1050 fargument-noalias-global
1051 Common Ignore
1052 Does nothing. Preserved for backward compatibility.
1054 fargument-noalias-anything
1055 Common Ignore
1056 Does nothing. Preserved for backward compatibility.
1058 fsanitize=
1059 Common Driver Joined
1060 Select what to sanitize.
1062 fsanitize-coverage=
1063 Common Joined RejectNegative Enum(sanitize_coverage)
1064 Select type of coverage sanitization.
1066 Enum
1067 Name(sanitize_coverage) Type(int)
1069 EnumValue
1070 Enum(sanitize_coverage) String(trace-pc) Value(SANITIZE_COV_TRACE_PC)
1072 EnumValue
1073 Enum(sanitize_coverage) String(trace-cmp) Value(SANITIZE_COV_TRACE_CMP)
1075 fasan-shadow-offset=
1076 Common Joined RejectNegative Var(common_deferred_options) Defer
1077 -fasan-shadow-offset=<number>   Use custom shadow memory offset.
1079 fsanitize-sections=
1080 Common Joined RejectNegative Var(common_deferred_options) Defer
1081 -fsanitize-sections=<sec1,sec2,...>     Sanitize global variables
1082 in user-defined sections.
1084 fsanitize-recover=
1085 Common Joined
1086 After diagnosing undefined behavior attempt to continue execution.
1088 fsanitize-recover
1089 Common
1090 This switch is deprecated; use -fsanitize-recover= instead.
1092 fsanitize-address-use-after-scope
1093 Common Driver Var(flag_sanitize_address_use_after_scope) Init(0)
1095 fsanitize-undefined-trap-on-error
1096 Common Driver Var(flag_sanitize_undefined_trap_on_error) Init(0)
1097 Use trap instead of a library function for undefined behavior sanitization.
1099 fasynchronous-unwind-tables
1100 Common Var(flag_asynchronous_unwind_tables) Optimization
1101 Generate unwind tables that are exact at each instruction boundary.
1103 fauto-inc-dec
1104 Common Var(flag_auto_inc_dec) Init(1) Optimization
1105 Generate auto-inc/dec instructions.
1107 fauto-profile
1108 Common Var(flag_auto_profile)
1109 Use sample profile information for call graph node weights. The default
1110 profile file is fbdata.afdo in 'pwd'.
1112 fauto-profile=
1113 Common Joined RejectNegative Var(auto_profile_file)
1114 Use sample profile information for call graph node weights. The profile
1115 file is specified in the argument.
1117 ; -fcheck-bounds causes gcc to generate array bounds checks.
1118 ; For C, C++ and ObjC: defaults off.
1119 ; For Java: defaults to on.
1120 ; For Fortran: defaults to off.
1121 fbounds-check
1122 Common Var(flag_bounds_check)
1123 Generate code to check bounds before indexing arrays.
1125 fbranch-count-reg
1126 Common Var(flag_branch_on_count_reg) Optimization
1127 Replace add, compare, branch with branch on count register.
1129 fbranch-probabilities
1130 Common Var(flag_branch_probabilities) Optimization
1131 Use profiling information for branch probabilities.
1133 fbranch-target-load-optimize
1134 Common Ignore
1135 Does nothing.  Preserved for backward compatibility.
1137 fbranch-target-load-optimize2
1138 Common Ignore
1139 Does nothing.  Preserved for backward compatibility.
1141 fbtr-bb-exclusive
1142 Common Ignore
1143 Does nothing.  Preserved for backward compatibility.
1145 fcallgraph-info
1146 Common RejectNegative Var(flag_callgraph_info) Init(NO_CALLGRAPH_INFO);
1147 Output callgraph information on a per-file basis.
1149 fcallgraph-info=
1150 Common RejectNegative Joined
1151 Output callgraph information on a per-file basis with decorations.
1153 fcall-saved-
1154 Common Joined RejectNegative Var(common_deferred_options) Defer
1155 -fcall-saved-<register> Mark <register> as being preserved across functions.
1157 fcall-used-
1158 Common Joined RejectNegative Var(common_deferred_options) Defer
1159 -fcall-used-<register>  Mark <register> as being corrupted by function calls.
1161 ; Nonzero for -fcaller-saves: allocate values in regs that need to
1162 ; be saved across function calls, if that produces overall better code.
1163 ; Optional now, so people can test it.
1164 fcaller-saves
1165 Common Var(flag_caller_saves) Optimization
1166 Save registers around function calls.
1168 fcheck-data-deps
1169 Common Ignore
1170 This switch is deprecated; do not use.
1172 fcheck-new
1173 Common Var(flag_check_new)
1174 Check the return value of new in C++.
1176 fchecking
1177 Common Var(flag_checking) Init(CHECKING_P ? ENABLE_EXTRA_CHECKING ? 2 : 1 : 0)
1178 Perform internal consistency checkings.
1180 fchecking=
1181 Common Joined RejectNegative UInteger Var(flag_checking)
1182 Perform internal consistency checkings.
1184 fcode-hoisting
1185 Common Var(flag_code_hoisting) Optimization
1186 Enable code hoisting.
1188 fcombine-stack-adjustments
1189 Common Var(flag_combine_stack_adjustments) Optimization
1190 Looks for opportunities to reduce stack adjustments and stack references.
1192 fcommon
1193 Common Var(flag_no_common,0) Init(1)
1194 Put uninitialized globals in the common section.
1196 fcompare-debug
1197 Driver
1198 ; Converted by the driver to -fcompare-debug= options.
1200 fcompare-debug=
1201 Common Driver JoinedOrMissing RejectNegative Var(flag_compare_debug_opt)
1202 -fcompare-debug[=<opts>]        Compile with and without e.g. -gtoggle, and compare the final-insns dump.
1204 fcompare-debug-second
1205 Common Driver RejectNegative Var(flag_compare_debug)
1206 Run only the second compilation of -fcompare-debug.
1208 fcompare-elim
1209 Common Var(flag_compare_elim_after_reload) Optimization
1210 Perform comparison elimination after register allocation has finished.
1212 fconserve-stack
1213 Common Var(flag_conserve_stack) Optimization
1214 Do not perform optimizations increasing noticeably stack usage.
1216 fcprop-registers
1217 Common Var(flag_cprop_registers) Optimization
1218 Perform a register copy-propagation optimization pass.
1220 fcrossjumping
1221 Common Var(flag_crossjumping) Optimization
1222 Perform cross-jumping optimization.
1224 fcse-follow-jumps
1225 Common Var(flag_cse_follow_jumps) Optimization
1226 When running CSE, follow jumps to their targets.
1228 fcse-skip-blocks
1229 Common Ignore
1230 Does nothing.  Preserved for backward compatibility.
1232 fcx-limited-range
1233 Common Var(flag_cx_limited_range) Optimization SetByCombined
1234 Omit range reduction step when performing complex division.
1236 fcx-fortran-rules
1237 Common Var(flag_cx_fortran_rules) Optimization
1238 Complex multiplication and division follow Fortran rules.
1240 fdata-sections
1241 Common Var(flag_data_sections)
1242 Place data items into their own section.
1244 fdbg-cnt-list
1245 Common Var(flag_dbg_cnt_list)
1246 List all available debugging counters with their limits and counts.
1248 fdbg-cnt=
1249 Common RejectNegative Joined Var(common_deferred_options) Defer
1250 -fdbg-cnt=<counter>[:<lower_limit1>-]<upper_limit1>[:<lower_limit2>-<upper_limit2>:...][,<counter>:...] Set the debug counter limit.
1252 fdebug-prefix-map=
1253 Common Joined RejectNegative Var(common_deferred_options) Defer
1254 -fdebug-prefix-map=<old>=<new>  Map one directory name to another in debug information.
1256 ffile-prefix-map=
1257 Common Joined RejectNegative Var(common_deferred_options) Defer
1258 -ffile-prefix-map=<old>=<new>   Map one directory name to another in compilation result.
1260 fdebug-types-section
1261 Common Var(flag_debug_types_section) Init(0)
1262 Output .debug_types section when using DWARF v4 debuginfo.
1264 ; Nonzero for -fdefer-pop: don't pop args after each function call
1265 ; instead save them up to pop many calls' args with one insns.
1266 fdefer-pop
1267 Common Var(flag_defer_pop) Optimization
1268 Defer popping functions args from stack until later.
1270 fdelayed-branch
1271 Common Var(flag_delayed_branch) Optimization
1272 Attempt to fill delay slots of branch instructions.
1274 fdelete-dead-exceptions
1275 Common Var(flag_delete_dead_exceptions) Init(0) Optimization
1276 Delete dead instructions that may throw exceptions.
1278 fdelete-null-pointer-checks
1279 Common Var(flag_delete_null_pointer_checks) Init(-1) Optimization
1280 Delete useless null pointer checks.
1282 fdevirtualize-at-ltrans
1283 Common Var(flag_ltrans_devirtualize)
1284 Stream extra data to support more aggressive devirtualization in LTO local transformation mode.
1286 fdevirtualize-speculatively
1287 Common Var(flag_devirtualize_speculatively) Optimization
1288 Perform speculative devirtualization.
1290 fdevirtualize
1291 Common Var(flag_devirtualize) Optimization
1292 Try to convert virtual calls to direct ones.
1294 fdiagnostics-show-location=
1295 Common Joined RejectNegative Enum(diagnostic_prefixing_rule)
1296 -fdiagnostics-show-location=[once|every-line]   How often to emit source location at the beginning of line-wrapped diagnostics.
1298 ; Required for these enum values.
1299 SourceInclude
1300 pretty-print.h
1302 Enum
1303 Name(diagnostic_prefixing_rule) Type(int)
1305 EnumValue
1306 Enum(diagnostic_prefixing_rule) String(once) Value(DIAGNOSTICS_SHOW_PREFIX_ONCE)
1308 EnumValue
1309 Enum(diagnostic_prefixing_rule) String(every-line) Value(DIAGNOSTICS_SHOW_PREFIX_EVERY_LINE)
1311 fdiagnostics-show-caret
1312 Common Var(flag_diagnostics_show_caret) Init(1)
1313 Show the source line with a caret indicating the column.
1315 fdiagnostics-show-labels
1316 Common Var(flag_diagnostics_show_labels) Init(1)
1317 Show labels annotating ranges of source code when showing source.
1319 fdiagnostics-show-line-numbers
1320 Common Var(flag_diagnostics_show_line_numbers) Init(1)
1321 Show line numbers in the left margin when showing source.
1323 fdiagnostics-color
1324 Common Alias(fdiagnostics-color=,always,never)
1327 fdiagnostics-color=
1328 Driver Common Joined RejectNegative Var(flag_diagnostics_show_color) Enum(diagnostic_color_rule) Init(DIAGNOSTICS_COLOR_NO)
1329 -fdiagnostics-color=[never|always|auto] Colorize diagnostics.
1331 ; Required for these enum values.
1332 SourceInclude
1333 diagnostic-color.h
1335 Enum
1336 Name(diagnostic_color_rule) Type(int)
1338 EnumValue
1339 Enum(diagnostic_color_rule) String(never) Value(DIAGNOSTICS_COLOR_NO)
1341 EnumValue
1342 Enum(diagnostic_color_rule) String(always) Value(DIAGNOSTICS_COLOR_YES)
1344 EnumValue
1345 Enum(diagnostic_color_rule) String(auto) Value(DIAGNOSTICS_COLOR_AUTO)
1347 fdiagnostics-urls=
1348 Driver Common Joined RejectNegative Var(flag_diagnostics_show_urls) Enum(diagnostic_url_rule) Init(DIAGNOSTICS_URL_AUTO)
1349 -fdiagnostics-urls=[never|always|auto]  Embed URLs in diagnostics.
1351 ; Required for these enum values.
1352 SourceInclude
1353 diagnostic-url.h
1355 Enum
1356 Name(diagnostic_url_rule) Type(int)
1358 EnumValue
1359 Enum(diagnostic_url_rule) String(never) Value(DIAGNOSTICS_URL_NO)
1361 EnumValue
1362 Enum(diagnostic_url_rule) String(always) Value(DIAGNOSTICS_URL_YES)
1364 EnumValue
1365 Enum(diagnostic_url_rule) String(auto) Value(DIAGNOSTICS_URL_AUTO)
1367 fdiagnostics-column-unit=
1368 Common Joined RejectNegative Enum(diagnostics_column_unit)
1369 -fdiagnostics-column-unit=[display|byte]        Select whether column numbers are output as display columns (default) or raw bytes.
1371 fdiagnostics-column-origin=
1372 Common Joined RejectNegative UInteger
1373 -fdiagnostics-column-origin=<number>    Set the number of the first column.  The default is 1-based as per GNU style, but some utilities may expect 0-based, for example.
1375 fdiagnostics-format=
1376 Common Joined RejectNegative Enum(diagnostics_output_format)
1377 -fdiagnostics-format=[text|json]        Select output format.
1379 fdiagnostics-escape-format=
1380 Common Joined RejectNegative Enum(diagnostics_escape_format)
1381 -fdiagnostics-escape-format=[unicode|bytes]     Select how to escape non-printable-ASCII bytes in the source for diagnostics that suggest it.
1383 ; Required for these enum values.
1384 SourceInclude
1385 diagnostic.h
1387 Enum
1388 Name(diagnostics_column_unit) Type(int)
1390 EnumValue
1391 Enum(diagnostics_column_unit) String(display) Value(DIAGNOSTICS_COLUMN_UNIT_DISPLAY)
1393 EnumValue
1394 Enum(diagnostics_column_unit) String(byte) Value(DIAGNOSTICS_COLUMN_UNIT_BYTE)
1396 Enum
1397 Name(diagnostics_escape_format) Type(int)
1399 EnumValue
1400 Enum(diagnostics_escape_format) String(unicode) Value(DIAGNOSTICS_ESCAPE_FORMAT_UNICODE)
1402 EnumValue
1403 Enum(diagnostics_escape_format) String(bytes) Value(DIAGNOSTICS_ESCAPE_FORMAT_BYTES)
1405 Enum
1406 Name(diagnostics_output_format) Type(int)
1408 EnumValue
1409 Enum(diagnostics_output_format) String(text) Value(DIAGNOSTICS_OUTPUT_FORMAT_TEXT)
1411 EnumValue
1412 Enum(diagnostics_output_format) String(json) Value(DIAGNOSTICS_OUTPUT_FORMAT_JSON)
1414 fdiagnostics-parseable-fixits
1415 Common Var(flag_diagnostics_parseable_fixits)
1416 Print fix-it hints in machine-readable form.
1418 fdiagnostics-generate-patch
1419 Common Var(flag_diagnostics_generate_patch)
1420 Print fix-it hints to stderr in unified diff format.
1422 fdiagnostics-show-option
1423 Common Var(flag_diagnostics_show_option) Init(1)
1424 Amend appropriate diagnostic messages with the command line option that controls them.
1426 fdiagnostics-show-cwe
1427 Common Var(flag_diagnostics_show_cwe) Init(1)
1428 Print CWE identifiers for diagnostic messages, where available.
1430 fdiagnostics-path-format=
1431 Common Joined RejectNegative Var(flag_diagnostics_path_format) Enum(diagnostic_path_format) Init(DPF_INLINE_EVENTS)
1432 Specify how to print any control-flow path associated with a diagnostic.
1434 fdiagnostics-plain-output
1435 Driver Common RejectNegative
1436 Turn off any diagnostics features that complicate the output, such as line numbers, color, and warning URLs.
1438 ftabstop=
1439 Common Joined RejectNegative UInteger
1440 -ftabstop=<number>      Distance between tab stops for column reporting.
1442 Enum
1443 Name(diagnostic_path_format) Type(int)
1445 EnumValue
1446 Enum(diagnostic_path_format) String(none) Value(DPF_NONE)
1448 EnumValue
1449 Enum(diagnostic_path_format) String(separate-events) Value(DPF_SEPARATE_EVENTS)
1451 EnumValue
1452 Enum(diagnostic_path_format) String(inline-events) Value(DPF_INLINE_EVENTS)
1454 fdiagnostics-show-path-depths
1455 Common Var(flag_diagnostics_show_path_depths) Init(0)
1456 Show stack depths of events in paths.
1458 fdiagnostics-minimum-margin-width=
1459 Common Joined UInteger Var(diagnostics_minimum_margin_width) Init(6)
1460 Set minimum width of left margin of source code when showing source.
1462 fdisable-
1463 Common Joined RejectNegative Var(common_deferred_options) Defer
1464 -fdisable-[tree|rtl|ipa]-<pass>=range1+range2   Disable an optimization pass.
1466 fenable-
1467 Common Joined RejectNegative Var(common_deferred_options) Defer
1468 -fenable-[tree|rtl|ipa]-<pass>=range1+range2    Enable an optimization pass.
1470 fdump-
1471 Common Joined RejectNegative Var(common_deferred_options) Defer
1472 -fdump-<type>   Dump various compiler internals to a file.
1474 fdump-final-insns
1475 Driver RejectNegative
1477 fdump-final-insns=
1478 Common RejectNegative Joined Var(flag_dump_final_insns)
1479 -fdump-final-insns=filename     Dump to filename the insns at the end of translation.
1481 fdump-go-spec=
1482 Common RejectNegative Joined Var(flag_dump_go_spec)
1483 -fdump-go-spec=filename Write all declarations to file as Go code.
1485 fdump-noaddr
1486 Common Var(flag_dump_noaddr)
1487 Suppress output of addresses in debugging dumps.
1489 freport-bug
1490 Common Driver Var(flag_report_bug)
1491 Collect and dump debug information into temporary file if ICE in C/C++
1492 compiler occurred.
1494 fdump-internal-locations
1495 Common Var(flag_dump_locations) Init(0)
1496 Dump detailed information on GCC's internal representation of source code locations.
1498 fdump-passes
1499 Common Var(flag_dump_passes) Init(0)
1500 Dump optimization passes.
1502 fdump-unnumbered
1503 Common Var(flag_dump_unnumbered)
1504 Suppress output of instruction numbers, line number notes and addresses in debugging dumps.
1506 fdump-unnumbered-links
1507 Common Var(flag_dump_unnumbered_links)
1508 Suppress output of previous and next insn numbers in debugging dumps.
1510 fdwarf2-cfi-asm
1511 Common Var(flag_dwarf2_cfi_asm) Init(HAVE_GAS_CFI_DIRECTIVE)
1512 Enable CFI tables via GAS assembler directives.
1514 fearly-inlining
1515 Common Var(flag_early_inlining) Init(1) Optimization
1516 Perform early inlining.
1518 feliminate-dwarf2-dups
1519 Common Ignore
1520 Does nothing.  Preserved for backward compatibility.
1522 fipa-sra
1523 Common Var(flag_ipa_sra) Init(0) Optimization
1524 Perform interprocedural reduction of aggregates.
1526 feliminate-unused-debug-symbols
1527 Common Var(flag_debug_only_used_symbols) Init(1)
1528 Perform unused symbol elimination in debug info.
1530 feliminate-unused-debug-types
1531 Common Var(flag_eliminate_unused_debug_types) Init(1)
1532 Perform unused type elimination in debug info.
1534 femit-class-debug-always
1535 Common Var(flag_emit_class_debug_always) Init(0)
1536 Do not suppress C++ class debug information.
1538 fexceptions
1539 Common Var(flag_exceptions) Optimization EnabledBy(fnon-call-exceptions)
1540 Enable exception handling.
1542 fexpensive-optimizations
1543 Common Var(flag_expensive_optimizations) Optimization
1544 Perform a number of minor, expensive optimizations.
1546 fexcess-precision=
1547 Common Joined RejectNegative Enum(excess_precision) Var(flag_excess_precision) Init(EXCESS_PRECISION_DEFAULT) Optimization SetByCombined
1548 -fexcess-precision=[fast|standard|16]   Specify handling of excess floating-point precision.
1550 Enum
1551 Name(excess_precision) Type(enum excess_precision) UnknownError(unknown excess precision style %qs)
1553 EnumValue
1554 Enum(excess_precision) String(fast) Value(EXCESS_PRECISION_FAST)
1556 EnumValue
1557 Enum(excess_precision) String(standard) Value(EXCESS_PRECISION_STANDARD)
1559 EnumValue
1560 Enum(excess_precision) String(16) Value(EXCESS_PRECISION_FLOAT16)
1562 ; Whether we permit the extended set of values for FLT_EVAL_METHOD
1563 ; introduced in ISO/IEC TS 18661-3, or limit ourselves to those in C99/C11.
1564 fpermitted-flt-eval-methods=
1565 Common Joined RejectNegative Enum(permitted_flt_eval_methods) Var(flag_permitted_flt_eval_methods) Init(PERMITTED_FLT_EVAL_METHODS_DEFAULT)
1566 -fpermitted-flt-eval-methods=[c11|ts-18661]     Specify which values of FLT_EVAL_METHOD are permitted.
1568 Enum
1569 Name(permitted_flt_eval_methods) Type(enum permitted_flt_eval_methods) UnknownError(unknown specification for the set of FLT_EVAL_METHOD values to permit %qs)
1571 EnumValue
1572 Enum(permitted_flt_eval_methods) String(c11) Value(PERMITTED_FLT_EVAL_METHODS_C11)
1574 EnumValue
1575 Enum(permitted_flt_eval_methods) String(ts-18661-3) Value(PERMITTED_FLT_EVAL_METHODS_TS_18661)
1577 ffast-math
1578 Common Optimization
1580 ffat-lto-objects
1581 Common Var(flag_fat_lto_objects)
1582 Output lto objects containing both the intermediate language and binary output.
1584 ffinite-math-only
1585 Common Var(flag_finite_math_only) Optimization SetByCombined
1586 Assume no NaNs or infinities are generated.
1588 ffinite-loops
1589 Common Var(flag_finite_loops) Optimization Init(0)
1590 Assume that loops with an exit will terminate and not loop indefinitely.
1592 ffixed-
1593 Common Joined RejectNegative Var(common_deferred_options) Defer
1594 -ffixed-<register>      Mark <register> as being unavailable to the compiler.
1596 ffloat-store
1597 Common Var(flag_float_store) Optimization
1598 Don't allocate floats and doubles in extended-precision registers.
1600 fforce-addr
1601 Common Ignore
1602 Does nothing.  Preserved for backward compatibility.
1604 fforward-propagate
1605 Common Var(flag_forward_propagate) Optimization
1606 Perform a forward propagation pass on RTL.
1608 ffp-contract=
1609 Common Joined RejectNegative Enum(fp_contract_mode) Var(flag_fp_contract_mode) Init(FP_CONTRACT_FAST) Optimization
1610 -ffp-contract=[off|on|fast]     Perform floating-point expression contraction.
1612 Enum
1613 Name(fp_contract_mode) Type(enum fp_contract_mode) UnknownError(unknown floating point contraction style %qs)
1615 EnumValue
1616 Enum(fp_contract_mode) String(off) Value(FP_CONTRACT_OFF)
1618 ; Not implemented, fall back to conservative FP_CONTRACT_OFF.
1619 EnumValue
1620 Enum(fp_contract_mode) String(on) Value(FP_CONTRACT_OFF)
1622 EnumValue
1623 Enum(fp_contract_mode) String(fast) Value(FP_CONTRACT_FAST)
1625 ffp-int-builtin-inexact
1626 Common Var(flag_fp_int_builtin_inexact) Init(1) Optimization
1627 Allow built-in functions ceil, floor, round, trunc to raise \"inexact\" exceptions.
1629 ; Nonzero means don't put addresses of constant functions in registers.
1630 ; Used for compiling the Unix kernel, where strange substitutions are
1631 ; done on the assembly output.
1632 ffunction-cse
1633 Common Var(flag_no_function_cse,0) Optimization
1634 Allow function addresses to be held in registers.
1636 ffunction-sections
1637 Common Var(flag_function_sections)
1638 Place each function into its own section.
1640 fgcse
1641 Common Var(flag_gcse) Optimization
1642 Perform global common subexpression elimination.
1644 fgcse-lm
1645 Common Var(flag_gcse_lm) Init(1) Optimization
1646 Perform enhanced load motion during global common subexpression elimination.
1648 fgcse-sm
1649 Common Var(flag_gcse_sm) Init(0) Optimization
1650 Perform store motion after global common subexpression elimination.
1652 fgcse-las
1653 Common Var(flag_gcse_las) Init(0) Optimization
1654 Perform redundant load after store elimination in global common subexpression
1655 elimination.
1657 fgcse-after-reload
1658 Common Var(flag_gcse_after_reload) Optimization
1659 Perform global common subexpression elimination after register allocation has
1660 finished.
1662 Enum
1663 Name(dwarf_gnat_encodings) Type(int)
1665 EnumValue
1666 Enum(dwarf_gnat_encodings) String(all) Value(DWARF_GNAT_ENCODINGS_ALL)
1668 EnumValue
1669 Enum(dwarf_gnat_encodings) String(gdb) Value(DWARF_GNAT_ENCODINGS_GDB)
1671 EnumValue
1672 Enum(dwarf_gnat_encodings) String(minimal) Value(DWARF_GNAT_ENCODINGS_MINIMAL)
1674 fgnat-encodings=
1675 Common Enum(dwarf_gnat_encodings) Joined RejectNegative Undocumented Var(gnat_encodings)
1676 -fgnat-encodings=[all|gdb|minimal]      Select the balance between GNAT encodings and standard DWARF emitted in the debug information.
1678 ; This option is not documented yet as its semantics will change.
1679 fgraphite
1680 Common Var(flag_graphite) Optimization
1681 Enable in and out of Graphite representation.
1683 fgraphite-identity
1684 Common Var(flag_graphite_identity) Optimization
1685 Enable Graphite Identity transformation.
1687 fhoist-adjacent-loads
1688 Common Var(flag_hoist_adjacent_loads) Optimization
1689 Enable hoisting adjacent loads to encourage generating conditional move
1690 instructions.
1692 fkeep-gc-roots-live
1693 Common Undocumented Var(flag_keep_gc_roots_live) Optimization
1694 ; Always keep a pointer to a live memory block
1696 flarge-source-files
1697 Common Var(flag_large_source_files) Init(0)
1698 Improve GCC's ability to track column numbers in large source files,
1699 at the expense of slower compilation.
1701 floop-parallelize-all
1702 Common Var(flag_loop_parallelize_all) Optimization
1703 Mark all loops as parallel.
1705 floop-strip-mine
1706 Common Alias(floop-nest-optimize)
1707 Enable loop nest transforms.  Same as -floop-nest-optimize.
1709 floop-interchange
1710 Common Var(flag_loop_interchange) Optimization
1711 Enable loop interchange on trees.
1713 floop-block
1714 Common Alias(floop-nest-optimize)
1715 Enable loop nest transforms.  Same as -floop-nest-optimize.
1717 floop-unroll-and-jam
1718 Common Var(flag_unroll_jam) Optimization
1719 Perform unroll-and-jam on loops.
1721 fgnu-tm
1722 Common Var(flag_tm)
1723 Enable support for GNU transactional memory.
1725 fgnu-unique
1726 Common Var(flag_gnu_unique) Init(1)
1727 Use STB_GNU_UNIQUE if supported by the assembler.
1729 floop-flatten
1730 Common Ignore
1731 Does nothing. Preserved for backward compatibility.
1733 floop-nest-optimize
1734 Common Var(flag_loop_nest_optimize) Optimization
1735 Enable the loop nest optimizer.
1737 fstrict-volatile-bitfields
1738 Common Var(flag_strict_volatile_bitfields) Init(-1) Optimization
1739 Force bitfield accesses to match their type width.
1741 fstore-merging
1742 Common Var(flag_store_merging) Optimization
1743 Merge adjacent stores.
1745 fguess-branch-probability
1746 Common Var(flag_guess_branch_prob) Optimization
1747 Enable guessing of branch probabilities.
1749 fharden-compares
1750 Common Var(flag_harden_compares) Optimization
1751 Harden conditionals not used in branches, checking reversed conditions.
1753 fharden-conditional-branches
1754 Common Var(flag_harden_conditional_branches) Optimization
1755 Harden conditional branches by checking reversed conditions.
1757 ; Nonzero means ignore `#ident' directives.  0 means handle them.
1758 ; Generate position-independent code for executables if possible
1759 ; On SVR4 targets, it also controls whether or not to emit a
1760 ; string identifying the compiler.
1761 fident
1762 Common Var(flag_no_ident,0)
1763 Process #ident directives.
1765 fif-conversion
1766 Common Var(flag_if_conversion) Optimization
1767 Perform conversion of conditional jumps to branchless equivalents.
1769 fif-conversion2
1770 Common Var(flag_if_conversion2) Optimization
1771 Perform conversion of conditional jumps to conditional execution.
1773 fstack-reuse=
1774 Common Joined RejectNegative Enum(stack_reuse_level) Var(flag_stack_reuse) Init(SR_ALL) Optimization
1775 -fstack-reuse=[all|named_vars|none]     Set stack reuse level for local variables.
1777 Enum
1778 Name(stack_reuse_level) Type(enum stack_reuse_level) UnknownError(unknown Stack Reuse Level %qs)
1780 EnumValue
1781 Enum(stack_reuse_level) String(all) Value(SR_ALL)
1783 EnumValue
1784 Enum(stack_reuse_level) String(named_vars) Value(SR_NAMED_VARS)
1786 EnumValue
1787 Enum(stack_reuse_level) String(none) Value(SR_NONE)
1789 ftree-loop-if-convert
1790 Common Var(flag_tree_loop_if_convert) Init(-1) Optimization
1791 Convert conditional jumps in innermost loops to branchless equivalents.
1793 ftree-loop-if-convert-stores
1794 Common Ignore
1795 Does nothing. Preserved for backward compatibility.
1797 ; -finhibit-size-directive inhibits output of .size for ELF.
1798 ; This is used only for compiling crtstuff.c,
1799 ; and it may be extended to other effects
1800 ; needed for crtstuff.c on other systems.
1801 finhibit-size-directive
1802 Common Var(flag_inhibit_size_directive)
1803 Do not generate .size directives.
1805 findirect-inlining
1806 Common Var(flag_indirect_inlining) Optimization
1807 Perform indirect inlining.
1809 ; General flag to enable inlining.  Specifying -fno-inline will disable
1810 ; all inlining apart from always-inline functions.
1811 finline
1812 Common Var(flag_no_inline,0) Init(0) Optimization
1813 Enable inlining of function declared \"inline\", disabling disables all inlining.
1815 finline-small-functions
1816 Common Var(flag_inline_small_functions) Optimization
1817 Integrate functions into their callers when code size is known not to grow.
1819 finline-functions
1820 Common Var(flag_inline_functions) Optimization
1821 Integrate functions not declared \"inline\" into their callers when profitable.
1823 finline-functions-called-once
1824 Common Var(flag_inline_functions_called_once) Optimization
1825 Integrate functions only required by their single caller.
1827 finline-limit-
1828 Common RejectNegative Joined Alias(finline-limit=)
1830 finline-limit=
1831 Common RejectNegative Joined UInteger
1832 -finline-limit=<number> Limit the size of inlined functions to <number>.
1834 finline-atomics
1835 Common Var(flag_inline_atomics) Init(1) Optimization
1836 Inline __atomic operations when a lock free instruction sequence is available.
1838 fcf-protection
1839 Common RejectNegative Alias(fcf-protection=,full)
1841 fcf-protection=
1842 Common Joined RejectNegative Enum(cf_protection_level) Var(flag_cf_protection) Init(CF_NONE)
1843 -fcf-protection=[full|branch|return|none|check] Instrument functions with checks to verify jump/call/return control-flow transfer
1844 instructions have valid targets.
1846 Enum
1847 Name(cf_protection_level) Type(enum cf_protection_level) UnknownError(unknown Control-Flow Protection Level %qs)
1849 EnumValue
1850 Enum(cf_protection_level) String(full) Value(CF_FULL)
1852 EnumValue
1853 Enum(cf_protection_level) String(branch) Value(CF_BRANCH)
1855 EnumValue
1856 Enum(cf_protection_level) String(return) Value(CF_RETURN)
1858 EnumValue
1859 Enum(cf_protection_level) String(check) Value(CF_CHECK)
1861 EnumValue
1862 Enum(cf_protection_level) String(none) Value(CF_NONE)
1864 finstrument-functions
1865 Common Var(flag_instrument_function_entry_exit)
1866 Instrument function entry and exit with profiling calls.
1868 finstrument-functions-exclude-function-list=
1869 Common RejectNegative Joined
1870 -finstrument-functions-exclude-function-list=name,...   Do not instrument listed functions.
1872 finstrument-functions-exclude-file-list=
1873 Common RejectNegative Joined
1874 -finstrument-functions-exclude-file-list=filename,...   Do not instrument functions listed in files.
1876 fipa-cp
1877 Common Var(flag_ipa_cp) Optimization
1878 Perform interprocedural constant propagation.
1880 fipa-cp-clone
1881 Common Var(flag_ipa_cp_clone) Optimization
1882 Perform cloning to make Interprocedural constant propagation stronger.
1884 fipa-cp-alignment
1885 Common Ignore
1886 Does nothing.  Preserved for backward compatibility.
1888 fipa-bit-cp
1889 Common Var(flag_ipa_bit_cp) Optimization
1890 Perform interprocedural bitwise constant propagation.
1892 fipa-modref
1893 Common Var(flag_ipa_modref) Optimization
1894 Perform interprocedural modref analysis.
1896 fipa-profile
1897 Common Var(flag_ipa_profile) Init(0) Optimization
1898 Perform interprocedural profile propagation.
1900 fipa-pta
1901 Common Var(flag_ipa_pta) Init(0) Optimization
1902 Perform interprocedural points-to analysis.
1904 fipa-pure-const
1905 Common Var(flag_ipa_pure_const) Init(0) Optimization
1906 Discover pure and const functions.
1908 fipa-icf
1909 Common Var(flag_ipa_icf) Optimization
1910 Perform Identical Code Folding for functions and read-only variables.
1912 fipa-icf-functions
1913 Common Var(flag_ipa_icf_functions) Optimization
1914 Perform Identical Code Folding for functions.
1916 fipa-icf-variables
1917 Common Var(flag_ipa_icf_variables) Optimization
1918 Perform Identical Code Folding for variables.
1920 fipa-reference
1921 Common Var(flag_ipa_reference) Init(0) Optimization
1922 Discover read-only and non addressable static variables.
1924 fipa-reference-addressable
1925 Common Var(flag_ipa_reference_addressable) Init(0) Optimization
1926 Discover read-only, write-only and non-addressable static variables.
1928 fipa-stack-alignment
1929 Common Var(flag_ipa_stack_alignment) Init(1) Optimization
1930 Reduce stack alignment on call sites if possible.
1932 fipa-matrix-reorg
1933 Common Ignore
1934 Does nothing. Preserved for backward compatibility.
1936 fipa-struct-reorg
1937 Common Ignore
1938 Does nothing. Preserved for backward compatibility.
1940 fipa-vrp
1941 Common Var(flag_ipa_vrp) Optimization
1942 Perform IPA Value Range Propagation.
1944 fira-algorithm=
1945 Common Joined RejectNegative Enum(ira_algorithm) Var(flag_ira_algorithm) Init(IRA_ALGORITHM_CB) Optimization
1946 -fira-algorithm=[CB|priority]   Set the used IRA algorithm.
1948 Enum
1949 Name(ira_algorithm) Type(enum ira_algorithm) UnknownError(unknown IRA algorithm %qs)
1951 EnumValue
1952 Enum(ira_algorithm) String(CB) Value(IRA_ALGORITHM_CB)
1954 EnumValue
1955 Enum(ira_algorithm) String(priority) Value(IRA_ALGORITHM_PRIORITY)
1957 fira-region=
1958 Common Joined RejectNegative Enum(ira_region) Var(flag_ira_region) Init(IRA_REGION_ONE) Optimization
1959 -fira-region=[one|all|mixed]    Set regions for IRA.
1961 Enum
1962 Name(ira_region) Type(enum ira_region) UnknownError(unknown IRA region %qs)
1964 EnumValue
1965 Enum(ira_region) String(one) Value(IRA_REGION_ONE)
1967 EnumValue
1968 Enum(ira_region) String(all) Value(IRA_REGION_ALL)
1970 EnumValue
1971 Enum(ira_region) String(mixed) Value(IRA_REGION_MIXED)
1973 fira-hoist-pressure
1974 Common Var(flag_ira_hoist_pressure) Init(1) Optimization
1975 Use IRA based register pressure calculation
1976 in RTL hoist optimizations.
1978 fira-loop-pressure
1979 Common Var(flag_ira_loop_pressure) Optimization
1980 Use IRA based register pressure calculation
1981 in RTL loop optimizations.
1983 fira-share-save-slots
1984 Common Var(flag_ira_share_save_slots) Init(1) Optimization
1985 Share slots for saving different hard registers.
1987 fira-share-spill-slots
1988 Common Var(flag_ira_share_spill_slots) Init(1) Optimization
1989 Share stack slots for spilled pseudo-registers.
1991 fira-verbose=
1992 Common RejectNegative Joined UInteger Var(flag_ira_verbose) Init(5)
1993 -fira-verbose=<number>  Control IRA's level of diagnostic messages.
1995 fivopts
1996 Common Var(flag_ivopts) Init(1) Optimization
1997 Optimize induction variables on trees.
1999 fjump-tables
2000 Common Var(flag_jump_tables) Init(1) Optimization
2001 Use jump tables for sufficiently large switch statements.
2003 fbit-tests
2004 Common Var(flag_bit_tests) Init(1) Optimization
2005 Use bit tests for sufficiently large switch statements.
2007 fkeep-inline-functions
2008 Common Var(flag_keep_inline_functions)
2009 Generate code for functions even if they are fully inlined.
2011 fkeep-static-functions
2012 Common Var(flag_keep_static_functions)
2013 Generate code for static functions even if they are never called.
2015 fkeep-static-consts
2016 Common Var(flag_keep_static_consts) Init(1)
2017 Emit static const variables even if they are not used.
2019 fleading-underscore
2020 Common Var(flag_leading_underscore) Init(-1)
2021 Give external symbols a leading underscore.
2023 floop-optimize
2024 Common Ignore
2025 Does nothing.  Preserved for backward compatibility.
2027 flra-remat
2028 Common Var(flag_lra_remat) Optimization
2029 Do CFG-sensitive rematerialization in LRA.
2031 flto
2032 Common
2033 Enable link-time optimization.
2035 flto=
2036 Common RejectNegative Joined Var(flag_lto)
2037 Link-time optimization with number of parallel jobs or jobserver.
2039 Enum
2040 Name(lto_partition_model) Type(enum lto_partition_model) UnknownError(unknown LTO partitioning model %qs)
2042 EnumValue
2043 Enum(lto_partition_model) String(none) Value(LTO_PARTITION_NONE)
2045 EnumValue
2046 Enum(lto_partition_model) String(one) Value(LTO_PARTITION_ONE)
2048 EnumValue
2049 Enum(lto_partition_model) String(balanced) Value(LTO_PARTITION_BALANCED)
2051 EnumValue
2052 Enum(lto_partition_model) String(1to1) Value(LTO_PARTITION_1TO1)
2054 EnumValue
2055 Enum(lto_partition_model) String(max) Value(LTO_PARTITION_MAX)
2057 flto-partition=
2058 Common Joined RejectNegative Enum(lto_partition_model) Var(flag_lto_partition) Init(LTO_PARTITION_BALANCED)
2059 Specify the algorithm to partition symbols and vars at linktime.
2061 ; The initial value of -1 comes from Z_DEFAULT_COMPRESSION in zlib.h.
2062 flto-compression-level=
2063 Common Joined RejectNegative UInteger Var(flag_lto_compression_level) Init(-1) IntegerRange(0, 19)
2064 -flto-compression-level=<number>        Use zlib/zstd compression level <number> for IL.
2066 flto-odr-type-merging
2067 Common Ignore
2068 Does nothing.  Preserved for backward compatibility.
2070 flto-report
2071 Common Var(flag_lto_report) Init(0)
2072 Report various link-time optimization statistics.
2074 flto-report-wpa
2075 Common Var(flag_lto_report_wpa) Init(0)
2076 Report various link-time optimization statistics for WPA only.
2078 fmath-errno
2079 Common Var(flag_errno_math) Init(1) Optimization SetByCombined
2080 Set errno after built-in math functions.
2082 fmax-errors=
2083 Common Joined RejectNegative UInteger Var(flag_max_errors)
2084 -fmax-errors=<number>   Maximum number of errors to report.
2086 fmem-report
2087 Common Var(mem_report)
2088 Report on permanent memory allocation.
2090 fmem-report-wpa
2091 Common Var(mem_report_wpa)
2092 Report on permanent memory allocation in WPA only.
2094 ; This will attempt to merge constant section constants, if 1 only
2095 ; string constants and constants from constant pool, if 2 also constant
2096 ; variables.
2097 fmerge-all-constants
2098 Common Var(flag_merge_constants,2) Init(1)
2099 Attempt to merge identical constants and constant variables.
2101 fmerge-constants
2102 Common Var(flag_merge_constants,1)
2103 Attempt to merge identical constants across compilation units.
2105 fmerge-debug-strings
2106 Common Var(flag_merge_debug_strings) Init(1)
2107 Attempt to merge identical debug strings across compilation units.
2109 fmessage-length=
2110 Common RejectNegative Joined UInteger
2111 -fmessage-length=<number>       Limit diagnostics to <number> characters per line.  0 suppresses line-wrapping.
2113 fmodulo-sched
2114 Common Var(flag_modulo_sched) Optimization
2115 Perform SMS based modulo scheduling before the first scheduling pass.
2117 fmodulo-sched-allow-regmoves
2118 Common Var(flag_modulo_sched_allow_regmoves) Optimization
2119 Perform SMS based modulo scheduling with register moves allowed.
2121 fmove-loop-invariants
2122 Common Var(flag_move_loop_invariants) Optimization
2123 Move loop invariant computations out of loops.
2125 fmove-loop-stores
2126 Common Var(flag_move_loop_stores) Optimization
2127 Move stores out of loops.
2129 fdce
2130 Common Var(flag_dce) Init(1) Optimization
2131 Use the RTL dead code elimination pass.
2133 fdse
2134 Common Var(flag_dse) Init(0) Optimization
2135 Use the RTL dead store elimination pass.
2137 freschedule-modulo-scheduled-loops
2138 Common Var(flag_resched_modulo_sched) Optimization
2139 Enable/Disable the traditional scheduling in loops that already passed modulo scheduling.
2141 fnon-call-exceptions
2142 Common Var(flag_non_call_exceptions) Optimization
2143 Support synchronous non-call exceptions.
2145 foffload=
2146 Driver Joined MissingArgError(targets missing after %qs)
2148 foffload-options=
2149 Common Driver Joined MissingArgError(options or targets=options missing after %qs)
2150 -foffload-options=<targets>=<options>   Specify options for the offloading targets.
2152 foffload-abi=
2153 Common Joined RejectNegative Enum(offload_abi)
2154 -foffload-abi=[lp64|ilp32]      Set the ABI to use in an offload compiler.
2156 Enum
2157 Name(offload_abi) Type(enum offload_abi) UnknownError(unknown offload ABI %qs)
2159 EnumValue
2160 Enum(offload_abi) String(ilp32) Value(OFFLOAD_ABI_ILP32)
2162 EnumValue
2163 Enum(offload_abi) String(lp64) Value(OFFLOAD_ABI_LP64)
2165 fomit-frame-pointer
2166 Common Var(flag_omit_frame_pointer) Optimization
2167 When possible do not generate stack frames.
2169 fopt-info
2170 Common Var(flag_opt_info) Optimization
2171 Enable all optimization info dumps on stderr.
2173 fopt-info-
2174 Common Joined RejectNegative Var(common_deferred_options) Defer
2175 -fopt-info[-<type>=filename]    Dump compiler optimization details.
2177 fsave-optimization-record
2178 Common Var(flag_save_optimization_record) Optimization
2179 Write a SRCFILE.opt-record.json file detailing what optimizations were performed.
2181 foptimize-register-move
2182 Common Ignore
2183 Does nothing. Preserved for backward compatibility.
2185 foptimize-sibling-calls
2186 Common Var(flag_optimize_sibling_calls) Optimization
2187 Optimize sibling and tail recursive calls.
2189 fpartial-inlining
2190 Common Var(flag_partial_inlining) Optimization
2191 Perform partial inlining.
2193 fpre-ipa-mem-report
2194 Common Var(pre_ipa_mem_report)
2195 Report on memory allocation before interprocedural optimization.
2197 fpost-ipa-mem-report
2198 Common Var(post_ipa_mem_report)
2199 Report on memory allocation before interprocedural optimization.
2201 fpack-struct
2202 Common Var(flag_pack_struct) Optimization
2203 Pack structure members together without holes.
2205 fpack-struct=
2206 Common RejectNegative Joined UInteger Optimization
2207 -fpack-struct=<number>  Set initial maximum structure member alignment.
2209 fpcc-struct-return
2210 Common Var(flag_pcc_struct_return,1) Init(DEFAULT_PCC_STRUCT_RETURN)
2211 Return small aggregates in memory, not registers.
2213 fpeel-loops
2214 Common Var(flag_peel_loops) Optimization
2215 Perform loop peeling.
2217 fpeephole
2218 Common Var(flag_no_peephole,0) Optimization
2219 Enable machine specific peephole optimizations.
2221 fpeephole2
2222 Common Var(flag_peephole2) Optimization
2223 Enable an RTL peephole pass before sched2.
2225 fPIC
2226 Common Var(flag_pic,2) Negative(fPIE) Init(-1)
2227 Generate position-independent code if possible (large mode).
2229 fPIE
2230 Common Var(flag_pie,2) Negative(fpic) Init(-1)
2231 Generate position-independent code for executables if possible (large mode).
2233 fpic
2234 Common Var(flag_pic,1) Negative(fpie) Init(-1)
2235 Generate position-independent code if possible (small mode).
2237 fpie
2238 Common Var(flag_pie,1) Negative(fPIC) Init(-1)
2239 Generate position-independent code for executables if possible (small mode).
2241 fplt
2242 Common Var(flag_plt) Init(1) Optimization
2243 Use PLT for PIC calls (-fno-plt: load the address from GOT at call site).
2245 fplugin=
2246 Common Joined RejectNegative Var(common_deferred_options) Defer
2247 Specify a plugin to load.
2249 fplugin-arg-
2250 Common Joined RejectNegative Var(common_deferred_options) Defer
2251 -fplugin-arg-<name>-<key>[=<value>]     Specify argument <key>=<value> for plugin <name>.
2253 fpredictive-commoning
2254 Common Var(flag_predictive_commoning) Optimization
2255 Run predictive commoning optimization.
2257 fprefetch-loop-arrays
2258 Common Var(flag_prefetch_loop_arrays) Init(-1) Optimization
2259 Generate prefetch instructions, if available, for arrays in loops.
2261 fprofile
2262 Common Var(profile_flag)
2263 Enable basic program profiling code.
2265 fprofile-abs-path
2266 Common Var(profile_abs_path_flag)
2267 Generate absolute source path names for gcov.
2269 fprofile-arcs
2270 Common Var(profile_arc_flag)
2271 Insert arc-based program profiling code.
2273 fprofile-dir=
2274 Common Joined RejectNegative Var(profile_data_prefix)
2275 Set the top-level directory for storing the profile data.
2276 The default is 'pwd'.
2278 fprofile-note=
2279 Common Joined RejectNegative Var(profile_note_location)
2280 Select the name for storing the profile note file.
2282 fprofile-correction
2283 Common Var(flag_profile_correction)
2284 Enable correction of flow inconsistent profile data input.
2286 fprofile-update=
2287 Common Joined RejectNegative Enum(profile_update) Var(flag_profile_update) Init(PROFILE_UPDATE_SINGLE)
2288 -fprofile-update=[single|atomic|prefer-atomic]  Set the profile update method.
2290 fprofile-filter-files=
2291 Common Joined RejectNegative Var(flag_profile_filter_files)
2292 Instrument only functions from files whose name matches any of the regular expressions (separated by semi-colons).
2294 fprofile-exclude-files=
2295 Common Joined RejectNegative Var(flag_profile_exclude_files)
2296 Instrument only functions from files whose name does not match any of the regular expressions (separated by semi-colons).
2298 Enum
2299 Name(profile_reproducibility) Type(enum profile_reproducibility) UnknownError(unknown profile reproducibility method %qs)
2301 EnumValue
2302 Enum(profile_reproducibility) String(serial) Value(PROFILE_REPRODUCIBILITY_SERIAL)
2304 EnumValue
2305 Enum(profile_reproducibility) String(parallel-runs) Value(PROFILE_REPRODUCIBILITY_PARALLEL_RUNS)
2307 EnumValue
2308 Enum(profile_reproducibility) String(multithreaded) Value(PROFILE_REPRODUCIBILITY_MULTITHREADED)
2310 fprofile-reproducible=
2311 Common Joined RejectNegative Var(flag_profile_reproducible) Enum(profile_reproducibility) Init(PROFILE_REPRODUCIBILITY_SERIAL)
2312 -fprofile-reproducible=[serial|parallel-runs|multithreaded]     Control level of reproducibility of profile gathered by -fprofile-generate.
2314 Enum
2315 Name(profile_update) Type(enum profile_update) UnknownError(unknown profile update method %qs)
2317 EnumValue
2318 Enum(profile_update) String(single) Value(PROFILE_UPDATE_SINGLE)
2320 EnumValue
2321 Enum(profile_update) String(atomic) Value(PROFILE_UPDATE_ATOMIC)
2323 EnumValue
2324 Enum(profile_update) String(prefer-atomic) Value(PROFILE_UPDATE_PREFER_ATOMIC)
2326 fprofile-prefix-path=
2327 Common Joined RejectNegative Var(profile_prefix_path)
2328 Remove prefix from absolute path before mangling name for -fprofile-generate= and -fprofile-use=.
2330 fprofile-generate
2331 Common
2332 Enable common options for generating profile info for profile feedback directed optimizations.
2334 fprofile-generate=
2335 Common Joined RejectNegative
2336 Enable common options for generating profile info for profile feedback directed optimizations, and set -fprofile-dir=.
2338 fprofile-info-section
2339 Common RejectNegative
2340 Register the profile information in the .gcov_info section instead of using a constructor/destructor.
2342 fprofile-info-section=
2343 Common Joined RejectNegative Var(profile_info_section)
2344 Register the profile information in the specified section instead of using a constructor/destructor.
2346 fprofile-partial-training
2347 Common Var(flag_profile_partial_training) Optimization
2348 Do not assume that functions never executed during the train run are cold.
2350 fprofile-use
2351 Common Var(flag_profile_use)
2352 Enable common options for performing profile feedback directed optimizations.
2354 fprofile-use=
2355 Common Joined RejectNegative
2356 Enable common options for performing profile feedback directed optimizations, and set -fprofile-dir=.
2358 fprofile-values
2359 Common Var(flag_profile_values)
2360 Insert code to profile values of expressions.
2362 fprofile-report
2363 Common Var(profile_report)
2364 Report on consistency of profile.
2366 fprofile-reorder-functions
2367 Common Var(flag_profile_reorder_functions) Optimization
2368 Enable function reordering that improves code placement.
2370 fpatchable-function-entry=
2371 Common Var(flag_patchable_function_entry) Joined Optimization
2372 Insert NOP instructions at each function entry.
2374 frandom-seed
2375 Common Var(common_deferred_options) Defer
2377 frandom-seed=
2378 Common Joined RejectNegative Var(common_deferred_options) Defer
2379 -frandom-seed=<string>  Make compile reproducible using <string>.
2381 ; This switch causes the command line that was used to create an
2382 ; object file to be recorded into the object file.  The exact format
2383 ; of this recording is target and binary file format dependent.
2384 ; It is related to the -fverbose-asm switch, but that switch only
2385 ; records information in the assembler output file as comments, so
2386 ; they never reach the object file.
2387 frecord-gcc-switches
2388 Common Var(flag_record_gcc_switches)
2389 Record gcc command line switches in the object file.
2391 freg-struct-return
2392 Common Var(flag_pcc_struct_return,0) Optimization
2393 Return small aggregates in registers.
2395 fregmove
2396 Common Ignore
2397 Does nothing. Preserved for backward compatibility.
2399 flifetime-dse
2400 Common Var(flag_lifetime_dse,2) Init(2) Optimization
2401 Tell DSE that the storage for a C++ object is dead when the constructor
2402 starts and when the destructor finishes.
2404 flifetime-dse=
2405 Common Joined RejectNegative UInteger Var(flag_lifetime_dse) Optimization IntegerRange(0, 2)
2407 flive-patching
2408 Common RejectNegative Alias(flive-patching=,inline-clone) Optimization
2410 flive-patching=
2411 Common Joined RejectNegative Enum(live_patching_level) Var(flag_live_patching) Init(LIVE_PATCHING_NONE) Optimization
2412 -flive-patching=[inline-only-static|inline-clone]       Control IPA
2413 optimizations to provide a safe compilation for live-patching.  At the same
2414 time, provides multiple-level control on the enabled IPA optimizations.
2416 Enum
2417 Name(live_patching_level) Type(enum live_patching_level) UnknownError(unknown Live-Patching Level %qs)
2419 EnumValue
2420 Enum(live_patching_level) String(inline-only-static) Value(LIVE_PATCHING_INLINE_ONLY_STATIC)
2422 EnumValue
2423 Enum(live_patching_level) String(inline-clone) Value(LIVE_PATCHING_INLINE_CLONE)
2425 fallocation-dce
2426 Common Var(flag_allocation_dce) Init(1) Optimization
2427 Tell DCE to remove unused C++ allocations.
2429 flive-range-shrinkage
2430 Common Var(flag_live_range_shrinkage) Init(0) Optimization
2431 Relief of register pressure through live range shrinkage.
2433 frename-registers
2434 Common Var(flag_rename_registers) Optimization EnabledBy(funroll-loops)
2435 Perform a register renaming optimization pass.
2437 fschedule-fusion
2438 Common Var(flag_schedule_fusion) Init(2) Optimization
2439 Perform a target dependent instruction fusion optimization pass.
2441 freorder-blocks
2442 Common Var(flag_reorder_blocks) Optimization
2443 Reorder basic blocks to improve code placement.
2445 freorder-blocks-algorithm=
2446 Common Joined RejectNegative Enum(reorder_blocks_algorithm) Var(flag_reorder_blocks_algorithm) Init(REORDER_BLOCKS_ALGORITHM_SIMPLE) Optimization
2447 -freorder-blocks-algorithm=[simple|stc] Set the used basic block reordering algorithm.
2449 Enum
2450 Name(reorder_blocks_algorithm) Type(enum reorder_blocks_algorithm) UnknownError(unknown basic block reordering algorithm %qs)
2452 EnumValue
2453 Enum(reorder_blocks_algorithm) String(simple) Value(REORDER_BLOCKS_ALGORITHM_SIMPLE)
2455 EnumValue
2456 Enum(reorder_blocks_algorithm) String(stc) Value(REORDER_BLOCKS_ALGORITHM_STC)
2458 freorder-blocks-and-partition
2459 Common Var(flag_reorder_blocks_and_partition) Optimization
2460 Reorder basic blocks and partition into hot and cold sections.
2462 freorder-functions
2463 Common Var(flag_reorder_functions) Optimization
2464 Reorder functions to improve code placement.
2466 frerun-cse-after-loop
2467 Common Var(flag_rerun_cse_after_loop) Optimization
2468 Add a common subexpression elimination pass after loop optimizations.
2470 frerun-loop-opt
2471 Common Ignore
2472 Does nothing.  Preserved for backward compatibility.
2474 frounding-math
2475 Common Var(flag_rounding_math) Optimization SetByCombined
2476 Disable optimizations that assume default FP rounding behavior.
2478 fsched-interblock
2479 Common Var(flag_schedule_interblock) Init(1) Optimization
2480 Enable scheduling across basic blocks.
2482 fsched-pressure
2483 Common Var(flag_sched_pressure) Init(0) Optimization
2484 Enable register pressure sensitive insn scheduling.
2486 fsched-spec
2487 Common Var(flag_schedule_speculative) Init(1) Optimization
2488 Allow speculative motion of non-loads.
2490 fsched-spec-load
2491 Common Var(flag_schedule_speculative_load) Optimization
2492 Allow speculative motion of some loads.
2494 fsched-spec-load-dangerous
2495 Common Var(flag_schedule_speculative_load_dangerous) Optimization
2496 Allow speculative motion of more loads.
2498 fsched-verbose=
2499 Common RejectNegative Joined UInteger Var(sched_verbose_param) Init(1)
2500 -fsched-verbose=<number>        Set the verbosity level of the scheduler.
2502 fsched2-use-superblocks
2503 Common Var(flag_sched2_use_superblocks) Optimization
2504 If scheduling post reload, do superblock scheduling.
2506 fsched2-use-traces
2507 Common Ignore
2508 Does nothing.  Preserved for backward compatibility.
2510 fschedule-insns
2511 Common Var(flag_schedule_insns) Optimization
2512 Reschedule instructions before register allocation.
2514 fschedule-insns2
2515 Common Var(flag_schedule_insns_after_reload) Optimization
2516 Reschedule instructions after register allocation.
2518 ; This flag should be on when a target implements non-trivial
2519 ; scheduling hooks, maybe saving some information for its own sake.
2520 ; On IA64, for example, this is used for correct bundling.
2521 fselective-scheduling
2522 Common Var(flag_selective_scheduling) Optimization
2523 Schedule instructions using selective scheduling algorithm.
2525 fselective-scheduling2
2526 Common Var(flag_selective_scheduling2) Optimization
2527 Run selective scheduling after reload.
2529 fself-test=
2530 Common Undocumented Joined Var(flag_self_test)
2531 Run self-tests, using the given path to locate test files.
2533 fsel-sched-pipelining
2534 Common Var(flag_sel_sched_pipelining) Init(0) Optimization
2535 Perform software pipelining of inner loops during selective scheduling.
2537 fsel-sched-pipelining-outer-loops
2538 Common Var(flag_sel_sched_pipelining_outer_loops) Init(0) Optimization
2539 Perform software pipelining of outer loops during selective scheduling.
2541 fsel-sched-reschedule-pipelined
2542 Common Var(flag_sel_sched_reschedule_pipelined) Init(0) Optimization
2543 Reschedule pipelined regions without pipelining.
2545 fsemantic-interposition
2546 Common Var(flag_semantic_interposition) Init(1) Optimization
2547 Allow interposing function (or variables) by ones with different semantics (or initializer) respectively by dynamic linker.
2549 ; sched_stalled_insns means that insns can be moved prematurely from the queue
2550 ; of stalled insns into the ready list.
2551 fsched-stalled-insns
2552 Common Var(flag_sched_stalled_insns) Optimization UInteger
2553 Allow premature scheduling of queued insns.
2555 fsched-stalled-insns=
2556 Common RejectNegative Joined UInteger Optimization
2557 -fsched-stalled-insns=<number>  Set number of queued insns that can be prematurely scheduled.
2559 ; sched_stalled_insns_dep controls how many recently scheduled cycles will
2560 ; be examined for a dependency on a stalled insn that is candidate for
2561 ; premature removal from the queue of stalled insns into the ready list (has
2562 ; an effect only if the flag 'sched_stalled_insns' is set).
2563 fsched-stalled-insns-dep
2564 Common Var(flag_sched_stalled_insns_dep,1) Init(1) Optimization UInteger
2565 Set dependence distance checking in premature scheduling of queued insns.
2567 fsched-stalled-insns-dep=
2568 Common RejectNegative Joined UInteger Optimization
2569 -fsched-stalled-insns-dep=<number>      Set dependence distance checking in premature scheduling of queued insns.
2571 fsched-group-heuristic
2572 Common Var(flag_sched_group_heuristic) Init(1) Optimization
2573 Enable the group heuristic in the scheduler.
2575 fsched-critical-path-heuristic
2576 Common Var(flag_sched_critical_path_heuristic) Init(1) Optimization
2577 Enable the critical path heuristic in the scheduler.
2579 fsched-spec-insn-heuristic
2580 Common Var(flag_sched_spec_insn_heuristic) Init(1) Optimization
2581 Enable the speculative instruction heuristic in the scheduler.
2583 fsched-rank-heuristic
2584 Common Var(flag_sched_rank_heuristic) Init(1) Optimization
2585 Enable the rank heuristic in the scheduler.
2587 fsched-last-insn-heuristic
2588 Common Var(flag_sched_last_insn_heuristic) Init(1) Optimization
2589 Enable the last instruction heuristic in the scheduler.
2591 fsched-dep-count-heuristic
2592 Common Var(flag_sched_dep_count_heuristic) Init(1) Optimization
2593 Enable the dependent count heuristic in the scheduler.
2595 fsection-anchors
2596 Common Var(flag_section_anchors) Optimization
2597 Access data in the same section from shared anchor points.
2599 fsee
2600 Common Ignore
2601 Does nothing.  Preserved for backward compatibility.
2603 fzee
2604 Common Ignore
2605 Does nothing.  Preserved for backward compatibility.
2607 free
2608 Common Var(flag_ree) Init(0) Optimization
2609 Turn on Redundant Extensions Elimination pass.
2611 fshow-column
2612 Common Var(flag_show_column) Init(1)
2613 Show column numbers in diagnostics, when available.  Default on.
2615 fshrink-wrap
2616 Common Var(flag_shrink_wrap) Optimization
2617 Emit function prologues only before parts of the function that need it,
2618 rather than at the top of the function.
2620 fshrink-wrap-separate
2621 Common Var(flag_shrink_wrap_separate) Init(1) Optimization
2622 Shrink-wrap parts of the prologue and epilogue separately.
2624 fsignaling-nans
2625 Common Var(flag_signaling_nans) Optimization SetByCombined
2626 Disable optimizations observable by IEEE signaling NaNs.
2628 fsigned-zeros
2629 Common Var(flag_signed_zeros) Init(1) Optimization SetByCombined
2630 Disable floating point optimizations that ignore the IEEE signedness of zero.
2632 fsingle-precision-constant
2633 Common Var(flag_single_precision_constant) Optimization
2634 Convert floating point constants to single precision constants.
2636 fsplit-ivs-in-unroller
2637 Common Var(flag_split_ivs_in_unroller) Init(1) Optimization
2638 Split lifetimes of induction variables when loops are unrolled.
2640 fsplit-stack
2641 Common Var(flag_split_stack) Init(-1)
2642 Generate discontiguous stack frames.
2644 fsplit-wide-types
2645 Common Var(flag_split_wide_types) Optimization
2646 Split wide types into independent registers.
2648 fsplit-wide-types-early
2649 Common Var(flag_split_wide_types_early) Optimization
2650 Split wide types into independent registers earlier.
2652 fssa-backprop
2653 Common Var(flag_ssa_backprop) Init(1) Optimization
2654 Enable backward propagation of use properties at the SSA level.
2656 fssa-phiopt
2657 Common Var(flag_ssa_phiopt) Optimization
2658 Optimize conditional patterns using SSA PHI nodes.
2660 fstdarg-opt
2661 Common Var(flag_stdarg_opt) Init(1) Optimization
2662 Optimize amount of stdarg registers saved to stack at start of function.
2664 fvariable-expansion-in-unroller
2665 Common Var(flag_variable_expansion_in_unroller) Optimization
2666 Apply variable expansion when loops are unrolled.
2668 fstack-check=
2669 Common RejectNegative Joined Optimization
2670 -fstack-check=[no|generic|specific]     Insert stack checking code into the program.
2672 fstack-check
2673 Common Alias(fstack-check=, specific, no)
2674 Insert stack checking code into the program.  Same as -fstack-check=specific.
2676 fstack-clash-protection
2677 Common Var(flag_stack_clash_protection) Optimization
2678 Insert code to probe each page of stack space as it is allocated to protect
2679 from stack-clash style attacks.
2681 fstack-limit
2682 Common Var(common_deferred_options) Defer
2684 fstack-limit-register=
2685 Common RejectNegative Joined Var(common_deferred_options) Defer
2686 -fstack-limit-register=<register>       Trap if the stack goes past <register>.
2688 fstack-limit-symbol=
2689 Common RejectNegative Joined Var(common_deferred_options) Defer
2690 -fstack-limit-symbol=<name>     Trap if the stack goes past symbol <name>.
2692 fstack-protector
2693 Common Var(flag_stack_protect, 1) Init(-1) Optimization
2694 Use propolice as a stack protection method.
2696 fstack-protector-all
2697 Common RejectNegative Var(flag_stack_protect, 2) Init(-1) Optimization
2698 Use a stack protection method for every function.
2700 fstack-protector-strong
2701 Common RejectNegative Var(flag_stack_protect, 3) Init(-1) Optimization
2702 Use a smart stack protection method for certain functions.
2704 fstack-protector-explicit
2705 Common RejectNegative Var(flag_stack_protect, 4) Optimization
2706 Use stack protection method only for functions with the stack_protect attribute.
2708 fstack-usage
2709 Common RejectNegative Var(flag_stack_usage)
2710 Output stack usage information on a per-function basis.
2712 fstrength-reduce
2713 Common Ignore
2714 Does nothing.  Preserved for backward compatibility.
2716 ; Nonzero if we should do (language-dependent) alias analysis.
2717 ; Typically, this analysis will assume that expressions of certain
2718 ; types do not alias expressions of certain other types.  Only used
2719 ; if alias analysis (in general) is enabled.
2720 fstrict-aliasing
2721 Common Var(flag_strict_aliasing) Optimization
2722 Assume strict aliasing rules apply.
2724 fstrict-overflow
2725 Common
2726 Treat signed overflow as undefined.  Negated as -fwrapv -fwrapv-pointer.
2728 fsync-libcalls
2729 Common Var(flag_sync_libcalls) Init(1)
2730 Implement __atomic operations via libcalls to legacy __sync functions.
2732 fsyntax-only
2733 Common Var(flag_syntax_only)
2734 Check for syntax errors, then stop.
2736 ftest-coverage
2737 Common Var(flag_test_coverage)
2738 Create data files needed by \"gcov\".
2740 fthread-jumps
2741 Common Var(flag_thread_jumps) Optimization
2742 Perform jump threading optimizations.
2744 ftime-report
2745 Common Var(time_report)
2746 Report the time taken by each compiler pass.
2748 ftime-report-details
2749 Common Var(time_report_details)
2750 Record times taken by sub-phases separately.
2752 ftls-model=
2753 Common Joined RejectNegative Enum(tls_model) Var(flag_tls_default) Init(TLS_MODEL_GLOBAL_DYNAMIC)
2754 -ftls-model=[global-dynamic|local-dynamic|initial-exec|local-exec]      Set the default thread-local storage code generation model.
2756 Enum
2757 Name(tls_model) Type(enum tls_model) UnknownError(unknown TLS model %qs)
2759 EnumValue
2760 Enum(tls_model) String(global-dynamic) Value(TLS_MODEL_GLOBAL_DYNAMIC)
2762 EnumValue
2763 Enum(tls_model) String(local-dynamic) Value(TLS_MODEL_LOCAL_DYNAMIC)
2765 EnumValue
2766 Enum(tls_model) String(initial-exec) Value(TLS_MODEL_INITIAL_EXEC)
2768 EnumValue
2769 Enum(tls_model) String(local-exec) Value(TLS_MODEL_LOCAL_EXEC)
2771 ftoplevel-reorder
2772 Common Var(flag_toplevel_reorder) Init(2) Optimization
2773 Reorder top level functions, variables, and asms.
2775 ftracer
2776 Common Var(flag_tracer) Optimization
2777 Perform superblock formation via tail duplication.
2779 ftrampolines
2780 Common Var(flag_trampolines) Init(0)
2781 For targets that normally need trampolines for nested functions, always
2782 generate them instead of using descriptors.
2784 ; Zero means that floating-point math operations cannot generate a
2785 ; (user-visible) trap.  This is the case, for example, in nonstop
2786 ; IEEE 754 arithmetic.
2787 ftrapping-math
2788 Common Var(flag_trapping_math) Init(1) Optimization SetByCombined
2789 Assume floating-point operations can trap.
2791 ftrapv
2792 Common Var(flag_trapv) Optimization
2793 Trap for signed overflow in addition, subtraction and multiplication.
2795 ftree-ccp
2796 Common Var(flag_tree_ccp) Optimization
2797 Enable SSA-CCP optimization on trees.
2799 ftree-bit-ccp
2800 Common Var(flag_tree_bit_ccp) Optimization
2801 Enable SSA-BIT-CCP optimization on trees.
2803 ftree-store-ccp
2804 Common Ignore
2805 Does nothing.  Preserved for backward compatibility.
2807 ftree-ch
2808 Common Var(flag_tree_ch) Optimization
2809 Enable loop header copying on trees.
2811 ftree-coalesce-inlined-vars
2812 Common Ignore RejectNegative
2813 Does nothing.  Preserved for backward compatibility.
2815 ftree-coalesce-vars
2816 Common Var(flag_tree_coalesce_vars) Optimization
2817 Enable SSA coalescing of user variables.
2819 ftree-copyrename
2820 Common Ignore
2821 Does nothing.  Preserved for backward compatibility.
2823 ftree-copy-prop
2824 Common Var(flag_tree_copy_prop) Optimization
2825 Enable copy propagation on trees.
2827 ftree-store-copy-prop
2828 Common Ignore
2829 Does nothing.  Preserved for backward compatibility.
2831 ftree-cselim
2832 Common Var(flag_tree_cselim) Optimization
2833 Transform condition stores into unconditional ones.
2835 ftree-switch-conversion
2836 Common Var(flag_tree_switch_conversion) Optimization
2837 Perform conversions of switch initializations.
2839 ftree-dce
2840 Common Var(flag_tree_dce) Optimization
2841 Enable SSA dead code elimination optimization on trees.
2843 ftree-dominator-opts
2844 Common Var(flag_tree_dom) Optimization
2845 Enable dominator optimizations.
2847 ftree-tail-merge
2848 Common Var(flag_tree_tail_merge) Optimization
2849 Enable tail merging on trees.
2851 ftree-dse
2852 Common Var(flag_tree_dse) Optimization
2853 Enable dead store elimination.
2855 ftree-forwprop
2856 Common Var(flag_tree_forwprop) Init(1) Optimization
2857 Enable forward propagation on trees.
2859 ftree-fre
2860 Common Var(flag_tree_fre) Optimization
2861 Enable Full Redundancy Elimination (FRE) on trees.
2863 foptimize-strlen
2864 Common Var(flag_optimize_strlen) Optimization
2865 Enable string length optimizations on trees.
2867 fisolate-erroneous-paths-dereference
2868 Common Var(flag_isolate_erroneous_paths_dereference) Optimization
2869 Detect paths that trigger erroneous or undefined behavior due to
2870 dereferencing a null pointer.  Isolate those paths from the main control
2871 flow and turn the statement with erroneous or undefined behavior into a trap.
2873 fisolate-erroneous-paths-attribute
2874 Common Var(flag_isolate_erroneous_paths_attribute) Optimization
2875 Detect paths that trigger erroneous or undefined behavior due to a null value
2876 being used in a way forbidden by a returns_nonnull or nonnull
2877 attribute.  Isolate those paths from the main control flow and turn the
2878 statement with erroneous or undefined behavior into a trap.
2880 ftree-loop-distribution
2881 Common Var(flag_tree_loop_distribution) Optimization
2882 Enable loop distribution on trees.
2884 ftree-loop-distribute-patterns
2885 Common Var(flag_tree_loop_distribute_patterns) Optimization
2886 Enable loop distribution for patterns transformed into a library call.
2888 ftree-loop-im
2889 Common Var(flag_tree_loop_im) Init(1) Optimization
2890 Enable loop invariant motion on trees.
2892 ftree-loop-linear
2893 Common Alias(floop-nest-optimize)
2894 Enable loop nest transforms.  Same as -floop-nest-optimize.
2896 ftree-loop-ivcanon
2897 Common Var(flag_tree_loop_ivcanon) Init(1) Optimization
2898 Create canonical induction variables in loops.
2900 ftree-loop-optimize
2901 Common Var(flag_tree_loop_optimize) Init(1) Optimization
2902 Enable loop optimizations on tree level.
2904 ftree-parallelize-loops=
2905 Common Joined RejectNegative UInteger Var(flag_tree_parallelize_loops) Init(1) Optimization
2906 -ftree-parallelize-loops=<number>       Enable automatic parallelization of loops.
2908 ftree-phiprop
2909 Common Var(flag_tree_phiprop) Init(1) Optimization
2910 Enable hoisting loads from conditional pointers.
2912 ftree-pre
2913 Common Var(flag_tree_pre) Optimization
2914 Enable SSA-PRE optimization on trees.
2916 ftree-partial-pre
2917 Common Var(flag_tree_partial_pre) Optimization
2918 In SSA-PRE optimization on trees, enable partial-partial redundancy elimination.
2920 ftree-pta
2921 Common Var(flag_tree_pta) Optimization
2922 Perform function-local points-to analysis on trees.
2924 ftree-reassoc
2925 Common Var(flag_tree_reassoc) Init(1) Optimization
2926 Enable reassociation on tree level.
2928 ftree-salias
2929 Common Ignore
2930 Does nothing.  Preserved for backward compatibility.
2932 ftree-sink
2933 Common Var(flag_tree_sink) Optimization
2934 Enable SSA code sinking on trees.
2936 ftree-slsr
2937 Common Var(flag_tree_slsr) Optimization
2938 Perform straight-line strength reduction.
2940 ftree-sra
2941 Common Var(flag_tree_sra) Optimization
2942 Perform scalar replacement of aggregates.
2944 ftree-ter
2945 Common Var(flag_tree_ter) Optimization
2946 Replace temporary expressions in the SSA->normal pass.
2948 ftree-lrs
2949 Common Var(flag_tree_live_range_split) Optimization
2950 Perform live range splitting during the SSA->normal pass.
2952 ftree-vrp
2953 Common Var(flag_tree_vrp) Init(0) Optimization
2954 Perform Value Range Propagation on trees.
2956 fsplit-paths
2957 Common Var(flag_split_paths) Init(0) Optimization
2958 Split paths leading to loop backedges.
2960 funconstrained-commons
2961 Common Var(flag_unconstrained_commons) Optimization
2962 Assume common declarations may be overridden with ones with a larger
2963 trailing array.
2965 funit-at-a-time
2966 Common Var(flag_unit_at_a_time) Init(1)
2967 Compile whole compilation unit at a time.
2969 funroll-loops
2970 Common Var(flag_unroll_loops) Optimization EnabledBy(funroll-all-loops)
2971 Perform loop unrolling when iteration count is known.
2973 funroll-all-loops
2974 Common Var(flag_unroll_all_loops) Optimization
2975 Perform loop unrolling for all loops.
2977 funroll-completely-grow-size
2978 Undocumented Var(flag_cunroll_grow_size) Optimization
2979 ; Internal undocumented flag, allow size growth during complete unrolling
2981 ; Nonzero means that loop optimizer may assume that the induction variables
2982 ; that control loops do not overflow and that the loops with nontrivial
2983 ; exit condition are not infinite
2984 funsafe-loop-optimizations
2985 Common Ignore
2986 Does nothing.  Preserved for backward compatibility.
2988 fassociative-math
2989 Common Var(flag_associative_math) SetByCombined Optimization
2990 Allow optimization for floating-point arithmetic which may change the
2991 result of the operation due to rounding.
2993 freciprocal-math
2994 Common Var(flag_reciprocal_math) SetByCombined Optimization
2995 Same as -fassociative-math for expressions which include division.
2997 ; Nonzero means that unsafe floating-point math optimizations are allowed
2998 ; for the sake of speed.  IEEE compliance is not guaranteed, and operations
2999 ; are allowed to assume that their arguments and results are "normal"
3000 ; (e.g., nonnegative for SQRT).
3001 funsafe-math-optimizations
3002 Common Var(flag_unsafe_math_optimizations) Optimization SetByCombined
3003 Allow math optimizations that may violate IEEE or ISO standards.
3005 funswitch-loops
3006 Common Var(flag_unswitch_loops) Optimization
3007 Perform loop unswitching.
3009 fsplit-loops
3010 Common Var(flag_split_loops) Optimization
3011 Perform loop splitting.
3013 fversion-loops-for-strides
3014 Common Var(flag_version_loops_for_strides) Optimization
3015 Version loops based on whether indices have a stride of one.
3017 funwind-tables
3018 Common Var(flag_unwind_tables) Optimization
3019 Just generate unwind tables for exception handling.
3021 fuse-ld=bfd
3022 Common Driver Negative(fuse-ld=gold)
3023 Use the bfd linker instead of the default linker.
3025 fuse-ld=gold
3026 Common Driver Negative(fuse-ld=bfd)
3027 Use the gold linker instead of the default linker.
3029 fuse-ld=lld
3030 Common Driver Negative(fuse-ld=lld)
3031 Use the lld LLVM linker instead of the default linker.
3033 fuse-linker-plugin
3034 Common Undocumented Var(flag_use_linker_plugin)
3036 ; Positive if we should track variables, negative if we should run
3037 ; the var-tracking pass only to discard debug annotations, zero if
3038 ; we're not to run it.
3039 fvar-tracking
3040 Common Var(flag_var_tracking) PerFunction EnabledBy(fvar-tracking-uninit)
3041 Perform variable tracking.
3043 ; Positive if we should track variables at assignments, negative if
3044 ; we should run the var-tracking pass only to discard debug
3045 ; annotations.
3046 fvar-tracking-assignments
3047 Common Var(flag_var_tracking_assignments) PerFunction
3048 Perform variable tracking by annotating assignments.
3050 ; Nonzero if we should toggle flag_var_tracking_assignments after
3051 ; processing options and computing its default.  */
3052 fvar-tracking-assignments-toggle
3053 Common Var(flag_var_tracking_assignments_toggle) PerFunction
3054 Toggle -fvar-tracking-assignments.
3056 ; Positive if we should track uninitialized variables, negative if
3057 ; we should run the var-tracking pass only to discard debug
3058 ; annotations.
3059 fvar-tracking-uninit
3060 Common Var(flag_var_tracking_uninit) PerFunction
3061 Perform variable tracking and also tag variables that are uninitialized.
3063 ; Alias to enable both -ftree-loop-vectorize and -ftree-slp-vectorize.
3064 ftree-vectorize
3065 Common Var(flag_tree_vectorize) Optimization
3066 Enable vectorization on trees.
3068 ftree-vectorizer-verbose=
3069 Common Joined RejectNegative Ignore
3070 Does nothing.  Preserved for backward compatibility.
3072 ftree-loop-vectorize
3073 Common Var(flag_tree_loop_vectorize) Optimization EnabledBy(ftree-vectorize)
3074 Enable loop vectorization on trees.
3076 ftree-slp-vectorize
3077 Common Var(flag_tree_slp_vectorize) Optimization EnabledBy(ftree-vectorize)
3078 Enable basic block vectorization (SLP) on trees.
3080 fvect-cost-model=
3081 Common Joined RejectNegative Enum(vect_cost_model) Var(flag_vect_cost_model) Init(VECT_COST_MODEL_DEFAULT) Optimization
3082 -fvect-cost-model=[unlimited|dynamic|cheap|very-cheap]  Specifies the cost model for vectorization.
3084 fsimd-cost-model=
3085 Common Joined RejectNegative Enum(vect_cost_model) Var(flag_simd_cost_model) Init(VECT_COST_MODEL_UNLIMITED) Optimization
3086 -fsimd-cost-model=[unlimited|dynamic|cheap|very-cheap]  Specifies the vectorization cost model for code marked with a simd directive.
3088 Enum
3089 Name(vect_cost_model) Type(enum vect_cost_model) UnknownError(unknown vectorizer cost model %qs)
3091 EnumValue
3092 Enum(vect_cost_model) String(unlimited) Value(VECT_COST_MODEL_UNLIMITED)
3094 EnumValue
3095 Enum(vect_cost_model) String(dynamic) Value(VECT_COST_MODEL_DYNAMIC)
3097 EnumValue
3098 Enum(vect_cost_model) String(cheap) Value(VECT_COST_MODEL_CHEAP)
3100 EnumValue
3101 Enum(vect_cost_model) String(very-cheap) Value(VECT_COST_MODEL_VERY_CHEAP)
3103 fvect-cost-model
3104 Common Alias(fvect-cost-model=,dynamic,unlimited)
3105 Enables the dynamic vectorizer cost model.  Preserved for backward compatibility.
3107 ftree-vect-loop-version
3108 Common Ignore
3109 Does nothing. Preserved for backward compatibility.
3111 ftree-scev-cprop
3112 Common Var(flag_tree_scev_cprop) Init(1) Optimization
3113 Enable copy propagation of scalar-evolution information.
3115 ftrivial-auto-var-init=
3116 Common Joined RejectNegative Enum(auto_init_type) Var(flag_auto_var_init) Init(AUTO_INIT_UNINITIALIZED) Optimization
3117 -ftrivial-auto-var-init=[uninitialized|pattern|zero]    Add initializations to automatic variables.
3119 Enum
3120 Name(auto_init_type) Type(enum auto_init_type) UnknownError(unrecognized automatic variable initialization type %qs)
3122 EnumValue
3123 Enum(auto_init_type) String(uninitialized) Value(AUTO_INIT_UNINITIALIZED)
3125 EnumValue
3126 Enum(auto_init_type) String(pattern) Value(AUTO_INIT_PATTERN)
3128 EnumValue
3129 Enum(auto_init_type) String(zero) Value(AUTO_INIT_ZERO)
3131 ; -fverbose-asm causes extra commentary information to be produced in
3132 ; the generated assembly code (to make it more readable).  This option
3133 ; is generally only of use to those who actually need to read the
3134 ; generated assembly code (perhaps while debugging the compiler itself).
3135 ; -fno-verbose-asm, the default, causes the extra information
3136 ; to not be added and is useful when comparing two assembler files.
3137 fverbose-asm
3138 Common Var(flag_verbose_asm)
3139 Add extra commentary to assembler output.
3141 fvisibility=
3142 Common Joined RejectNegative Enum(symbol_visibility) Var(default_visibility) Init(VISIBILITY_DEFAULT)
3143 -fvisibility=[default|internal|hidden|protected]        Set the default symbol visibility.
3145 Enum
3146 Name(symbol_visibility) Type(enum symbol_visibility) UnknownError(unrecognized visibility value %qs)
3148 EnumValue
3149 Enum(symbol_visibility) String(default) Value(VISIBILITY_DEFAULT)
3151 EnumValue
3152 Enum(symbol_visibility) String(internal) Value(VISIBILITY_INTERNAL)
3154 EnumValue
3155 Enum(symbol_visibility) String(hidden) Value(VISIBILITY_HIDDEN)
3157 EnumValue
3158 Enum(symbol_visibility) String(protected) Value(VISIBILITY_PROTECTED)
3160 fvtable-verify=
3161 Common Joined RejectNegative Enum(vtv_priority) Var(flag_vtable_verify) Init(VTV_NO_PRIORITY)
3162 Validate vtable pointers before using them.
3164 Enum
3165 Name(vtv_priority) Type(enum vtv_priority) UnknownError(unknown vtable verify initialization priority %qs)
3167 EnumValue
3168 Enum(vtv_priority) String(none) Value(VTV_NO_PRIORITY)
3170 EnumValue
3171 Enum(vtv_priority) String(std) Value(VTV_STANDARD_PRIORITY)
3173 EnumValue
3174 Enum(vtv_priority) String(preinit) Value(VTV_PREINIT_PRIORITY)
3176 fvtv-counts
3177 Common Var(flag_vtv_counts)
3178 Output vtable verification counters.
3180 fvtv-debug
3181 Common Var(flag_vtv_debug)
3182 Output vtable verification pointer sets information.
3184 fvpt
3185 Common Var(flag_value_profile_transformations) Optimization
3186 Use expression value profiles in optimizations.
3188 fweb
3189 Common Var(flag_web) Optimization EnabledBy(funroll-loops)
3190 Construct webs and split unrelated uses of single variable.
3192 ftree-builtin-call-dce
3193 Common Var(flag_tree_builtin_call_dce) Init(0) Optimization
3194 Enable conditional dead code elimination for builtin calls.
3196 fwhole-program
3197 Common Var(flag_whole_program) Init(0)
3198 Perform whole program optimizations.
3200 fwrapv-pointer
3201 Common Var(flag_wrapv_pointer) Optimization
3202 Assume pointer overflow wraps around.
3204 fwrapv
3205 Common Var(flag_wrapv) Optimization
3206 Assume signed arithmetic overflow wraps around.
3208 fzero-initialized-in-bss
3209 Common Var(flag_zero_initialized_in_bss) Init(1)
3210 Put zero initialized data in the bss section.
3212 fzero-call-used-regs=
3213 Common RejectNegative Joined
3214 Clear call-used registers upon function return.
3217 Common Driver RejectNegative JoinedOrMissing
3218 Generate debug information in default format.
3220 gas-loc-support
3221 Common Driver Var(dwarf2out_as_loc_support)
3222 Assume assembler support for (DWARF2+) .loc directives.
3224 gas-locview-support
3225 Common Driver Var(dwarf2out_as_locview_support)
3226 Assume assembler support for view in (DWARF2+) .loc directives.
3228 gcoff
3229 Common Driver WarnRemoved
3230 Does nothing.  Preserved for backward compatibility.
3232 gcoff1
3233 Common Driver WarnRemoved
3234 Does nothing.  Preserved for backward compatibility.
3236 gcoff2
3237 Common Driver WarnRemoved
3238 Does nothing.  Preserved for backward compatibility.
3240 gcoff3
3241 Common Driver WarnRemoved
3242 Does nothing.  Preserved for backward compatibility.
3244 gcolumn-info
3245 Common Driver Var(debug_column_info,1) Init(1)
3246 Record DW_AT_decl_column and DW_AT_call_column in DWARF.
3248 ; The CTF generation process feeds off DWARF dies.  This option implicitly
3249 ; updates the debug_info_level to DINFO_LEVEL_NORMAL.
3250 gctf
3251 Common Driver RejectNegative JoinedOrMissing
3252 Generate CTF debug information at default level.
3254 gbtf
3255 Common Driver RejectNegative JoinedOrMissing
3256 Generate BTF debug information at default level.
3258 gdwarf
3259 Common Driver JoinedOrMissing Negative(gdwarf-)
3260 Generate debug information in default version of DWARF format.
3262 gdwarf-
3263 Common Driver Joined UInteger Var(dwarf_version) Init(5) Negative(gstabs)
3264 Generate debug information in DWARF v2 (or later) format.
3266 gdwarf32
3267 Common Driver Var(dwarf_offset_size,4) Init(4) RejectNegative
3268 Use 32-bit DWARF format when emitting DWARF debug information.
3270 gdwarf64
3271 Common Driver Var(dwarf_offset_size,8) RejectNegative
3272 Use 64-bit DWARF format when emitting DWARF debug information.
3274 ggdb
3275 Common Driver JoinedOrMissing
3276 Generate debug information in default extended format.
3278 ginline-points
3279 Common Driver Var(debug_inline_points)
3280 Generate extended entry point information for inlined functions.
3282 ginternal-reset-location-views
3283 Common Driver Var(debug_internal_reset_location_views) Init(2)
3284 Compute locview reset points based on insn length estimates.
3286 gno-
3287 RejectNegative Joined Undocumented
3288 ; Catch the gno- prefix, so it doesn't backtrack to g<level>.
3290 gno-pubnames
3291 Common Driver Negative(gpubnames) Var(debug_generate_pub_sections, 0) Init(-1)
3292 Don't generate DWARF pubnames and pubtypes sections.
3294 gpubnames
3295 Common Driver Negative(ggnu-pubnames) Var(debug_generate_pub_sections, 1)
3296 Generate DWARF pubnames and pubtypes sections.
3298 ggnu-pubnames
3299 Common Driver Negative(gno-pubnames) Var(debug_generate_pub_sections, 2)
3300 Generate DWARF pubnames and pubtypes sections with GNU extensions.
3302 grecord-gcc-switches
3303 Common Driver Var(dwarf_record_gcc_switches) Init(1)
3304 Record gcc command line switches in DWARF DW_AT_producer.
3306 gsplit-dwarf
3307 Common Driver Var(dwarf_split_debug_info) Init(0)
3308 Generate debug information in separate .dwo files.
3310 gstabs
3311 Common Driver JoinedOrMissing Negative(gstabs+)
3312 Generate debug information in STABS format.
3314 gstabs+
3315 Common Driver JoinedOrMissing Negative(gvms)
3316 Generate debug information in extended STABS format.
3318 gstatement-frontiers
3319 Common Driver Var(debug_nonbind_markers_p) PerFunction
3320 Emit progressive recommended breakpoint locations.
3322 gstrict-dwarf
3323 Common Driver Var(dwarf_strict) Init(0)
3324 Don't emit DWARF additions beyond selected version.
3326 gdescribe-dies
3327 Common Driver Var(flag_describe_dies) Init(0)
3328 Add description attributes to some DWARF DIEs that have no name attribute.
3330 gtoggle
3331 Common Driver Var(flag_gtoggle)
3332 Toggle debug information generation.
3334 gvariable-location-views
3335 Common Driver Var(debug_variable_location_views, 1)
3336 Augment variable location lists with progressive views.
3338 gvariable-location-views=incompat5
3339 Common Driver RejectNegative Var(debug_variable_location_views, -1) Init(2)
3341 gvms
3342 Common Driver JoinedOrMissing Negative(gxcoff)
3343 Generate debug information in VMS format.
3345 gxcoff
3346 Common Driver JoinedOrMissing Negative(gxcoff+)
3347 Generate debug information in XCOFF format.
3349 gxcoff+
3350 Common Driver JoinedOrMissing Negative(gdwarf)
3351 Generate debug information in extended XCOFF format.
3353 Enum
3354 Name(compressed_debug_sections) Type(int)
3356 ; Since -gz= is completely handled in specs, the values aren't used and we
3357 ; assign arbitrary constants.
3358 EnumValue
3359 Enum(compressed_debug_sections) String(none) Value(0)
3361 EnumValue
3362 Enum(compressed_debug_sections) String(zlib) Value(1)
3364 EnumValue
3365 Enum(compressed_debug_sections) String(zlib-gnu) Value(2)
3368 Common Driver
3369 Generate compressed debug sections.
3372 Common Driver RejectNegative Joined Enum(compressed_debug_sections)
3373 -gz=<format>    Generate compressed debug sections in format <format>.
3376 Driver Joined Separate
3378 iplugindir=
3379 Common Joined Var(plugindir_string) Init(0)
3380 -iplugindir=<dir>       Set <dir> to be the default plugin directory.
3382 imultiarch
3383 Common Joined Separate RejectDriver Var(imultiarch) Init(0)
3384 -imultiarch <dir>       Set <dir> to be the multiarch include subdirectory.
3387 Driver Joined Separate
3390 Driver
3392 no-canonical-prefixes
3393 Driver
3395 nodefaultlibs
3396 Driver
3398 nostartfiles
3399 Driver
3401 nolibc
3402 Driver
3404 nostdlib
3405 Driver
3408 Common Driver Joined Separate Var(asm_file_name) MissingArgError(missing filename after %qs)
3409 -o <file>       Place output into <file>.
3412 Common Var(profile_flag)
3413 Enable function profiling.
3415 pass-exit-codes
3416 Driver Var(pass_exit_codes)
3418 pedantic
3419 Common Alias(Wpedantic)
3421 pedantic-errors
3422 Common Var(flag_pedantic_errors)
3423 Like -pedantic but issue them as errors.
3426 Driver
3428 pipe
3429 Driver Var(use_pipes)
3431 print-file-name=
3432 Driver JoinedOrMissing Var(print_file_name)
3434 print-libgcc-file-name
3435 Driver
3437 print-multi-directory
3438 Driver Var(print_multi_directory)
3440 print-multi-lib
3441 Driver Var(print_multi_lib)
3443 print-multi-os-directory
3444 Driver Var(print_multi_os_directory)
3446 print-multiarch
3447 Driver Var(print_multiarch)
3449 print-prog-name=
3450 Driver JoinedOrMissing Var(print_prog_name)
3452 print-search-dirs
3453 Driver Var(print_search_dirs)
3455 print-sysroot
3456 Driver Var(print_sysroot)
3458 print-sysroot-headers-suffix
3459 Driver Var(print_sysroot_headers_suffix)
3461 quiet
3462 Common Var(quiet_flag) RejectDriver
3463 Do not display functions compiled or elapsed time.
3466 Driver
3469 Driver
3471 save-temps
3472 Driver
3474 save-temps=
3475 Driver Joined
3478 Driver
3480 time
3481 Driver Var(report_times)
3483 time=
3484 Driver JoinedOrMissing
3487 Driver Joined Separate
3489 undef
3490 Driver
3491 ; C option, but driver must not handle as "-u ndef".
3494 Common Driver Var(verbose_flag)
3495 Enable verbose output.
3497 version
3498 Common Var(version_flag) RejectDriver
3499 Display the compiler's version.
3502 Common Var(inhibit_warnings)
3503 Suppress warnings.
3505 wrapper
3506 Driver Separate Var(wrapper_string)
3509 Driver Joined Separate
3511 shared
3512 Driver RejectNegative Negative(static-pie)
3513 Create a shared library.
3515 shared-libgcc
3516 Driver
3518 specs
3519 Driver Separate Alias(specs=)
3521 specs=
3522 Driver Joined
3524 static
3525 Driver
3527 static-libgcc
3528 Driver
3530 static-libgfortran
3531 Driver
3532 ; Documented for Fortran, but always accepted by driver.
3534 static-libstdc++
3535 Driver
3537 static-libgo
3538 Driver
3539 ; Documented for Go, but always accepted by driver.
3541 static-libasan
3542 Driver
3544 static-libhwasan
3545 Driver
3547 static-libtsan
3548 Driver
3550 static-liblsan
3551 Driver
3553 static-libubsan
3554 Driver
3556 symbolic
3557 Driver
3559 no-pie
3560 Driver RejectNegative Negative(shared)
3561 Don't create a dynamically linked position independent executable.
3564 Driver RejectNegative Negative(no-pie)
3565 Create a dynamically linked position independent executable.
3567 static-pie
3568 Driver RejectNegative Negative(pie)
3569 Create a static position independent executable.
3572 Driver Joined Separate
3574 fipa-ra
3575 Common Var(flag_ipa_ra) Optimization
3576 Use caller save register across calls if possible.
3578 ; This comment is to ensure we retain the blank line above.