]> gcc.gnu.org Git - gcc.git/blame - gcc/doc/invoke.texi
Daily bump.
[gcc.git] / gcc / doc / invoke.texi
CommitLineData
d0a5eb32 1@c Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4dd57c18 2@c 2000, 2001, 2002 Free Software Foundation, Inc.
74291a4b
MM
3@c This is part of the GCC manual.
4@c For copying conditions, see the file gcc.texi.
5
9d86bffc
JM
6@ignore
7@c man begin COPYRIGHT
8Copyright @copyright{} 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
4dd57c18 91998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
9d86bffc 10
77bd67cb
JM
11Permission is granted to copy, distribute and/or modify this document
12under the terms of the GNU Free Documentation License, Version 1.1 or
13any later version published by the Free Software Foundation; with the
14Invariant Sections being ``GNU General Public License'' and ``Funding
15Free Software'', the Front-Cover texts being (a) (see below), and with
16the Back-Cover Texts being (b) (see below). A copy of the license is
17included in the gfdl(7) man page.
9d86bffc 18
77bd67cb 19(a) The FSF's Front-Cover Text is:
9d86bffc 20
77bd67cb
JM
21 A GNU Manual
22
23(b) The FSF's Back-Cover Text is:
24
25 You have freedom to copy and modify this GNU Manual, like GNU
26 software. Copies published by the Free Software Foundation raise
27 funds for GNU development.
9d86bffc
JM
28@c man end
29@c Set file name and title for the man page.
30@setfilename gcc
31@settitle GNU project C and C++ compiler
32@c man begin SYNOPSIS
630d3d5a
JM
33gcc [@option{-c}|@option{-S}|@option{-E}] [@option{-std=}@var{standard}]
34 [@option{-g}] [@option{-pg}] [@option{-O}@var{level}]
35 [@option{-W}@var{warn}@dots{}] [@option{-pedantic}]
36 [@option{-I}@var{dir}@dots{}] [@option{-L}@var{dir}@dots{}]
37 [@option{-D}@var{macro}[=@var{defn}]@dots{}] [@option{-U}@var{macro}]
38 [@option{-f}@var{option}@dots{}] [@option{-m}@var{machine-option}@dots{}]
39 [@option{-o} @var{outfile}] @var{infile}@dots{}
9d86bffc
JM
40
41Only the most useful options are listed here; see below for the
42remainder. @samp{g++} accepts mostly the same options as @samp{gcc}.
43@c man end
44@c man begin SEEALSO
77bd67cb 45gpl(7), gfdl(7), fsf-funding(7),
9d86bffc
JM
46cpp(1), gcov(1), g77(1), as(1), ld(1), gdb(1), adb(1), dbx(1), sdb(1)
47and the Info entries for @file{gcc}, @file{cpp}, @file{g77}, @file{as},
48@file{ld}, @file{binutils} and @file{gdb}.
49@c man end
2642624b
JM
50@c man begin BUGS
51For instructions on reporting bugs, see
bedc7537 52@w{@uref{http://gcc.gnu.org/bugs.html}}. Use of the @command{gccbug}
2642624b
JM
53script to report bugs is recommended.
54@c man end
55@c man begin AUTHOR
24dbb440
GP
56See the Info entry for @command{gcc}, or
57@w{@uref{http://gcc.gnu.org/onlinedocs/gcc/Contributors.html}},
58for contributors to GCC@.
2642624b 59@c man end
9d86bffc
JM
60@end ignore
61
74291a4b 62@node Invoking GCC
0c2d1a2a
JB
63@chapter GCC Command Options
64@cindex GCC command options
74291a4b 65@cindex command options
0c2d1a2a 66@cindex options, GCC command
74291a4b 67
9d86bffc
JM
68@c man begin DESCRIPTION
69
0c2d1a2a 70When you invoke GCC, it normally does preprocessing, compilation,
74291a4b 71assembly and linking. The ``overall options'' allow you to stop this
630d3d5a 72process at an intermediate stage. For example, the @option{-c} option
74291a4b
MM
73says not to run the linker. Then the output consists of object files
74output by the assembler.
75
76Other options are passed on to one stage of processing. Some options
77control the preprocessor and others the compiler itself. Yet other
78options control the assembler and linker; most of these are not
79documented here, since you rarely need to use any of them.
80
81@cindex C compilation options
0c2d1a2a 82Most of the command line options that you can use with GCC are useful
74291a4b
MM
83for C programs; when an option is only useful with another language
84(usually C++), the explanation says so explicitly. If the description
85for a particular option does not mention a source language, you can use
86that option with all supported languages.
87
88@cindex C++ compilation options
89@xref{Invoking G++,,Compiling C++ Programs}, for a summary of special
90options for compiling C++ programs.
91
92@cindex grouping options
93@cindex options, grouping
bedc7537 94The @command{gcc} program accepts options and file names as operands. Many
b192711e 95options have multi-letter names; therefore multiple single-letter options
630d3d5a 96may @emph{not} be grouped: @option{-dr} is very different from @w{@samp{-d
74291a4b
MM
97-r}}.
98
99@cindex order of options
100@cindex options, order
101You can mix options and other arguments. For the most part, the order
102you use doesn't matter. Order does matter when you use several options
630d3d5a 103of the same kind; for example, if you specify @option{-L} more than once,
74291a4b
MM
104the directories are searched in the order specified.
105
106Many options have long names starting with @samp{-f} or with
630d3d5a
JM
107@samp{-W}---for example, @option{-fforce-mem},
108@option{-fstrength-reduce}, @option{-Wformat} and so on. Most of
74291a4b 109these have both positive and negative forms; the negative form of
630d3d5a 110@option{-ffoo} would be @option{-fno-foo}. This manual documents
74291a4b
MM
111only one of these two forms, whichever one is not the default.
112
9d86bffc
JM
113@c man end
114
cd3bb277
JM
115@xref{Option Index}, for an index to GCC's options.
116
74291a4b
MM
117@menu
118* Option Summary:: Brief list of all options, without explanations.
119* Overall Options:: Controlling the kind of output:
120 an executable, object files, assembler files,
121 or preprocessed source.
122* Invoking G++:: Compiling C++ programs.
123* C Dialect Options:: Controlling the variant of C language compiled.
124* C++ Dialect Options:: Variations on C++.
60de6385 125* Objective-C Dialect Options:: Variations on Objective-C.
764dbbf2 126* Language Independent Options:: Controlling how diagnostics should be
02f52e19 127 formatted.
74291a4b
MM
128* Warning Options:: How picky should the compiler be?
129* Debugging Options:: Symbol tables, measurements, and debugging dumps.
130* Optimize Options:: How much optimization?
131* Preprocessor Options:: Controlling header files and macro definitions.
132 Also, getting dependency information for Make.
133* Assembler Options:: Passing options to the assembler.
134* Link Options:: Specifying libraries and so on.
135* Directory Options:: Where to find header files and libraries.
136 Where to find the compiler executable files.
a743d340 137* Spec Files:: How to pass switches to sub-processes.
0c2d1a2a 138* Target Options:: Running a cross-compiler, or an old version of GCC.
74291a4b
MM
139* Submodel Options:: Specifying minor hardware or convention variations,
140 such as 68010 vs 68020.
141* Code Gen Options:: Specifying conventions for function calls, data layout
142 and register usage.
0c2d1a2a 143* Environment Variables:: Env vars that affect GCC.
74291a4b
MM
144* Running Protoize:: Automatically adding or removing function prototypes.
145@end menu
146
4bc1997b
JM
147@c man begin OPTIONS
148
74291a4b
MM
149@node Option Summary
150@section Option Summary
151
152Here is a summary of all the options, grouped by type. Explanations are
153in the following sections.
154
155@table @emph
156@item Overall Options
157@xref{Overall Options,,Options Controlling the Kind of Output}.
4bc1997b
JM
158@gccoptlist{
159-c -S -E -o @var{file} -pipe -pass-exit-codes -x @var{language} @gol
160-v --target-help --help}
74291a4b
MM
161
162@item C Language Options
163@xref{C Dialect Options,,Options Controlling C Dialect}.
4bc1997b 164@gccoptlist{
b1018de6 165-ansi -std=@var{standard} -aux-info @var{filename} @gol
7d14c755 166-fno-asm -fno-builtin -fno-builtin-@var{function} @gol
4bc1997b
JM
167-fhosted -ffreestanding @gol
168-trigraphs -traditional -traditional-cpp @gol
169-fallow-single-precision -fcond-mismatch @gol
170-fsigned-bitfields -fsigned-char @gol
171-funsigned-bitfields -funsigned-char @gol
172-fwritable-strings -fshort-wchar}
74291a4b
MM
173
174@item C++ Language Options
175@xref{C++ Dialect Options,,Options Controlling C++ Dialect}.
4bc1997b
JM
176@gccoptlist{
177-fno-access-control -fcheck-new -fconserve-space @gol
aa0cc562
JM
178-fno-const-strings -fdollars-in-identifiers @gol
179-fno-elide-constructors @gol
4bc1997b
JM
180-fno-enforce-eh-specs -fexternal-templates @gol
181-falt-external-templates @gol
1dbb6023 182-ffor-scope -fno-for-scope -fno-gnu-keywords @gol
90ecce3e 183-fno-implicit-templates @gol
4bc1997b
JM
184-fno-implicit-inline-templates @gol
185-fno-implement-inlines -fms-extensions @gol
aa0cc562 186-fno-nonansi-builtins -fno-operator-names @gol
4bc1997b 187-fno-optional-diags -fpermissive @gol
aa0cc562 188-frepo -fno-rtti -fstats -ftemplate-depth-@var{n} @gol
90ecce3e 189-fuse-cxa-atexit -fvtable-gc -fno-weak -nostdinc++ @gol
4bc1997b
JM
190-fno-default-inline -Wctor-dtor-privacy @gol
191-Wnon-virtual-dtor -Wreorder @gol
192-Weffc++ -Wno-deprecated @gol
193-Wno-non-template-friend -Wold-style-cast @gol
194-Woverloaded-virtual -Wno-pmf-conversions @gol
195-Wsign-promo -Wsynth}
74291a4b 196
60de6385
SS
197@item Objective-C Language Options
198@xref{Objective-C Dialect Options,,Options Controlling Objective-C Dialect}.
199@gccoptlist{
630d3d5a 200-fconstant-string-class=@var{class-name} @gol
310668e8 201-fgnu-runtime -fnext-runtime -gen-decls @gol
60de6385
SS
202-Wno-protocol -Wselector}
203
764dbbf2
GDR
204@item Language Independent Options
205@xref{Language Independent Options,,Options to Control Diagnostic Messages Formatting}.
4bc1997b
JM
206@gccoptlist{
207-fmessage-length=@var{n} @gol
208-fdiagnostics-show-location=@r{[}once@r{|}every-line@r{]}}
764dbbf2 209
74291a4b
MM
210@item Warning Options
211@xref{Warning Options,,Options to Request or Suppress Warnings}.
4bc1997b
JM
212@gccoptlist{
213-fsyntax-only -pedantic -pedantic-errors @gol
214-w -W -Wall -Waggregate-return @gol
215-Wcast-align -Wcast-qual -Wchar-subscripts -Wcomment @gol
e23bd218
IR
216-Wconversion -Wno-deprecated-declarations @gol
217-Wdisabled-optimization -Wdiv-by-zero -Werror @gol
4bc1997b 218-Wfloat-equal -Wformat -Wformat=2 @gol
feb48bde
JM
219-Wformat-nonliteral -Wformat-security @gol
220-Wimplicit -Wimplicit-int @gol
4bc1997b
JM
221-Wimplicit-function-declaration @gol
222-Werror-implicit-function-declaration @gol
223-Wimport -Winline @gol
224-Wlarger-than-@var{len} -Wlong-long @gol
1f0c3120 225-Wmain -Wmissing-braces -Wmissing-declarations @gol
4bc1997b 226-Wmissing-format-attribute -Wmissing-noreturn @gol
feb48bde 227-Wmultichar -Wno-format-extra-args -Wno-format-y2k @gol
4bc1997b 228-Wno-import -Wpacked -Wpadded @gol
310668e8 229-Wparentheses -Wpointer-arith -Wredundant-decls @gol
4bc1997b
JM
230-Wreturn-type -Wsequence-point -Wshadow @gol
231-Wsign-compare -Wswitch -Wsystem-headers @gol
232-Wtrigraphs -Wundef -Wuninitialized @gol
233-Wunknown-pragmas -Wunreachable-code @gol
234-Wunused -Wunused-function -Wunused-label -Wunused-parameter @gol
235-Wunused-value -Wunused-variable -Wwrite-strings}
74291a4b 236
fe50c0eb 237@item C-only Warning Options
4bc1997b 238@gccoptlist{
310668e8
JM
239-Wbad-function-cast -Wmissing-prototypes -Wnested-externs @gol
240-Wstrict-prototypes -Wtraditional}
fe50c0eb 241
74291a4b
MM
242@item Debugging Options
243@xref{Debugging Options,,Options for Debugging Your Program or GCC}.
4bc1997b 244@gccoptlist{
8456b95a 245-d@var{letters} -dumpspecs -dumpmachine -dumpversion @gol
f70a54cb 246-fdump-unnumbered -fdump-translation-unit@r{[}-@var{n}@r{]} @gol
aee96fe9 247-fdump-class-hierarchy@r{[}-@var{n}@r{]} @gol
22367161
NS
248-fdump-tree-original@r{[}-@var{n}@r{]} -fdump-tree-optimized@r{[}-@var{n}@r{]} @gol
249-fdump-tree-inlined@r{[}-@var{n}@r{]} @gol
e76b4820 250-fmem-report -fpretend-float @gol
1f0c3120 251-fprofile-arcs -ftest-coverage -ftime-report @gol
4bc1997b 252-g -g@var{level} -gcoff -gdwarf -gdwarf-1 -gdwarf-1+ -gdwarf-2 @gol
5f98259a 253-ggdb -gstabs -gstabs+ -gvms -gxcoff -gxcoff+ @gol
4bc1997b 254-p -pg -print-file-name=@var{library} -print-libgcc-file-name @gol
b1018de6 255-print-multi-directory -print-multi-lib @gol
4bc1997b
JM
256-print-prog-name=@var{program} -print-search-dirs -Q @gol
257-save-temps -time}
74291a4b
MM
258
259@item Optimization Options
260@xref{Optimize Options,,Options that Control Optimization}.
4bc1997b
JM
261@gccoptlist{
262-falign-functions=@var{n} -falign-jumps=@var{n} @gol
263-falign-labels=@var{n} -falign-loops=@var{n} @gol
8582c27b 264-fbranch-probabilities -fcaller-saves -fcprop-registers @gol
62d285ff 265-fcse-follow-jumps -fcse-skip-blocks -fdata-sections @gol
4bc1997b
JM
266-fdelayed-branch -fdelete-null-pointer-checks @gol
267-fexpensive-optimizations -ffast-math -ffloat-store @gol
feb48bde
JM
268-fforce-addr -fforce-mem -ffunction-sections @gol
269-fgcse -fgcse-lm -fgcse-sm @gol
4bc1997b 270-finline-functions -finline-limit=@var{n} -fkeep-inline-functions @gol
201556f0
JJ
271-fkeep-static-consts -fmerge-constants -fmerge-all-constants @gol
272-fmove-all-movables -fno-default-inline -fno-defer-pop @gol
feb48bde 273-fno-function-cse -fno-guess-branch-probability @gol
6cfc0341 274-fno-inline -fno-math-errno -fno-peephole -fno-peephole2 @gol
de6c5979 275-funsafe-math-optimizations -fno-trapping-math @gol
4bc1997b 276-fomit-frame-pointer -foptimize-register-move @gol
5d22c1a5
JM
277-foptimize-sibling-calls -fprefetch-loop-arrays @gol
278-freduce-all-givs -fregmove -frename-registers @gol
4bc1997b
JM
279-frerun-cse-after-loop -frerun-loop-opt @gol
280-fschedule-insns -fschedule-insns2 @gol
0b47e4c1 281-fsingle-precision-constant -fssa -fssa-ccp -fssa-dce @gol
4bc1997b 282-fstrength-reduce -fstrict-aliasing -fthread-jumps -ftrapv @gol
86be733d 283-funroll-all-loops -funroll-loops @gol
3af64fd6 284--param @var{name}=@var{value}
4bc1997b 285-O -O0 -O1 -O2 -O3 -Os}
74291a4b
MM
286
287@item Preprocessor Options
288@xref{Preprocessor Options,,Options Controlling the Preprocessor}.
4bc1997b
JM
289@gccoptlist{
290-$ -A@var{question}=@var{answer} -A-@var{question}@r{[}=@var{answer}@r{]} @gol
291-C -dD -dI -dM -dN @gol
292-D@var{macro}@r{[}=@var{defn}@r{]} -E -H @gol
293-idirafter @var{dir} @gol
294-include @var{file} -imacros @var{file} @gol
295-iprefix @var{file} -iwithprefix @var{dir} @gol
bdd42dd9 296-iwithprefixbefore @var{dir} -isystem @var{dir} @gol
4bc1997b 297-M -MM -MF -MG -MP -MQ -MT -nostdinc -P -remap @gol
aee96fe9 298-trigraphs -undef -U@var{macro} -Wp,@var{option}}
74291a4b
MM
299
300@item Assembler Option
301@xref{Assembler Options,,Passing Options to the Assembler}.
4bc1997b 302@gccoptlist{
aee96fe9 303-Wa,@var{option}}
74291a4b
MM
304
305@item Linker Options
306@xref{Link Options,,Options for Linking}.
4bc1997b
JM
307@gccoptlist{
308@var{object-file-name} -l@var{library} @gol
309-nostartfiles -nodefaultlibs -nostdlib @gol
310-s -static -static-libgcc -shared -shared-libgcc -symbolic @gol
aee96fe9 311-Wl,@var{option} -Xlinker @var{option} @gol
4bc1997b 312-u @var{symbol}}
74291a4b
MM
313
314@item Directory Options
315@xref{Directory Options,,Options for Directory Search}.
4bc1997b
JM
316@gccoptlist{
317-B@var{prefix} -I@var{dir} -I- -L@var{dir} -specs=@var{file}}
74291a4b
MM
318
319@item Target Options
320@c I wrote this xref this way to avoid overfull hbox. -- rms
321@xref{Target Options}.
4bc1997b
JM
322@gccoptlist{
323-b @var{machine} -V @var{version}}
74291a4b
MM
324
325@item Machine Dependent Options
326@xref{Submodel Options,,Hardware Models and Configurations}.
5d22c1a5 327
74291a4b 328@emph{M680x0 Options}
4bc1997b
JM
329@gccoptlist{
330-m68000 -m68020 -m68020-40 -m68020-60 -m68030 -m68040 @gol
feb48bde 331-m68060 -mcpu32 -m5200 -m68881 -mbitfield -mc68000 -mc68020 @gol
310668e8
JM
332-mfpa -mnobitfield -mrtd -mshort -msoft-float -mpcrel @gol
333-malign-int -mstrict-align}
74291a4b 334
2856c3e3 335@emph{M68hc1x Options}
4bc1997b
JM
336@gccoptlist{
337-m6811 -m6812 -m68hc11 -m68hc12 @gol
338-mauto-incdec -mshort -msoft-reg-count=@var{count}}
2856c3e3 339
74291a4b 340@emph{VAX Options}
4bc1997b
JM
341@gccoptlist{
342-mg -mgnu -munix}
74291a4b
MM
343
344@emph{SPARC Options}
4bc1997b 345@gccoptlist{
630d3d5a
JM
346-mcpu=@var{cpu-type} @gol
347-mtune=@var{cpu-type} @gol
348-mcmodel=@var{code-model} @gol
4bc1997b
JM
349-m32 -m64 @gol
350-mapp-regs -mbroken-saverestore -mcypress @gol
feb48bde 351-mepilogue -mfaster-structs -mflat @gol
4bc1997b
JM
352-mfpu -mhard-float -mhard-quad-float @gol
353-mimpure-text -mlive-g0 -mno-app-regs @gol
310668e8
JM
354-mno-epilogue -mno-faster-structs -mno-flat -mno-fpu @gol
355-mno-impure-text -mno-stack-bias -mno-unaligned-doubles @gol
4bc1997b
JM
356-msoft-float -msoft-quad-float -msparclite -mstack-bias @gol
357-msupersparc -munaligned-doubles -mv8}
74291a4b
MM
358
359@emph{Convex Options}
4bc1997b
JM
360@gccoptlist{
361-mc1 -mc2 -mc32 -mc34 -mc38 @gol
362-margcount -mnoargcount @gol
363-mlong32 -mlong64 @gol
364-mvolatile-cache -mvolatile-nocache}
74291a4b
MM
365
366@emph{AMD29K Options}
4bc1997b
JM
367@gccoptlist{
368-m29000 -m29050 -mbw -mnbw -mdw -mndw @gol
369-mlarge -mnormal -msmall @gol
370-mkernel-registers -mno-reuse-arg-regs @gol
371-mno-stack-check -mno-storem-bug @gol
372-mreuse-arg-regs -msoft-float -mstack-check @gol
373-mstorem-bug -muser-registers}
74291a4b
MM
374
375@emph{ARM Options}
4bc1997b 376@gccoptlist{
310668e8
JM
377-mapcs-frame -mno-apcs-frame @gol
378-mapcs-26 -mapcs-32 @gol
379-mapcs-stack-check -mno-apcs-stack-check @gol
380-mapcs-float -mno-apcs-float @gol
381-mapcs-reentrant -mno-apcs-reentrant @gol
382-msched-prolog -mno-sched-prolog @gol
383-mlittle-endian -mbig-endian -mwords-little-endian @gol
384-malignment-traps -mno-alignment-traps @gol
385-msoft-float -mhard-float -mfpe @gol
386-mthumb-interwork -mno-thumb-interwork @gol
387-mcpu=@var{name} -march=@var{name} -mfpe=@var{name} @gol
247f8561 388-mstructure-size-boundary=@var{n} @gol
310668e8 389-mbsd -mxopen -mno-symrename @gol
4bc1997b 390-mabort-on-noreturn @gol
310668e8
JM
391-mlong-calls -mno-long-calls @gol
392-msingle-pic-base -mno-single-pic-base @gol
247f8561
PB
393-mpic-register=@var{reg} @gol
394-mnop-fun-dllimport @gol
395-mpoke-function-name @gol
310668e8
JM
396-mthumb -marm @gol
397-mtpcs-frame -mtpcs-leaf-frame @gol
398-mcaller-super-interworking -mcallee-super-interworking }
74291a4b 399
ecff22ab 400@emph{MN10200 Options}
4bc1997b
JM
401@gccoptlist{
402-mrelax}
ecff22ab 403
6d6d0fa0 404@emph{MN10300 Options}
4bc1997b 405@gccoptlist{
c474f76b
AO
406-mmult-bug -mno-mult-bug @gol
407-mam33 -mno-am33 @gol
408-mno-crt0 -mrelax}
6d6d0fa0 409
861bb6c1 410@emph{M32R/D Options}
4bc1997b 411@gccoptlist{
98180123 412-m32rx -m32r -mcode-model=@var{model-type} -msdata=@var{sdata-type} @gol
4bc1997b 413-G @var{num}}
861bb6c1 414
74291a4b 415@emph{M88K Options}
4bc1997b
JM
416@gccoptlist{
417-m88000 -m88100 -m88110 -mbig-pic @gol
418-mcheck-zero-division -mhandle-large-shift @gol
419-midentify-revision -mno-check-zero-division @gol
420-mno-ocs-debug-info -mno-ocs-frame-position @gol
421-mno-optimize-arg-area -mno-serialize-volatile @gol
422-mno-underscores -mocs-debug-info @gol
423-mocs-frame-position -moptimize-arg-area @gol
424-mserialize-volatile -mshort-data-@var{num} -msvr3 @gol
425-msvr4 -mtrap-large-shift -muse-div-instruction @gol
426-mversion-03.00 -mwarn-passed-structs}
74291a4b
MM
427
428@emph{RS/6000 and PowerPC Options}
4bc1997b 429@gccoptlist{
630d3d5a
JM
430-mcpu=@var{cpu-type} @gol
431-mtune=@var{cpu-type} @gol
4bc1997b
JM
432-mpower -mno-power -mpower2 -mno-power2 @gol
433-mpowerpc -mpowerpc64 -mno-powerpc @gol
0ac081f6 434-maltivec -mno-altivec @gol
4bc1997b
JM
435-mpowerpc-gpopt -mno-powerpc-gpopt @gol
436-mpowerpc-gfxopt -mno-powerpc-gfxopt @gol
437-mnew-mnemonics -mold-mnemonics @gol
c50503ac 438-mfull-toc -mminimal-toc -mno-fp-in-toc -mno-sum-in-toc @gol
0a379b7a 439-m64 -m32 -mxl-call -mno-xl-call -mpe @gol
4bc1997b
JM
440-msoft-float -mhard-float -mmultiple -mno-multiple @gol
441-mstring -mno-string -mupdate -mno-update @gol
442-mfused-madd -mno-fused-madd -mbit-align -mno-bit-align @gol
443-mstrict-align -mno-strict-align -mrelocatable @gol
444-mno-relocatable -mrelocatable-lib -mno-relocatable-lib @gol
445-mtoc -mno-toc -mlittle -mlittle-endian -mbig -mbig-endian @gol
9c34dbbf 446-mcall-aix -mcall-sysv -mcall-netbsd @gol
9904592e 447-maix-struct-return -msvr4-struct-return
0ac081f6 448-mabi=altivec @gol
9c34dbbf 449-mprototype -mno-prototype @gol
4bc1997b 450-msim -mmvme -mads -myellowknife -memb -msdata @gol
0a379b7a 451-msdata=@var{opt} -mvxworks -G @var{num} -pthread}
74291a4b
MM
452
453@emph{RT Options}
4bc1997b
JM
454@gccoptlist{
455-mcall-lib-mul -mfp-arg-in-fpregs -mfp-arg-in-gregs @gol
456-mfull-fp-blocks -mhc-struct-return -min-line-mul @gol
457-mminimum-fp-blocks -mnohc-struct-return}
74291a4b
MM
458
459@emph{MIPS Options}
4bc1997b 460@gccoptlist{
7dac2f89
EC
461-mabicalls -march=@var{cpu-type} -mtune=@var{cpu=type} @gol
462-mcpu=@var{cpu-type} -membedded-data -muninit-const-in-rodata @gol
13fac94a
GK
463-membedded-pic -mfp32 -mfp64 -mfused-madd -mno-fused-madd @gol
464-mgas -mgp32 -mgp64 @gol
4bc1997b 465-mgpopt -mhalf-pic -mhard-float -mint64 -mips1 @gol
feb48bde 466-mips2 -mips3 -mips4 -mlong64 -mlong32 -mlong-calls -mmemcpy @gol
4bc1997b 467-mmips-as -mmips-tfile -mno-abicalls @gol
feb48bde
JM
468-mno-embedded-data -mno-uninit-const-in-rodata @gol
469-mno-embedded-pic -mno-gpopt -mno-long-calls @gol
4bc1997b
JM
470-mno-memcpy -mno-mips-tfile -mno-rnames -mno-stats @gol
471-mrnames -msoft-float @gol
472-m4650 -msingle-float -mmad @gol
473-mstats -EL -EB -G @var{num} -nocpp @gol
feb48bde 474-mabi=32 -mabi=n32 -mabi=64 -mabi=eabi @gol
d490e8ad 475-mfix7000 -mno-crt0 -mflush-func=@var{func} -mno-flush-func}
74291a4b 476
14f73b5a 477@emph{i386 and x86-64 Options}
4bc1997b 478@gccoptlist{
965f5423 479-mcpu=@var{cpu-type} -march=@var{cpu-type} -mfpmath=@var{unit} @gol
c93e80a5 480-masm=@var{dialect} -mno-fancy-math-387 @gol
4bc1997b
JM
481-mno-fp-ret-in-387 -msoft-float -msvr3-shlib @gol
482-mno-wide-multiply -mrtd -malign-double @gol
3e18fdf6 483-mpreferred-stack-boundary=@var{num} @gol
965f5423 484-mmmx -msse -msse2 -msse-math -m3dnow @gol
feb48bde
JM
485-mthreads -mno-align-stringops -minline-all-stringops @gol
486-mpush-args -maccumulate-outgoing-args -m128bit-long-double @gol
14f73b5a
JH
487-m96bit-long-double -mregparm=@var{num} -momit-leaf-frame-pointer @gol
488-mno-red-zone@gol
489-m32 -m64}
74291a4b
MM
490
491@emph{HPPA Options}
4bc1997b 492@gccoptlist{
630d3d5a 493-march=@var{architecture-type} @gol
feb48bde
JM
494-mbig-switch -mdisable-fpregs -mdisable-indexing @gol
495-mfast-indirect-calls -mgas -mjump-in-delay @gol
4bc1997b
JM
496-mlong-load-store -mno-big-switch -mno-disable-fpregs @gol
497-mno-disable-indexing -mno-fast-indirect-calls -mno-gas @gol
feb48bde 498-mno-jump-in-delay -mno-long-load-store @gol
4bc1997b 499-mno-portable-runtime -mno-soft-float @gol
feb48bde
JM
500-mno-space-regs -msoft-float -mpa-risc-1-0 @gol
501-mpa-risc-1-1 -mpa-risc-2-0 -mportable-runtime @gol
630d3d5a 502-mschedule=@var{cpu-type} -mspace-regs}
74291a4b
MM
503
504@emph{Intel 960 Options}
4bc1997b 505@gccoptlist{
630d3d5a 506-m@var{cpu-type} -masm-compat -mclean-linkage @gol
4bc1997b
JM
507-mcode-align -mcomplex-addr -mleaf-procedures @gol
508-mic-compat -mic2.0-compat -mic3.0-compat @gol
509-mintel-asm -mno-clean-linkage -mno-code-align @gol
510-mno-complex-addr -mno-leaf-procedures @gol
511-mno-old-align -mno-strict-align -mno-tail-call @gol
512-mnumerics -mold-align -msoft-float -mstrict-align @gol
513-mtail-call}
74291a4b
MM
514
515@emph{DEC Alpha Options}
4bc1997b 516@gccoptlist{
58605ba0 517-mno-fp-regs -msoft-float -malpha-as -mgas @gol
4bc1997b
JM
518-mieee -mieee-with-inexact -mieee-conformant @gol
519-mfp-trap-mode=@var{mode} -mfp-rounding-mode=@var{mode} @gol
520-mtrap-precision=@var{mode} -mbuild-constants @gol
58605ba0
RH
521-mcpu=@var{cpu-type} -mtune=@var{cpu-type} @gol
522-mbwx -mmax -mfix -mcix @gol
523-mfloat-vax -mfloat-ieee @gol
524-mexplicit-relocs -msmall-data -mlarge-data @gol
4bc1997b 525-mmemory-latency=@var{time}}
74291a4b 526
d7c23cdc
DR
527@emph{DEC Alpha/VMS Options}
528@gccoptlist{
529-mvms-return-codes}
530
74291a4b 531@emph{Clipper Options}
4bc1997b
JM
532@gccoptlist{
533-mc300 -mc400}
74291a4b
MM
534
535@emph{H8/300 Options}
4bc1997b 536@gccoptlist{
310668e8 537-mrelax -mh -ms -mint32 -malign-300}
74291a4b
MM
538
539@emph{SH Options}
4bc1997b
JM
540@gccoptlist{
541-m1 -m2 -m3 -m3e @gol
542-m4-nofpu -m4-single-only -m4-single -m4 @gol
fa5322fa
AO
543-m5-64media -m5-64media-nofpu @gol
544-m5-32media -m5-32media-nofpu @gol
545-m5-compact -m5-compact-nofpu @gol
4bc1997b
JM
546-mb -ml -mdalign -mrelax @gol
547-mbigtable -mfmovd -mhitachi -mnomacsave @gol
c474f76b
AO
548-mieee -misize -mpadstruct -mspace @gol
549-mprefergot -musermode}
74291a4b
MM
550
551@emph{System V Options}
4bc1997b 552@gccoptlist{
aee96fe9 553-Qy -Qn -YP,@var{paths} -Ym,@var{dir}}
74291a4b 554
56b2d7a7 555@emph{ARC Options}
4bc1997b
JM
556@gccoptlist{
557-EB -EL @gol
630d3d5a
JM
558-mmangle-cpu -mcpu=@var{cpu} -mtext=@var{text-section} @gol
559-mdata=@var{data-section} -mrodata=@var{readonly-data-section}}
56b2d7a7 560
282a61e6 561@emph{TMS320C3x/C4x Options}
4bc1997b 562@gccoptlist{
310668e8
JM
563-mcpu=@var{cpu} -mbig -msmall -mregparm -mmemparm @gol
564-mfast-fix -mmpyi -mbk -mti -mdp-isr-reload @gol
565-mrpts=@var{count} -mrptb -mdb -mloop-unsigned @gol
566-mparallel-insns -mparallel-mpy -mpreserve-float}
282a61e6 567
f84271d9 568@emph{V850 Options}
4bc1997b 569@gccoptlist{
310668e8
JM
570-mlong-calls -mno-long-calls -mep -mno-ep @gol
571-mprolog-function -mno-prolog-function -mspace @gol
572-mtda=@var{n} -msda=@var{n} -mzda=@var{n} @gol
573-mv850 -mbig-switch}
83575957
ID
574
575@emph{NS32K Options}
4bc1997b 576@gccoptlist{
310668e8 577-m32032 -m32332 -m32532 -m32081 -m32381 @gol
feb48bde 578-mmult-add -mnomult-add -msoft-float -mrtd -mnortd @gol
310668e8
JM
579-mregparam -mnoregparam -msb -mnosb @gol
580-mbitfield -mnobitfield -mhimem -mnohimem}
789a3090 581
052a4b28 582@emph{AVR Options}
4bc1997b 583@gccoptlist{
310668e8
JM
584-mmcu=@var{mcu} -msize -minit-stack=@var{n} -mno-interrupts @gol
585-mcall-prologues -mno-tablejump -mtiny-stack}
052a4b28 586
789a3090 587@emph{MCore Options}
4bc1997b 588@gccoptlist{
feb48bde 589-mhardlit -mno-hardlit -mdiv -mno-div -mrelax-immediates @gol
310668e8
JM
590-mno-relax-immediates -mwide-bitfields -mno-wide-bitfields @gol
591-m4byte-functions -mno-4byte-functions -mcallgraph-data @gol
592-mno-callgraph-data -mslow-bytes -mno-slow-bytes -mno-lsim @gol
593-mlittle-endian -mbig-endian -m210 -m340 -mstack-increment}
f84271d9 594
bcf684c7
HPN
595@emph{MMIX Options}
596@gccoptlist{
597-mlibfuncs -mno-libfuncs -mepsilon -mno-epsilon -mabi=gnu @gol
598-mabi=mmixware -mzero-extend -mknuthdiv -mtoplevel-symbols @gol
a824924d
HPN
599-melf -mbranch-predict -mno-branch-predict -mbase-addresses @gol
600-mno-base-addresses}
bcf684c7 601
df6194d4
JW
602@emph{IA-64 Options}
603@gccoptlist{
310668e8
JM
604-mbig-endian -mlittle-endian -mgnu-as -mgnu-ld -mno-pic @gol
605-mvolatile-asm-stop -mb-step -mregister-names -mno-sdata @gol
606-mconstant-gp -mauto-pic -minline-divide-min-latency @gol
607-minline-divide-max-throughput -mno-dwarf2-asm @gol
630d3d5a 608-mfixed-range=@var{register-range}}
df6194d4 609
5d22c1a5
JM
610@emph{D30V Options}
611@gccoptlist{
612-mextmem -mextmemory -monchip -mno-asm-optimize -masm-optimize @gol
613-mbranch-cost=@var{n} -mcond-exec=@var{n}}
614
91abf72d
HP
615@emph{S/390 and zSeries Options}
616@gccoptlist{
617-mhard-float -msoft-float -mbackchain -mno-backchain @gol
618-msmall-exec -mno-small-exec -mmvcle -mno-mvcle @gol
619-m64 -m31 -mdebug -mno-debug}
620
0b85d816
HPN
621@emph{CRIS Options}
622@gccoptlist{
623-mcpu=@var{cpu} -march=@var{cpu} -mtune=@var{cpu} @gol
624-mmax-stack-frame=@var{n} -melinux-stacksize=@var{n} @gol
625-metrax4 -metrax100 -mpdebug -mcc-init -mno-side-effects @gol
626-mstack-align -mdata-align -mconst-align @gol
627-m32-bit -m16-bit -m8-bit -mno-prologue-epilogue -mno-gotplt @gol
628-melf -maout -melinux -mlinux -sim -sim2}
629
9f85bca7
JM
630@emph{PDP-11 Options}
631@gccoptlist{
632-mfpu -msoft-float -mac0 -mno-ac0 -m40 -m45 -m10 @gol
633-mbcopy -mbcopy-builtin -mint32 -mno-int16 @gol
634-mint16 -mno-int32 -mfloat32 -mno-float64 @gol
635-mfloat64 -mno-float32 -mabshi -mno-abshi @gol
636-mbranch-expensive -mbranch-cheap @gol
637-msplit -mno-split -munix-asm -mdec-asm}
638
69a0611f
GK
639@emph{Xstormy16 Options}
640@gccoptlist{
641-msim}
642
03984308
BW
643@emph{Xtensa Options}
644@gccoptlist{
645-mbig-endian -mlittle-endian @gol
646-mdensity -mno-density @gol
647-mmac16 -mno-mac16 @gol
648-mmul16 -mno-mul16 @gol
649-mmul32 -mno-mul32 @gol
650-mnsa -mno-nsa @gol
651-mminmax -mno-minmax @gol
652-msext -mno-sext @gol
653-mbooleans -mno-booleans @gol
654-mhard-float -msoft-float @gol
655-mfused-madd -mno-fused-madd @gol
656-mserialize-volatile -mno-serialize-volatile @gol
657-mtext-section-literals -mno-text-section-literals @gol
658-mtarget-align -mno-target-align @gol
659-mlongcalls -mno-longcalls}
660
74291a4b
MM
661@item Code Generation Options
662@xref{Code Gen Options,,Options for Code Generation Conventions}.
4bc1997b
JM
663@gccoptlist{
664-fcall-saved-@var{reg} -fcall-used-@var{reg} @gol
6cfc0341 665-ffixed-@var{reg} -fexceptions @gol
5d22c1a5
JM
666-fnon-call-exceptions -funwind-tables @gol
667-fasynchronous-unwind-tables @gol
4bc1997b 668-finhibit-size-directive -finstrument-functions @gol
4bc1997b
JM
669-fno-common -fno-ident -fno-gnu-linker @gol
670-fpcc-struct-return -fpic -fPIC @gol
671-freg-struct-return -fshared-data -fshort-enums @gol
310668e8
JM
672-fshort-double -fvolatile @gol
673-fvolatile-global -fvolatile-static @gol
4bc1997b
JM
674-fverbose-asm -fpack-struct -fstack-check @gol
675-fstack-limit-register=@var{reg} -fstack-limit-symbol=@var{sym} @gol
676-fargument-alias -fargument-noalias @gol
310668e8 677-fargument-noalias-global -fleading-underscore}
74291a4b
MM
678@end table
679
680@menu
681* Overall Options:: Controlling the kind of output:
682 an executable, object files, assembler files,
683 or preprocessed source.
684* C Dialect Options:: Controlling the variant of C language compiled.
685* C++ Dialect Options:: Variations on C++.
60de6385 686* Objective-C Dialect Options:: Variations on Objective-C.
764dbbf2 687* Language Independent Options:: Controlling how diagnostics should be
02f52e19 688 formatted.
74291a4b
MM
689* Warning Options:: How picky should the compiler be?
690* Debugging Options:: Symbol tables, measurements, and debugging dumps.
691* Optimize Options:: How much optimization?
692* Preprocessor Options:: Controlling header files and macro definitions.
693 Also, getting dependency information for Make.
694* Assembler Options:: Passing options to the assembler.
695* Link Options:: Specifying libraries and so on.
696* Directory Options:: Where to find header files and libraries.
697 Where to find the compiler executable files.
a743d340 698* Spec Files:: How to pass switches to sub-processes.
0c2d1a2a 699* Target Options:: Running a cross-compiler, or an old version of GCC.
74291a4b
MM
700@end menu
701
702@node Overall Options
703@section Options Controlling the Kind of Output
704
705Compilation can involve up to four stages: preprocessing, compilation
706proper, assembly and linking, always in that order. The first three
707stages apply to an individual source file, and end by producing an
708object file; linking combines all the object files (those newly
709compiled, and those specified as input) into an executable file.
710
711@cindex file name suffix
712For any given input file, the file name suffix determines what kind of
713compilation is done:
714
2642624b 715@table @gcctabopt
74291a4b
MM
716@item @var{file}.c
717C source code which must be preprocessed.
718
719@item @var{file}.i
720C source code which should not be preprocessed.
721
722@item @var{file}.ii
723C++ source code which should not be preprocessed.
724
725@item @var{file}.m
726Objective-C source code. Note that you must link with the library
727@file{libobjc.a} to make an Objective-C program work.
728
b9265ec1
JM
729@item @var{file}.mi
730Objective-C source code which should not be preprocessed.
731
74291a4b
MM
732@item @var{file}.h
733C header file (not to be compiled or linked).
734
735@item @var{file}.cc
b9265ec1 736@itemx @var{file}.cp
74291a4b
MM
737@itemx @var{file}.cxx
738@itemx @var{file}.cpp
b9265ec1 739@itemx @var{file}.c++
74291a4b
MM
740@itemx @var{file}.C
741C++ source code which must be preprocessed. Note that in @samp{.cxx},
742the last two letters must both be literally @samp{x}. Likewise,
161d7b59 743@samp{.C} refers to a literal capital C@.
74291a4b 744
b9265ec1
JM
745@item @var{file}.f
746@itemx @var{file}.for
747@itemx @var{file}.FOR
748Fortran source code which should not be preprocessed.
749
750@item @var{file}.F
751@itemx @var{file}.fpp
752@itemx @var{file}.FPP
753Fortran source code which must be preprocessed (with the traditional
754preprocessor).
755
756@item @var{file}.r
757Fortran source code which must be preprocessed with a RATFOR
161d7b59 758preprocessor (not included with GCC)@.
b9265ec1
JM
759
760@xref{Overall Options,,Options Controlling the Kind of Output, g77,
761Using and Porting GNU Fortran}, for more details of the handling of
762Fortran input files.
763
764@c FIXME: Descriptions of Java file types.
765@c @var{file}.java
766@c @var{file}.class
767@c @var{file}.zip
768@c @var{file}.jar
769
e23381df
GB
770@item @var{file}.ads
771Ada source code file which contains a library unit declaration (a
772declaration of a package, subprogram, or generic, or a generic
773instantiation), or a library unit renaming declaration (a package,
774generic, or subprogram renaming declaration). Such files are also
775called @dfn{specs}.
776
777@itemx @var{file}.adb
778Ada source code file containing a library unit body (a subprogram or
779package body). Such files are also called @dfn{bodies}.
780
b9265ec1 781@c GCC also knows about some suffixes for languages not yet included:
b9265ec1
JM
782@c Pascal:
783@c @var{file}.p
784@c @var{file}.pas
785
786@item @var{file}.ch
787@itemx @var{file}.chi
788CHILL source code (preprocessed with the traditional preprocessor).
789
74291a4b
MM
790@item @var{file}.s
791Assembler code.
792
793@item @var{file}.S
794Assembler code which must be preprocessed.
795
796@item @var{other}
797An object file to be fed straight into linking.
798Any file name with no recognized suffix is treated this way.
799@end table
800
cd3bb277 801@opindex x
630d3d5a 802You can specify the input language explicitly with the @option{-x} option:
74291a4b 803
2642624b 804@table @gcctabopt
74291a4b
MM
805@item -x @var{language}
806Specify explicitly the @var{language} for the following input files
807(rather than letting the compiler choose a default based on the file
808name suffix). This option applies to all following input files until
630d3d5a 809the next @option{-x} option. Possible values for @var{language} are:
74291a4b 810@example
b9265ec1
JM
811c c-header cpp-output
812c++ c++-cpp-output
813objective-c objc-cpp-output
74291a4b 814assembler assembler-with-cpp
e23381df
GB
815ada
816chill
b9265ec1 817f77 f77-cpp-input ratfor
e23381df 818java
74291a4b
MM
819@end example
820
821@item -x none
822Turn off any specification of a language, so that subsequent files are
630d3d5a 823handled according to their file name suffixes (as they are if @option{-x}
74291a4b 824has not been used at all).
14a774a9
RK
825
826@item -pass-exit-codes
cd3bb277 827@opindex pass-exit-codes
bedc7537 828Normally the @command{gcc} program will exit with the code of 1 if any
14a774a9 829phase of the compiler returns a non-success return code. If you specify
630d3d5a 830@option{-pass-exit-codes}, the @command{gcc} program will instead return with
14a774a9
RK
831numerically highest error produced by any phase that returned an error
832indication.
74291a4b
MM
833@end table
834
835If you only want some of the stages of compilation, you can use
630d3d5a
JM
836@option{-x} (or filename suffixes) to tell @command{gcc} where to start, and
837one of the options @option{-c}, @option{-S}, or @option{-E} to say where
bedc7537
NC
838@command{gcc} is to stop. Note that some combinations (for example,
839@samp{-x cpp-output -E}) instruct @command{gcc} to do nothing at all.
74291a4b 840
2642624b 841@table @gcctabopt
74291a4b 842@item -c
cd3bb277 843@opindex c
74291a4b
MM
844Compile or assemble the source files, but do not link. The linking
845stage simply is not done. The ultimate output is in the form of an
846object file for each source file.
847
848By default, the object file name for a source file is made by replacing
849the suffix @samp{.c}, @samp{.i}, @samp{.s}, etc., with @samp{.o}.
850
851Unrecognized input files, not requiring compilation or assembly, are
852ignored.
853
854@item -S
cd3bb277 855@opindex S
74291a4b
MM
856Stop after the stage of compilation proper; do not assemble. The output
857is in the form of an assembler code file for each non-assembler input
858file specified.
859
860By default, the assembler file name for a source file is made by
861replacing the suffix @samp{.c}, @samp{.i}, etc., with @samp{.s}.
862
863Input files that don't require compilation are ignored.
864
865@item -E
cd3bb277 866@opindex E
74291a4b
MM
867Stop after the preprocessing stage; do not run the compiler proper. The
868output is in the form of preprocessed source code, which is sent to the
869standard output.
870
871Input files which don't require preprocessing are ignored.
872
873@cindex output file option
874@item -o @var{file}
cd3bb277 875@opindex o
74291a4b
MM
876Place output in file @var{file}. This applies regardless to whatever
877sort of output is being produced, whether it be an executable file,
878an object file, an assembler file or preprocessed C code.
879
880Since only one output file can be specified, it does not make sense to
630d3d5a 881use @option{-o} when compiling more than one input file, unless you are
74291a4b
MM
882producing an executable file as output.
883
630d3d5a 884If @option{-o} is not specified, the default is to put an executable file
74291a4b
MM
885in @file{a.out}, the object file for @file{@var{source}.@var{suffix}} in
886@file{@var{source}.o}, its assembler file in @file{@var{source}.s}, and
bd819a4a 887all preprocessed C source on standard output.
74291a4b
MM
888
889@item -v
cd3bb277 890@opindex v
74291a4b
MM
891Print (on standard error output) the commands executed to run the stages
892of compilation. Also print the version number of the compiler driver
893program and of the preprocessor and the compiler proper.
894
895@item -pipe
cd3bb277 896@opindex pipe
74291a4b
MM
897Use pipes rather than temporary files for communication between the
898various stages of compilation. This fails to work on some systems where
899the assembler is unable to read from a pipe; but the GNU assembler has
900no trouble.
844642e6
NC
901
902@item --help
cd3bb277 903@opindex help
844642e6 904Print (on the standard output) a description of the command line options
bedc7537
NC
905understood by @command{gcc}. If the @option{-v} option is also specified
906then @option{--help} will also be passed on to the various processes
907invoked by @command{gcc}, so that they can display the command line options
908they accept. If the @option{-W} option is also specified then command
844642e6
NC
909line options which have no documentation associated with them will also
910be displayed.
10501d8f
CC
911
912@item --target-help
cd3bb277 913@opindex target-help
10501d8f
CC
914Print (on the standard output) a description of target specific command
915line options for each tool.
74291a4b
MM
916@end table
917
918@node Invoking G++
919@section Compiling C++ Programs
920
921@cindex suffixes for C++ source
922@cindex C++ source file suffixes
923C++ source files conventionally use one of the suffixes @samp{.C},
bba975d4 924@samp{.cc}, @samp{.cpp}, @samp{.c++}, @samp{.cp}, or @samp{.cxx};
0c2d1a2a 925preprocessed C++ files use the suffix @samp{.ii}. GCC recognizes
bba975d4
JM
926files with these names and compiles them as C++ programs even if you
927call the compiler the same way as for compiling C programs (usually with
bedc7537 928the name @command{gcc}).
74291a4b
MM
929
930@findex g++
931@findex c++
932However, C++ programs often require class libraries as well as a
933compiler that understands the C++ language---and under some
934circumstances, you might want to compile programs from standard input,
935or otherwise without a suffix that flags them as C++ programs.
bedc7537 936@command{g++} is a program that calls GCC with the default language
e5e809f4 937set to C++, and automatically specifies linking against the C++
bedc7537
NC
938library. On many systems, @command{g++} is also
939installed with the name @command{c++}.
74291a4b 940
bedc7537 941@cindex invoking @command{g++}
74291a4b
MM
942When you compile C++ programs, you may specify many of the same
943command-line options that you use for compiling programs in any
944language; or command-line options meaningful for C and related
945languages; or options that are meaningful only for C++ programs.
946@xref{C Dialect Options,,Options Controlling C Dialect}, for
161d7b59 947explanations of options for languages related to C@.
74291a4b
MM
948@xref{C++ Dialect Options,,Options Controlling C++ Dialect}, for
949explanations of options that are meaningful only for C++ programs.
950
951@node C Dialect Options
952@section Options Controlling C Dialect
953@cindex dialect options
954@cindex language dialect options
955@cindex options, dialect
956
957The following options control the dialect of C (or languages derived
2147b154 958from C, such as C++ and Objective-C) that the compiler accepts:
74291a4b 959
2642624b 960@table @gcctabopt
74291a4b 961@cindex ANSI support
c1030c7c 962@cindex ISO support
74291a4b 963@item -ansi
cd3bb277 964@opindex ansi
c1030c7c 965In C mode, support all ISO C89 programs. In C++ mode,
775afb25 966remove GNU extensions that conflict with ISO C++.
74291a4b 967
c1030c7c 968This turns off certain features of GCC that are incompatible with ISO
aee96fe9 969C89 (when compiling C code), or of standard C++ (when compiling C++ code),
0c2d1a2a 970such as the @code{asm} and @code{typeof} keywords, and
74291a4b
MM
971predefined macros such as @code{unix} and @code{vax} that identify the
972type of system you are using. It also enables the undesirable and
02f52e19 973rarely used ISO trigraph feature. For the C compiler,
0c2d1a2a 974it disables recognition of C++ style @samp{//} comments as well as
775afb25 975the @code{inline} keyword.
74291a4b
MM
976
977The alternate keywords @code{__asm__}, @code{__extension__},
978@code{__inline__} and @code{__typeof__} continue to work despite
630d3d5a 979@option{-ansi}. You would not want to use them in an ISO C program, of
74291a4b 980course, but it is useful to put them in header files that might be included
630d3d5a 981in compilations done with @option{-ansi}. Alternate predefined macros
74291a4b 982such as @code{__unix__} and @code{__vax__} are also available, with or
630d3d5a 983without @option{-ansi}.
74291a4b 984
630d3d5a
JM
985The @option{-ansi} option does not cause non-ISO programs to be
986rejected gratuitously. For that, @option{-pedantic} is required in
987addition to @option{-ansi}. @xref{Warning Options}.
74291a4b 988
630d3d5a 989The macro @code{__STRICT_ANSI__} is predefined when the @option{-ansi}
74291a4b
MM
990option is used. Some header files may notice this macro and refrain
991from declaring certain functions or defining certain macros that the
c1030c7c 992ISO standard doesn't call for; this is to avoid interfering with any
74291a4b
MM
993programs that might use these names for other things.
994
c771326b
JM
995Functions which would normally be built in but do not have semantics
996defined by ISO C (such as @code{alloca} and @code{ffs}) are not built-in
630d3d5a 997functions with @option{-ansi} is used. @xref{Other Builtins,,Other
f0523f02 998built-in functions provided by GCC}, for details of the functions
01702459 999affected.
74291a4b 1000
49419c8f 1001@item -std=
cd3bb277 1002@opindex std
aee96fe9
JM
1003Determine the language standard. This option is currently only
1004supported when compiling C@. A value for this option must be provided;
02f52e19 1005possible values are
3932261a 1006
ee457005 1007@table @samp
aee96fe9
JM
1008@item c89
1009@itemx iso9899:1990
1010ISO C89 (same as @option{-ansi}).
3043b30e
ML
1011
1012@item iso9899:199409
aee96fe9 1013ISO C89 as modified in amendment 1.
3043b30e 1014
49419c8f 1015@item c99
aee96fe9
JM
1016@itemx c9x
1017@itemx iso9899:1999
1018@itemx iso9899:199x
1019ISO C99. Note that this standard is not yet fully supported; see
1020@w{@uref{http://gcc.gnu.org/c99status.html}} for more information. The
1021names @samp{c9x} and @samp{iso9899:199x} are deprecated.
3043b30e
ML
1022
1023@item gnu89
aee96fe9 1024Default, ISO C89 plus GNU extensions (including some C99 features).
3043b30e 1025
49419c8f 1026@item gnu99
7dac2f89 1027@item gnu9x
d15a05b3
EC
1028ISO C99 plus GNU extensions. When ISO C99 is fully implemented in GCC,
1029this will become the default. The name @samp{gnu9x} is deprecated.
49419c8f 1030
ee457005 1031@end table
3043b30e
ML
1032
1033Even when this option is not specified, you can still use some of the
1034features of newer standards in so far as they do not conflict with
1035previous C standards. For example, you may use @code{__restrict__} even
bedc7537 1036when @option{-std=c99} is not specified.
3932261a 1037
5490d604
JM
1038The @option{-std} options specifying some version of ISO C have the same
1039effects as @option{-ansi}, except that features that were not in ISO C89
1040but are in the specified version (for example, @samp{//} comments and
1041the @code{inline} keyword in ISO C99) are not disabled.
1042
c1030c7c
JM
1043@xref{Standards,,Language Standards Supported by GCC}, for details of
1044these standard versions.
1045
b1018de6
AO
1046@item -aux-info @var{filename}
1047@opindex aux-info
1048Output to the given filename prototyped declarations for all functions
1049declared and/or defined in a translation unit, including those in header
161d7b59 1050files. This option is silently ignored in any language other than C@.
b1018de6
AO
1051
1052Besides declarations, the file indicates, in comments, the origin of
1053each declaration (source file and line), whether the declaration was
1054implicit, prototyped or unprototyped (@samp{I}, @samp{N} for new or
1055@samp{O} for old, respectively, in the first character after the line
1056number and the colon), and whether it came from a declaration or a
1057definition (@samp{C} or @samp{F}, respectively, in the following
1058character). In the case of function definitions, a K&R-style list of
1059arguments followed by their declarations is also provided, inside
1060comments, after the declaration.
1061
74291a4b 1062@item -fno-asm
cd3bb277 1063@opindex fno-asm
74291a4b
MM
1064Do not recognize @code{asm}, @code{inline} or @code{typeof} as a
1065keyword, so that code can use these words as identifiers. You can use
1066the keywords @code{__asm__}, @code{__inline__} and @code{__typeof__}
630d3d5a 1067instead. @option{-ansi} implies @option{-fno-asm}.
74291a4b
MM
1068
1069In C++, this switch only affects the @code{typeof} keyword, since
1070@code{asm} and @code{inline} are standard keywords. You may want to
630d3d5a 1071use the @option{-fno-gnu-keywords} flag instead, which has the same
5490d604
JM
1072effect. In C99 mode (@option{-std=c99} or @option{-std=gnu99}), this
1073switch only affects the @code{asm} and @code{typeof} keywords, since
1074@code{inline} is a standard keyword in ISO C99.
74291a4b
MM
1075
1076@item -fno-builtin
7d14c755 1077@itemx -fno-builtin-@var{function} @r{(C and Objective-C only)}
cd3bb277 1078@opindex fno-builtin
c771326b
JM
1079@cindex built-in functions
1080Don't recognize built-in functions that do not begin with
01702459 1081@samp{__builtin_} as prefix. @xref{Other Builtins,,Other built-in
f0523f02 1082functions provided by GCC}, for details of the functions affected,
c771326b 1083including those which are not built-in functions when @option{-ansi} or
5490d604
JM
1084@option{-std} options for strict ISO C conformance are used because they
1085do not have an ISO standard meaning.
74291a4b 1086
c771326b 1087GCC normally generates special code to handle certain built-in functions
74291a4b
MM
1088more efficiently; for instance, calls to @code{alloca} may become single
1089instructions that adjust the stack directly, and calls to @code{memcpy}
1090may become inline copy loops. The resulting code is often both smaller
1091and faster, but since the function calls no longer appear as such, you
1092cannot set a breakpoint on those calls, nor can you change the behavior
1093of the functions by linking with a different library.
1094
630d3d5a 1095In C++, @option{-fno-builtin} is always in effect. The @option{-fbuiltin}
0b1161fc 1096option has no effect. Therefore, in C++, the only way to get the
c771326b 1097optimization benefits of built-in functions is to call the function
0b1161fc 1098using the @samp{__builtin_} prefix. The GNU C++ Standard Library uses
c771326b 1099built-in functions to implement many functions (like
0b1161fc
MM
1100@code{std::strchr}), so that you automatically get efficient code.
1101
7d14c755
JM
1102With the @option{-fno-builtin-@var{function}} option, not available
1103when compiling C++, only the built-in function @var{function} is
1104disabled. @var{function} must not begin with @samp{__builtin_}. If a
1105function is named this is not built-in in this version of GCC, this
1106option is ignored. There is no corresponding
1107@option{-fbuiltin-@var{function}} option; if you wish to enable
1108built-in functions selectively when using @option{-fno-builtin} or
1109@option{-ffreestanding}, you may define macros such as:
1110
1111@smallexample
1112#define abs(n) __builtin_abs ((n))
1113#define strcpy(d, s) __builtin_strcpy ((d), (s))
1114@end smallexample
1115
861bb6c1 1116@item -fhosted
cd3bb277 1117@opindex fhosted
861bb6c1
JL
1118@cindex hosted environment
1119
1120Assert that compilation takes place in a hosted environment. This implies
630d3d5a 1121@option{-fbuiltin}. A hosted environment is one in which the
861bb6c1
JL
1122entire standard library is available, and in which @code{main} has a return
1123type of @code{int}. Examples are nearly everything except a kernel.
630d3d5a 1124This is equivalent to @option{-fno-freestanding}.
861bb6c1
JL
1125
1126@item -ffreestanding
cd3bb277 1127@opindex ffreestanding
861bb6c1
JL
1128@cindex hosted environment
1129
1130Assert that compilation takes place in a freestanding environment. This
630d3d5a 1131implies @option{-fno-builtin}. A freestanding environment
861bb6c1
JL
1132is one in which the standard library may not exist, and program startup may
1133not necessarily be at @code{main}. The most obvious example is an OS kernel.
630d3d5a 1134This is equivalent to @option{-fno-hosted}.
861bb6c1 1135
c1030c7c
JM
1136@xref{Standards,,Language Standards Supported by GCC}, for details of
1137freestanding and hosted environments.
1138
74291a4b 1139@item -trigraphs
cd3bb277 1140@opindex trigraphs
3bce8a01
NB
1141Support ISO C trigraphs. The @option{-ansi} option (and @option{-std}
1142options for strict ISO C conformance) implies @option{-trigraphs}.
74291a4b
MM
1143
1144@cindex traditional C language
1145@cindex C language, traditional
1146@item -traditional
f458d1d5 1147@itemx -traditional-cpp
cd3bb277 1148@opindex traditional-cpp
f458d1d5
ZW
1149@opindex traditional
1150Formerly, these options caused GCC to attempt to emulate a pre-standard
1151C compiler. They are now only supported with the @option{-E} switch.
1152The preprocessor continues to support a pre-standard mode. See the GNU
1153CPP manual for details.
74291a4b
MM
1154
1155@item -fcond-mismatch
cd3bb277 1156@opindex fcond-mismatch
74291a4b 1157Allow conditional expressions with mismatched types in the second and
a7537031
JM
1158third arguments. The value of such an expression is void. This option
1159is not supported for C++.
74291a4b
MM
1160
1161@item -funsigned-char
cd3bb277 1162@opindex funsigned-char
74291a4b
MM
1163Let the type @code{char} be unsigned, like @code{unsigned char}.
1164
1165Each kind of machine has a default for what @code{char} should
1166be. It is either like @code{unsigned char} by default or like
1167@code{signed char} by default.
1168
1169Ideally, a portable program should always use @code{signed char} or
1170@code{unsigned char} when it depends on the signedness of an object.
1171But many programs have been written to use plain @code{char} and
1172expect it to be signed, or expect it to be unsigned, depending on the
1173machines they were written for. This option, and its inverse, let you
1174make such a program work with the opposite default.
1175
1176The type @code{char} is always a distinct type from each of
1177@code{signed char} or @code{unsigned char}, even though its behavior
1178is always just like one of those two.
1179
1180@item -fsigned-char
cd3bb277 1181@opindex fsigned-char
74291a4b
MM
1182Let the type @code{char} be signed, like @code{signed char}.
1183
630d3d5a
JM
1184Note that this is equivalent to @option{-fno-unsigned-char}, which is
1185the negative form of @option{-funsigned-char}. Likewise, the option
1186@option{-fno-signed-char} is equivalent to @option{-funsigned-char}.
74291a4b 1187
74291a4b
MM
1188@item -fsigned-bitfields
1189@itemx -funsigned-bitfields
1190@itemx -fno-signed-bitfields
1191@itemx -fno-unsigned-bitfields
cd3bb277
JM
1192@opindex fsigned-bitfields
1193@opindex funsigned-bitfields
1194@opindex fno-signed-bitfields
1195@opindex fno-unsigned-bitfields
c771326b 1196These options control whether a bit-field is signed or unsigned, when the
74291a4b 1197declaration does not use either @code{signed} or @code{unsigned}. By
c771326b 1198default, such a bit-field is signed, because this is consistent: the
74291a4b
MM
1199basic integer types such as @code{int} are signed types.
1200
74291a4b 1201@item -fwritable-strings
cd3bb277 1202@opindex fwritable-strings
74291a4b
MM
1203Store string constants in the writable data segment and don't uniquize
1204them. This is for compatibility with old programs which assume they can
f458d1d5 1205write into string constants.
74291a4b
MM
1206
1207Writing into string constants is a very bad idea; ``constants'' should
1208be constant.
1209
3e37bef5 1210@item -fshort-wchar
cd3bb277 1211@opindex fshort-wchar
3e37bef5
JM
1212Override the underlying type for @samp{wchar_t} to be @samp{short
1213unsigned int} instead of the default for the target. This option is
161d7b59 1214useful for building programs to run under WINE@.
74291a4b
MM
1215@end table
1216
1217@node C++ Dialect Options
1218@section Options Controlling C++ Dialect
1219
1220@cindex compiler options, C++
1221@cindex C++ options, command line
1222@cindex options, C++
1223This section describes the command-line options that are only meaningful
1224for C++ programs; but you can also use most of the GNU compiler options
1225regardless of what language your program is in. For example, you
1226might compile a file @code{firstClass.C} like this:
1227
1228@example
1dc5fc4b 1229g++ -g -frepo -O -c firstClass.C
74291a4b
MM
1230@end example
1231
1232@noindent
630d3d5a 1233In this example, only @option{-frepo} is an option meant
74291a4b 1234only for C++ programs; you can use the other options with any
161d7b59 1235language supported by GCC@.
74291a4b
MM
1236
1237Here is a list of options that are @emph{only} for compiling C++ programs:
1238
2642624b 1239@table @gcctabopt
74291a4b 1240@item -fno-access-control
cd3bb277 1241@opindex fno-access-control
74291a4b
MM
1242Turn off all access checking. This switch is mainly useful for working
1243around bugs in the access control code.
1244
74291a4b 1245@item -fcheck-new
cd3bb277 1246@opindex fcheck-new
74291a4b
MM
1247Check that the pointer returned by @code{operator new} is non-null
1248before attempting to modify the storage allocated. The current Working
1249Paper requires that @code{operator new} never return a null pointer, so
1250this check is normally unnecessary.
1251
1dc5fc4b
JM
1252An alternative to using this option is to specify that your
1253@code{operator new} does not throw any exceptions; if you declare it
aee96fe9 1254@samp{throw()}, G++ will check the return value. See also @samp{new
1dc5fc4b
JM
1255(nothrow)}.
1256
74291a4b 1257@item -fconserve-space
cd3bb277 1258@opindex fconserve-space
74291a4b
MM
1259Put uninitialized or runtime-initialized global variables into the
1260common segment, as C does. This saves space in the executable at the
1261cost of not diagnosing duplicate definitions. If you compile with this
1262flag and your program mysteriously crashes after @code{main()} has
1263completed, you may have an object that is being destroyed twice because
1264two definitions were merged.
1265
1dc5fc4b
JM
1266This option is no longer useful on most targets, now that support has
1267been added for putting variables into BSS without making them common.
1268
02f52e19 1269@item -fno-const-strings
cd3bb277 1270@opindex fno-const-strings
fcca588c
MM
1271Give string constants type @code{char *} instead of type @code{const
1272char *}. By default, G++ uses type @code{const char *} as required by
630d3d5a 1273the standard. Even if you use @option{-fno-const-strings}, you cannot
fcca588c 1274actually modify the value of a string constant, unless you also use
630d3d5a 1275@option{-fwritable-strings}.
fcca588c
MM
1276
1277This option might be removed in a future release of G++. For maximum
1278portability, you should structure your code so that it works with
1279string constants that have type @code{const char *}.
1280
74291a4b 1281@item -fdollars-in-identifiers
cd3bb277 1282@opindex fdollars-in-identifiers
74291a4b 1283Accept @samp{$} in identifiers. You can also explicitly prohibit use of
630d3d5a 1284@samp{$} with the option @option{-fno-dollars-in-identifiers}. (GNU C allows
eb795509 1285@samp{$} by default on most target systems, but there are a few exceptions.)
74291a4b 1286Traditional C allowed the character @samp{$} to form part of
c1030c7c 1287identifiers. However, ISO C and C++ forbid @samp{$} in identifiers.
74291a4b 1288
1dc5fc4b 1289@item -fno-elide-constructors
cd3bb277 1290@opindex fno-elide-constructors
1dc5fc4b
JM
1291The C++ standard allows an implementation to omit creating a temporary
1292which is only used to initialize another object of the same type.
aee96fe9 1293Specifying this option disables that optimization, and forces G++ to
1dc5fc4b 1294call the copy constructor in all cases.
74291a4b 1295
dd1ba632 1296@item -fno-enforce-eh-specs
cd3bb277 1297@opindex fno-enforce-eh-specs
dd1ba632
JM
1298Don't check for violation of exception specifications at runtime. This
1299option violates the C++ standard, but may be useful for reducing code
1300size in production builds, much like defining @samp{NDEBUG}. The compiler
1301will still optimize based on the exception specifications.
1302
74291a4b 1303@item -fexternal-templates
cd3bb277 1304@opindex fexternal-templates
9c34dbbf
ZW
1305
1306Cause @samp{#pragma interface} and @samp{implementation} to apply to
1307template instantiation; template instances are emitted or not according
74291a4b
MM
1308to the location of the template definition. @xref{Template
1309Instantiation}, for more information.
1310
37f6b6bf
MM
1311This option is deprecated.
1312
74291a4b 1313@item -falt-external-templates
cd3bb277 1314@opindex falt-external-templates
9c34dbbf
ZW
1315Similar to @option{-fexternal-templates}, but template instances are
1316emitted or not according to the place where they are first instantiated.
74291a4b
MM
1317@xref{Template Instantiation}, for more information.
1318
37f6b6bf
MM
1319This option is deprecated.
1320
74291a4b 1321@item -ffor-scope
8c81598d 1322@itemx -fno-for-scope
cd3bb277
JM
1323@opindex ffor-scope
1324@opindex fno-for-scope
695ac33f 1325If @option{-ffor-scope} is specified, the scope of variables declared in
74291a4b 1326a @i{for-init-statement} is limited to the @samp{for} loop itself,
34527c47 1327as specified by the C++ standard.
695ac33f 1328If @option{-fno-for-scope} is specified, the scope of variables declared in
74291a4b 1329a @i{for-init-statement} extends to the end of the enclosing scope,
aee96fe9 1330as was the case in old versions of G++, and other (traditional)
74291a4b
MM
1331implementations of C++.
1332
1333The default if neither flag is given to follow the standard,
1334but to allow and give a warning for old-style code that would
1335otherwise be invalid, or have different behavior.
1336
1337@item -fno-gnu-keywords
cd3bb277 1338@opindex fno-gnu-keywords
9762e8a4 1339Do not recognize @code{typeof} as a keyword, so that code can use this
767094dd 1340word as an identifier. You can use the keyword @code{__typeof__} instead.
630d3d5a 1341@option{-ansi} implies @option{-fno-gnu-keywords}.
74291a4b 1342
1dc5fc4b 1343@item -fno-implicit-templates
cd3bb277 1344@opindex fno-implicit-templates
bba975d4 1345Never emit code for non-inline templates which are instantiated
e979f9e8 1346implicitly (i.e.@: by use); only emit code for explicit instantiations.
bba975d4
JM
1347@xref{Template Instantiation}, for more information.
1348
1349@item -fno-implicit-inline-templates
cd3bb277 1350@opindex fno-implicit-inline-templates
bba975d4
JM
1351Don't emit code for implicit instantiations of inline templates, either.
1352The default is to handle inlines differently so that compiles with and
1353without optimization will need the same set of explicit instantiations.
1dc5fc4b 1354
74291a4b 1355@item -fno-implement-inlines
cd3bb277 1356@opindex fno-implement-inlines
74291a4b
MM
1357To save space, do not emit out-of-line copies of inline functions
1358controlled by @samp{#pragma implementation}. This will cause linker
1359errors if these functions are not inlined everywhere they are called.
1360
631cf95d 1361@item -fms-extensions
cd3bb277 1362@opindex fms-extensions
32fb1fb2
PE
1363Disable pedantic warnings about constructs used in MFC, such as implicit
1364int and getting a pointer to member function via non-standard syntax.
631cf95d 1365
fcca588c 1366@item -fno-nonansi-builtins
cd3bb277 1367@opindex fno-nonansi-builtins
c771326b 1368Disable built-in declarations of functions that are not mandated by
161d7b59 1369ANSI/ISO C@. These include @code{ffs}, @code{alloca}, @code{_exit},
fcca588c
MM
1370@code{index}, @code{bzero}, @code{conjf}, and other related functions.
1371
775afb25 1372@item -fno-operator-names
cd3bb277 1373@opindex fno-operator-names
775afb25 1374Do not treat the operator name keywords @code{and}, @code{bitand},
74291a4b 1375@code{bitor}, @code{compl}, @code{not}, @code{or} and @code{xor} as
775afb25 1376synonyms as keywords.
74291a4b 1377
4f8b4fd9 1378@item -fno-optional-diags
cd3bb277 1379@opindex fno-optional-diags
4f8b4fd9 1380Disable diagnostics that the standard says a compiler does not need to
aee96fe9 1381issue. Currently, the only such diagnostic issued by G++ is the one for
bba975d4 1382a name having multiple meanings within a class.
4f8b4fd9 1383
8c7707b0 1384@item -fpermissive
cd3bb277 1385@opindex fpermissive
8c7707b0 1386Downgrade messages about nonconformant code from errors to warnings. By
aee96fe9 1387default, G++ effectively sets @option{-pedantic-errors} without
630d3d5a 1388@option{-pedantic}; this option reverses that. This behavior and this
161d7b59 1389option are superseded by @option{-pedantic}, which works as it does for GNU C@.
8c7707b0 1390
8c81598d 1391@item -frepo
cd3bb277 1392@opindex frepo
9c34dbbf
ZW
1393Enable automatic template instantiation at link time. This option also
1394implies @option{-fno-implicit-templates}. @xref{Template
1395Instantiation}, for more information.
8c81598d 1396
8c7707b0 1397@item -fno-rtti
cd3bb277 1398@opindex fno-rtti
a7fbfcf9
JM
1399Disable generation of information about every class with virtual
1400functions for use by the C++ runtime type identification features
1401(@samp{dynamic_cast} and @samp{typeid}). If you don't use those parts
1402of the language, you can save some space by using this flag. Note that
1403exception handling uses the same information, but it will generate it as
1404needed.
8c7707b0 1405
fcca588c 1406@item -fstats
cd3bb277 1407@opindex fstats
fcca588c
MM
1408Emit statistics about front-end processing at the end of the compilation.
1409This information is generally only useful to the G++ development team.
1410
1dc5fc4b 1411@item -ftemplate-depth-@var{n}
cd3bb277 1412@opindex ftemplate-depth
1dc5fc4b
JM
1413Set the maximum instantiation depth for template classes to @var{n}.
1414A limit on the template instantiation depth is needed to detect
767094dd 1415endless recursions during template class instantiation. ANSI/ISO C++
1dc5fc4b
JM
1416conforming programs must not rely on a maximum depth greater than 17.
1417
fc693822 1418@item -fuse-cxa-atexit
cd3bb277 1419@opindex fuse-cxa-atexit
fc693822
MM
1420Register destructors for objects with static storage duration with the
1421@code{__cxa_atexit} function rather than the @code{atexit} function.
1422This option is required for fully standards-compliant handling of static
1423destructors, but will only work if your C library supports
1424@code{__cxa_atexit}.
1425
90ecce3e 1426@item -fvtable-gc
cd3bb277 1427@opindex fvtable-gc
90ecce3e
JM
1428Emit special relocations for vtables and virtual function references
1429so that the linker can identify unused virtual functions and zero out
1430vtable slots that refer to them. This is most useful with
630d3d5a 1431@option{-ffunction-sections} and @option{-Wl,--gc-sections}, in order to
90ecce3e 1432also discard the functions themselves.
f5a1b0d2 1433
90ecce3e 1434This optimization requires GNU as and GNU ld. Not all systems support
630d3d5a 1435this option. @option{-Wl,--gc-sections} is ignored without @option{-static}.
861bb6c1 1436
02f52e19 1437@item -fno-weak
cd3bb277 1438@opindex fno-weak
90ecce3e 1439Do not use weak symbol support, even if it is provided by the linker.
fcca588c
MM
1440By default, G++ will use weak symbols if they are available. This
1441option exists only for testing, and should not be used by end-users;
1442it will result in inferior code and has no benefits. This option may
1443be removed in a future release of G++.
1444
74291a4b 1445@item -nostdinc++
cd3bb277 1446@opindex nostdinc++
74291a4b
MM
1447Do not search for header files in the standard directories specific to
1448C++, but do still search the other standard directories. (This option
e5e809f4 1449is used when building the C++ library.)
74291a4b
MM
1450@end table
1451
1452In addition, these optimization, warning, and code generation options
1453have meanings only for C++ programs:
1454
2642624b 1455@table @gcctabopt
74291a4b 1456@item -fno-default-inline
cd3bb277 1457@opindex fno-default-inline
74291a4b 1458Do not assume @samp{inline} for functions defined inside a class scope.
1dc5fc4b
JM
1459@xref{Optimize Options,,Options That Control Optimization}. Note that these
1460functions will have linkage like inline functions; they just won't be
1461inlined by default.
74291a4b 1462
aee96fe9 1463@item -Wctor-dtor-privacy @r{(C++ only)}
cd3bb277 1464@opindex Wctor-dtor-privacy
bba975d4
JM
1465Warn when a class seems unusable, because all the constructors or
1466destructors in a class are private and the class has no friends or
1467public static member functions.
1468
aee96fe9 1469@item -Wnon-virtual-dtor @r{(C++ only)}
cd3bb277 1470@opindex Wnon-virtual-dtor
bba975d4
JM
1471Warn when a class declares a non-virtual destructor that should probably
1472be virtual, because it looks like the class will be used polymorphically.
1473
aee96fe9 1474@item -Wreorder @r{(C++ only)}
cd3bb277 1475@opindex Wreorder
bba975d4
JM
1476@cindex reordering, warning
1477@cindex warning for reordering of member initializers
1478Warn when the order of member initializers given in the code does not
1479match the order in which they must be executed. For instance:
1480
1481@smallexample
1482struct A @{
1483 int i;
1484 int j;
1485 A(): j (0), i (1) @{ @}
1486@};
1487@end smallexample
1488
1489Here the compiler will warn that the member initializers for @samp{i}
1490and @samp{j} will be rearranged to match the declaration order of the
1491members.
1492@end table
1493
630d3d5a 1494The following @option{-W@dots{}} options are not affected by @option{-Wall}.
bba975d4 1495
2642624b 1496@table @gcctabopt
aee96fe9 1497@item -Weffc++ @r{(C++ only)}
cd3bb277 1498@opindex Weffc++
77f6c1eb
RS
1499Warn about violations of the following style guidelines from Scott Meyers'
1500@cite{Effective C++} book:
1501
1502@itemize @bullet
1503@item
1504Item 11: Define a copy constructor and an assignment operator for classes
1505with dynamically allocated memory.
1506
1507@item
1508Item 12: Prefer initialization to assignment in constructors.
1509
1510@item
1511Item 14: Make destructors virtual in base classes.
1512
1513@item
1514Item 15: Have @code{operator=} return a reference to @code{*this}.
1515
1516@item
1517Item 23: Don't try to return a reference when you must return an object.
1518
1519@end itemize
1520
1521and about violations of the following style guidelines from Scott Meyers'
1522@cite{More Effective C++} book:
1523
1524@itemize @bullet
1525@item
1526Item 6: Distinguish between prefix and postfix forms of increment and
1527decrement operators.
1528
1529@item
1530Item 7: Never overload @code{&&}, @code{||}, or @code{,}.
1531
1532@end itemize
1533
1534If you use this option, you should be aware that the standard library
1535headers do not obey all of these guidelines; you can use @samp{grep -v}
1536to filter out those warnings.
bba975d4 1537
aee96fe9 1538@item -Wno-deprecated @r{(C++ only)}
cd3bb277 1539@opindex Wno-deprecated
767094dd 1540Do not warn about usage of deprecated features. @xref{Deprecated Features}.
2de45c06 1541
aee96fe9 1542@item -Wno-non-template-friend @r{(C++ only)}
cd3bb277 1543@opindex Wno-non-template-friend
bba975d4 1544Disable warnings when non-templatized friend functions are declared
767094dd 1545within a template. With the advent of explicit template specification
aee96fe9 1546support in G++, if the name of the friend is an unqualified-id (i.e.,
bba975d4 1547@samp{friend foo(int)}), the C++ language specification demands that the
767094dd 1548friend declare or define an ordinary, nontemplate function. (Section
aee96fe9 154914.5.3). Before G++ implemented explicit specification, unqualified-ids
bba975d4 1550could be interpreted as a particular specialization of a templatized
767094dd 1551function. Because this non-conforming behavior is no longer the default
aee96fe9 1552behavior for G++, @option{-Wnon-template-friend} allows the compiler to
bba975d4 1553check existing code for potential trouble spots, and is on by default.
2228d450 1554This new compiler behavior can be turned off with
630d3d5a 1555@option{-Wno-non-template-friend} which keeps the conformant compiler code
2228d450 1556but disables the helpful warning.
bba975d4 1557
aee96fe9 1558@item -Wold-style-cast @r{(C++ only)}
cd3bb277 1559@opindex Wold-style-cast
323728aa
NS
1560Warn if an old-style (C-style) cast to a non-void type is used within
1561a C++ program. The new-style casts (@samp{static_cast},
1562@samp{reinterpret_cast}, and @samp{const_cast}) are less vulnerable to
1563unintended effects, and much easier to grep for.
bba975d4 1564
aee96fe9 1565@item -Woverloaded-virtual @r{(C++ only)}
cd3bb277 1566@opindex Woverloaded-virtual
bba975d4
JM
1567@cindex overloaded virtual fn, warning
1568@cindex warning for overloaded virtual fn
3747f3dc
MM
1569Warn when a function declaration hides virtual functions from a
1570base class. For example, in:
1571
1572@smallexample
1573struct A @{
1574 virtual void f();
1575@};
1576
1577struct B: public A @{
1578 void f(int);
1579@};
1580@end smallexample
1581
1582the @code{A} class version of @code{f} is hidden in @code{B}, and code
1583like this:
1584
1585@smallexample
1586B* b;
1587b->f();
1588@end smallexample
1589
1590will fail to compile.
bba975d4 1591
aee96fe9 1592@item -Wno-pmf-conversions @r{(C++ only)}
cd3bb277 1593@opindex Wno-pmf-conversions
bba975d4
JM
1594Disable the diagnostic for converting a bound pointer to member function
1595to a plain pointer.
1596
aee96fe9 1597@item -Wsign-promo @r{(C++ only)}
cd3bb277 1598@opindex Wsign-promo
bba975d4
JM
1599Warn when overload resolution chooses a promotion from unsigned or
1600enumeral type to a signed type over a conversion to an unsigned type of
aee96fe9 1601the same size. Previous versions of G++ would try to preserve
bba975d4
JM
1602unsignedness, but the standard mandates the current behavior.
1603
aee96fe9 1604@item -Wsynth @r{(C++ only)}
cd3bb277 1605@opindex Wsynth
bba975d4
JM
1606@cindex warning for synthesized methods
1607@cindex synthesized methods, warning
aee96fe9 1608Warn when G++'s synthesis behavior does not match that of cfront. For
bba975d4
JM
1609instance:
1610
1611@smallexample
1612struct A @{
1613 operator int ();
1614 A& operator = (int);
1615@};
1616
1617main ()
1618@{
1619 A a,b;
1620 a = b;
1621@}
1622@end smallexample
74291a4b 1623
aee96fe9 1624In this example, G++ will synthesize a default @samp{A& operator =
bba975d4 1625(const A&);}, while cfront will use the user-defined @samp{operator =}.
74291a4b
MM
1626@end table
1627
60de6385
SS
1628@node Objective-C Dialect Options
1629@section Options Controlling Objective-C Dialect
1630
1631@cindex compiler options, Objective-C
1632@cindex Objective-C options, command line
1633@cindex options, Objective-C
1634This section describes the command-line options that are only meaningful
1635for Objective-C programs; but you can also use most of the GNU compiler
1636options regardless of what language your program is in. For example,
1637you might compile a file @code{some_class.m} like this:
1638
1639@example
1640gcc -g -fgnu-runtime -O -c some_class.m
1641@end example
1642
1643@noindent
630d3d5a 1644In this example, only @option{-fgnu-runtime} is an option meant only for
60de6385 1645Objective-C programs; you can use the other options with any language
161d7b59 1646supported by GCC@.
60de6385
SS
1647
1648Here is a list of options that are @emph{only} for compiling Objective-C
1649programs:
1650
1651@table @gcctabopt
630d3d5a 1652@item -fconstant-string-class=@var{class-name}
cd3bb277 1653@opindex fconstant-string-class
630d3d5a 1654Use @var{class-name} as the name of the class to instantiate for each
695ac33f 1655literal string specified with the syntax @code{@@"@dots{}"}. The default
60de6385
SS
1656class name is @code{NXConstantString}.
1657
1658@item -fgnu-runtime
cd3bb277 1659@opindex fgnu-runtime
60de6385
SS
1660Generate object code compatible with the standard GNU Objective-C
1661runtime. This is the default for most types of systems.
1662
1663@item -fnext-runtime
cd3bb277 1664@opindex fnext-runtime
60de6385 1665Generate output compatible with the NeXT runtime. This is the default
161d7b59 1666for NeXT-based systems, including Darwin and Mac OS X@.
60de6385
SS
1667
1668@item -gen-decls
cd3bb277 1669@opindex gen-decls
60de6385
SS
1670Dump interface declarations for all classes seen in the source file to a
1671file named @file{@var{sourcename}.decl}.
1672
1673@item -Wno-protocol
cd3bb277 1674@opindex Wno-protocol
60de6385
SS
1675Do not warn if methods required by a protocol are not implemented
1676in the class adopting it.
1677
1678@item -Wselector
cd3bb277 1679@opindex Wselector
60de6385
SS
1680Warn if a selector has multiple methods of different types defined.
1681
1682@c not documented because only avail via -Wp
1683@c @item -print-objc-runtime-info
1684
1685@end table
1686
764dbbf2
GDR
1687@node Language Independent Options
1688@section Options to Control Diagnostic Messages Formatting
1689@cindex options to control diagnostics formatting
1690@cindex diagnostic messages
1691@cindex message formatting
1692
b192711e 1693Traditionally, diagnostic messages have been formatted irrespective of
e979f9e8 1694the output device's aspect (e.g.@: its width, @dots{}). The options described
764dbbf2 1695below can be used to control the diagnostic messages formatting
e979f9e8 1696algorithm, e.g.@: how many characters per line, how often source location
6c0a4eab 1697information should be reported. Right now, only the C++ front end can
764dbbf2 1698honor these options. However it is expected, in the near future, that
6c0a4eab 1699the remaining front ends would be able to digest them correctly.
764dbbf2 1700
2642624b 1701@table @gcctabopt
764dbbf2 1702@item -fmessage-length=@var{n}
cd3bb277 1703@opindex fmessage-length
764dbbf2 1704Try to format error messages so that they fit on lines of about @var{n}
aee96fe9 1705characters. The default is 72 characters for @command{g++} and 0 for the rest of
161d7b59 1706the front ends supported by GCC@. If @var{n} is zero, then no
02f52e19 1707line-wrapping will be done; each error message will appear on a single
764dbbf2
GDR
1708line.
1709
cd3bb277 1710@opindex fdiagnostics-show-location
764dbbf2 1711@item -fdiagnostics-show-location=once
b192711e 1712Only meaningful in line-wrapping mode. Instructs the diagnostic messages
764dbbf2
GDR
1713reporter to emit @emph{once} source location information; that is, in
1714case the message is too long to fit on a single physical line and has to
1715be wrapped, the source location won't be emitted (as prefix) again,
1716over and over, in subsequent continuation lines. This is the default
c21cd8b1 1717behavior.
764dbbf2
GDR
1718
1719@item -fdiagnostics-show-location=every-line
1720Only meaningful in line-wrapping mode. Instructs the diagnostic
1721messages reporter to emit the same source location information (as
4fe9b91c 1722prefix) for physical lines that result from the process of breaking
b192711e 1723a message which is too long to fit on a single line.
764dbbf2
GDR
1724
1725@end table
1726
74291a4b
MM
1727@node Warning Options
1728@section Options to Request or Suppress Warnings
1729@cindex options to control warnings
1730@cindex warning messages
1731@cindex messages, warning
1732@cindex suppressing warnings
1733
1734Warnings are diagnostic messages that report constructions which
1735are not inherently erroneous but which are risky or suggest there
1736may have been an error.
1737
1738You can request many specific warnings with options beginning @samp{-W},
630d3d5a 1739for example @option{-Wimplicit} to request warnings on implicit
74291a4b
MM
1740declarations. Each of these specific warning options also has a
1741negative form beginning @samp{-Wno-} to turn off warnings;
630d3d5a 1742for example, @option{-Wno-implicit}. This manual lists only one of the
74291a4b
MM
1743two forms, whichever is not the default.
1744
0c2d1a2a 1745These options control the amount and kinds of warnings produced by GCC:
74291a4b 1746
2642624b 1747@table @gcctabopt
74291a4b
MM
1748@cindex syntax checking
1749@item -fsyntax-only
cd3bb277 1750@opindex fsyntax-only
74291a4b
MM
1751Check the code for syntax errors, but don't do anything beyond that.
1752
1753@item -pedantic
cd3bb277 1754@opindex pedantic
074e95e3
JM
1755Issue all the warnings demanded by strict ISO C and ISO C++;
1756reject all programs that use forbidden extensions, and some other
1757programs that do not follow ISO C and ISO C++. For ISO C, follows the
630d3d5a 1758version of the ISO C standard specified by any @option{-std} option used.
74291a4b 1759
074e95e3 1760Valid ISO C and ISO C++ programs should compile properly with or without
5490d604 1761this option (though a rare few will require @option{-ansi} or a
161d7b59 1762@option{-std} option specifying the required version of ISO C)@. However,
b1d16193
JL
1763without this option, certain GNU extensions and traditional C and C++
1764features are supported as well. With this option, they are rejected.
74291a4b 1765
630d3d5a 1766@option{-pedantic} does not cause warning messages for use of the
74291a4b
MM
1767alternate keywords whose names begin and end with @samp{__}. Pedantic
1768warnings are also disabled in the expression that follows
1769@code{__extension__}. However, only system header files should use
1770these escape routes; application programs should avoid them.
1771@xref{Alternate Keywords}.
1772
630d3d5a 1773Some users try to use @option{-pedantic} to check programs for strict ISO
74291a4b 1774C conformance. They soon find that it does not do quite what they want:
c1030c7c 1775it finds some non-ISO practices, but not all---only those for which
074e95e3
JM
1776ISO C @emph{requires} a diagnostic, and some others for which
1777diagnostics have been added.
74291a4b 1778
074e95e3 1779A feature to report any failure to conform to ISO C might be useful in
74291a4b 1780some instances, but would require considerable additional work and would
630d3d5a 1781be quite different from @option{-pedantic}. We don't have plans to
892d0a6d 1782support such a feature in the near future.
74291a4b 1783
91ea548a
JM
1784Where the standard specified with @option{-std} represents a GNU
1785extended dialect of C, such as @samp{gnu89} or @samp{gnu99}, there is a
1786corresponding @dfn{base standard}, the version of ISO C on which the GNU
1787extended dialect is based. Warnings from @option{-pedantic} are given
1788where they are required by the base standard. (It would not make sense
1789for such warnings to be given only for features not in the specified GNU
1790C dialect, since by definition the GNU dialects of C include all
1791features the compiler supports with the given option, and there would be
1792nothing to warn about.)
1793
74291a4b 1794@item -pedantic-errors
cd3bb277 1795@opindex pedantic-errors
630d3d5a 1796Like @option{-pedantic}, except that errors are produced rather than
74291a4b
MM
1797warnings.
1798
1799@item -w
cd3bb277 1800@opindex w
74291a4b
MM
1801Inhibit all warning messages.
1802
1803@item -Wno-import
cd3bb277 1804@opindex Wno-import
74291a4b
MM
1805Inhibit warning messages about the use of @samp{#import}.
1806
1807@item -Wchar-subscripts
cd3bb277 1808@opindex Wchar-subscripts
74291a4b
MM
1809Warn if an array subscript has type @code{char}. This is a common cause
1810of error, as programmers often forget that this type is signed on some
1811machines.
1812
1813@item -Wcomment
cd3bb277 1814@opindex Wcomment
74291a4b
MM
1815Warn whenever a comment-start sequence @samp{/*} appears in a @samp{/*}
1816comment, or whenever a Backslash-Newline appears in a @samp{//} comment.
1817
1818@item -Wformat
cd3bb277 1819@opindex Wformat
74291a4b
MM
1820Check calls to @code{printf} and @code{scanf}, etc., to make sure that
1821the arguments supplied have types appropriate to the format string
26f6672d
JM
1822specified, and that the conversions specified in the format string make
1823sense. This includes standard functions, and others specified by format
1824attributes (@pxref{Function Attributes}), in the @code{printf},
1825@code{scanf}, @code{strftime} and @code{strfmon} (an X/Open extension,
1826not in the C standard) families.
74291a4b 1827
8308e0b7
JM
1828The formats are checked against the format features supported by GNU
1829libc version 2.2. These include all ISO C89 and C99 features, as well
1830as features from the Single Unix Specification and some BSD and GNU
1831extensions. Other library implementations may not support all these
1832features; GCC does not support warning about features that go beyond a
630d3d5a
JM
1833particular library's limitations. However, if @option{-pedantic} is used
1834with @option{-Wformat}, warnings will be given about format features not
26f6672d
JM
1835in the selected standard version (but not for @code{strfmon} formats,
1836since those are not in any version of the C standard). @xref{C Dialect
1837Options,,Options Controlling C Dialect}.
8308e0b7 1838
630d3d5a
JM
1839@option{-Wformat} is included in @option{-Wall}. For more control over some
1840aspects of format checking, the options @option{-Wno-format-y2k},
1841@option{-Wno-format-extra-args}, @option{-Wformat-nonliteral},
1842@option{-Wformat-security} and @option{-Wformat=2} are available, but are
1843not included in @option{-Wall}.
4d808927
JM
1844
1845@item -Wno-format-y2k
cd3bb277 1846@opindex Wno-format-y2k
630d3d5a 1847If @option{-Wformat} is specified, do not warn about @code{strftime}
4d808927
JM
1848formats which may yield only a two-digit year.
1849
1850@item -Wno-format-extra-args
cd3bb277 1851@opindex Wno-format-extra-args
630d3d5a 1852If @option{-Wformat} is specified, do not warn about excess arguments to a
4d808927
JM
1853@code{printf} or @code{scanf} format function. The C standard specifies
1854that such arguments are ignored.
1855
7e5fb12f
JM
1856Where the unused arguments lie between used arguments that are
1857specified with @samp{$} operand number specifications, normally
1858warnings are still given, since the implementation could not know what
1859type to pass to @code{va_arg} to skip the unused arguments. However,
1860in the case of @code{scanf} formats, this option will suppress the
1861warning if the unused arguments are all pointers, since the Single
1862Unix Specification says that such unused arguments are allowed.
1863
4d808927 1864@item -Wformat-nonliteral
cd3bb277 1865@opindex Wformat-nonliteral
630d3d5a 1866If @option{-Wformat} is specified, also warn if the format string is not a
4d808927
JM
1867string literal and so cannot be checked, unless the format function
1868takes its format arguments as a @code{va_list}.
1869
c907e684 1870@item -Wformat-security
cd3bb277 1871@opindex Wformat-security
630d3d5a 1872If @option{-Wformat} is specified, also warn about uses of format
c907e684
JM
1873functions that represent possible security problems. At present, this
1874warns about calls to @code{printf} and @code{scanf} functions where the
1875format string is not a string literal and there are no format arguments,
1876as in @code{printf (foo);}. This may be a security hole if the format
1877string came from untrusted input and contains @samp{%n}. (This is
630d3d5a
JM
1878currently a subset of what @option{-Wformat-nonliteral} warns about, but
1879in future warnings may be added to @option{-Wformat-security} that are not
1880included in @option{-Wformat-nonliteral}.)
c907e684 1881
4d808927 1882@item -Wformat=2
cd3bb277 1883@opindex Wformat=2
630d3d5a
JM
1884Enable @option{-Wformat} plus format checks not included in
1885@option{-Wformat}. Currently equivalent to @samp{-Wformat
c907e684 1886-Wformat-nonliteral -Wformat-security}.
4d808927 1887
e9a25f70 1888@item -Wimplicit-int
cd3bb277 1889@opindex Wimplicit-int
e9a25f70
JL
1890Warn when a declaration does not specify a type.
1891
f5963e61
JL
1892@item -Wimplicit-function-declaration
1893@itemx -Werror-implicit-function-declaration
cd3bb277
JM
1894@opindex Wimplicit-function-declaration
1895@opindex Werror-implicit-function-declaration
f5963e61
JL
1896Give a warning (or error) whenever a function is used before being
1897declared.
e9a25f70 1898
74291a4b 1899@item -Wimplicit
cd3bb277 1900@opindex Wimplicit
630d3d5a 1901Same as @option{-Wimplicit-int} and @option{-Wimplicit-function-declaration}.
861bb6c1
JL
1902
1903@item -Wmain
cd3bb277 1904@opindex Wmain
861bb6c1
JL
1905Warn if the type of @samp{main} is suspicious. @samp{main} should be a
1906function with external linkage, returning int, taking either zero
1907arguments, two, or three arguments of appropriate types.
4a870dba 1908
1f0c3120 1909@item -Wmissing-braces
cd3bb277 1910@opindex Wmissing-braces
1f0c3120
JM
1911Warn if an aggregate or union initializer is not fully bracketed. In
1912the following example, the initializer for @samp{a} is not fully
1913bracketed, but that for @samp{b} is fully bracketed.
1914
1915@smallexample
1916int a[2][2] = @{ 0, 1, 2, 3 @};
1917int b[2][2] = @{ @{ 0, 1 @}, @{ 2, 3 @} @};
1918@end smallexample
1919
74291a4b 1920@item -Wparentheses
cd3bb277 1921@opindex Wparentheses
74291a4b
MM
1922Warn if parentheses are omitted in certain contexts, such
1923as when there is an assignment in a context where a truth value
1924is expected, or when operators are nested whose precedence people
1925often get confused about.
1926
e9a25f70
JL
1927Also warn about constructions where there may be confusion to which
1928@code{if} statement an @code{else} branch belongs. Here is an example of
1929such a case:
1930
1931@smallexample
aee96fe9 1932@group
e9a25f70
JL
1933@{
1934 if (a)
1935 if (b)
1936 foo ();
1937 else
1938 bar ();
1939@}
aee96fe9 1940@end group
e9a25f70
JL
1941@end smallexample
1942
1943In C, every @code{else} branch belongs to the innermost possible @code{if}
1944statement, which in this example is @code{if (b)}. This is often not
1945what the programmer expected, as illustrated in the above example by
1946indentation the programmer chose. When there is the potential for this
f0523f02 1947confusion, GCC will issue a warning when this flag is specified.
e9a25f70
JL
1948To eliminate the warning, add explicit braces around the innermost
1949@code{if} statement so there is no way the @code{else} could belong to
1950the enclosing @code{if}. The resulting code would look like this:
1951
1952@smallexample
aee96fe9 1953@group
e9a25f70
JL
1954@{
1955 if (a)
1956 @{
1957 if (b)
1958 foo ();
1959 else
1960 bar ();
1961 @}
1962@}
aee96fe9 1963@end group
e9a25f70
JL
1964@end smallexample
1965
bb58bec5 1966@item -Wsequence-point
cd3bb277 1967@opindex Wsequence-point
bb58bec5
JM
1968Warn about code that may have undefined semantics because of violations
1969of sequence point rules in the C standard.
1970
1971The C standard defines the order in which expressions in a C program are
1972evaluated in terms of @dfn{sequence points}, which represent a partial
1973ordering between the execution of parts of the program: those executed
1974before the sequence point, and those executed after it. These occur
1975after the evaluation of a full expression (one which is not part of a
1976larger expression), after the evaluation of the first operand of a
1977@code{&&}, @code{||}, @code{? :} or @code{,} (comma) operator, before a
1978function is called (but after the evaluation of its arguments and the
1979expression denoting the called function), and in certain other places.
1980Other than as expressed by the sequence point rules, the order of
1981evaluation of subexpressions of an expression is not specified. All
1982these rules describe only a partial order rather than a total order,
1983since, for example, if two functions are called within one expression
1984with no sequence point between them, the order in which the functions
1985are called is not specified. However, the standards committee have
1986ruled that function calls do not overlap.
1987
1988It is not specified when between sequence points modifications to the
1989values of objects take effect. Programs whose behavior depends on this
1990have undefined behavior; the C standard specifies that ``Between the
1991previous and next sequence point an object shall have its stored value
1992modified at most once by the evaluation of an expression. Furthermore,
1993the prior value shall be read only to determine the value to be
1994stored.''. If a program breaks these rules, the results on any
1995particular implementation are entirely unpredictable.
1996
1997Examples of code with undefined behavior are @code{a = a++;}, @code{a[n]
1998= b[n++]} and @code{a[i++] = i;}. Some more complicated cases are not
1999diagnosed by this option, and it may give an occasional false positive
2000result, but in general it has been found fairly effective at detecting
2001this sort of problem in programs.
2002
2003The present implementation of this option only works for C programs. A
2004future implementation may also work for C++ programs.
2005
9c34dbbf
ZW
2006The C standard is worded confusingly, therefore there is some debate
2007over the precise meaning of the sequence point rules in subtle cases.
2008Links to discussions of the problem, including proposed formal
2009definitions, may be found on our readings page, at
c5122d75 2010@w{@uref{http://gcc.gnu.org/readings.html}}.
bb58bec5 2011
74291a4b 2012@item -Wreturn-type
cd3bb277 2013@opindex Wreturn-type
32c4c36c
ML
2014Warn whenever a function is defined with a return-type that defaults to
2015@code{int}. Also warn about any @code{return} statement with no
02f52e19 2016return-value in a function whose return-type is not @code{void}.
32c4c36c
ML
2017
2018For C++, a function without return type always produces a diagnostic
767094dd 2019message, even when @option{-Wno-return-type} is specified. The only
32c4c36c 2020exceptions are @samp{main} and functions defined in system headers.
74291a4b
MM
2021
2022@item -Wswitch
cd3bb277 2023@opindex Wswitch
74291a4b
MM
2024Warn whenever a @code{switch} statement has an index of enumeral type
2025and lacks a @code{case} for one or more of the named codes of that
2026enumeration. (The presence of a @code{default} label prevents this
2027warning.) @code{case} labels outside the enumeration range also
2028provoke warnings when this option is used.
2029
2030@item -Wtrigraphs
cd3bb277 2031@opindex Wtrigraphs
f2ecb02d
JM
2032Warn if any trigraphs are encountered that might change the meaning of
2033the program (trigraphs within comments are not warned about).
74291a4b 2034
078721e1 2035@item -Wunused-function
cd3bb277 2036@opindex Wunused-function
078721e1
AC
2037Warn whenever a static function is declared but not defined or a
2038non\-inline static function is unused.
74291a4b 2039
078721e1 2040@item -Wunused-label
cd3bb277 2041@opindex Wunused-label
078721e1
AC
2042Warn whenever a label is declared but not used.
2043
2044To suppress this warning use the @samp{unused} attribute
2045(@pxref{Variable Attributes}).
2046
2047@item -Wunused-parameter
cd3bb277 2048@opindex Wunused-parameter
078721e1
AC
2049Warn whenever a function parameter is unused aside from its declaration.
2050
2051To suppress this warning use the @samp{unused} attribute
2052(@pxref{Variable Attributes}).
956d6950 2053
078721e1 2054@item -Wunused-variable
cd3bb277 2055@opindex Wunused-variable
078721e1
AC
2056Warn whenever a local variable or non-constant static variable is unused
2057aside from its declaration
2058
2059To suppress this warning use the @samp{unused} attribute
74291a4b
MM
2060(@pxref{Variable Attributes}).
2061
078721e1 2062@item -Wunused-value
cd3bb277 2063@opindex Wunused-value
078721e1
AC
2064Warn whenever a statement computes a result that is explicitly not used.
2065
2066To suppress this warning cast the expression to @samp{void}.
2067
2068@item -Wunused
cd3bb277 2069@opindex Wunused
630d3d5a 2070All all the above @option{-Wunused} options combined.
078721e1
AC
2071
2072In order to get a warning about an unused function parameter, you must
b192711e 2073either specify @samp{-W -Wunused} or separately specify
630d3d5a 2074@option{-Wunused-parameter}.
078721e1 2075
74291a4b 2076@item -Wuninitialized
cd3bb277 2077@opindex Wuninitialized
c5c76735
JL
2078Warn if an automatic variable is used without first being initialized or
2079if a variable may be clobbered by a @code{setjmp} call.
74291a4b
MM
2080
2081These warnings are possible only in optimizing compilation,
2082because they require data flow information that is computed only
630d3d5a 2083when optimizing. If you don't specify @option{-O}, you simply won't
74291a4b
MM
2084get these warnings.
2085
2086These warnings occur only for variables that are candidates for
2087register allocation. Therefore, they do not occur for a variable that
2088is declared @code{volatile}, or whose address is taken, or whose size
2089is other than 1, 2, 4 or 8 bytes. Also, they do not occur for
2090structures, unions or arrays, even when they are in registers.
2091
2092Note that there may be no warning about a variable that is used only
2093to compute a value that itself is never used, because such
2094computations may be deleted by data flow analysis before the warnings
2095are printed.
2096
0c2d1a2a 2097These warnings are made optional because GCC is not smart
74291a4b
MM
2098enough to see all the reasons why the code might be correct
2099despite appearing to have an error. Here is one example of how
2100this can happen:
2101
2102@smallexample
aee96fe9 2103@group
74291a4b
MM
2104@{
2105 int x;
2106 switch (y)
2107 @{
2108 case 1: x = 1;
2109 break;
2110 case 2: x = 4;
2111 break;
2112 case 3: x = 5;
2113 @}
2114 foo (x);
2115@}
aee96fe9 2116@end group
74291a4b
MM
2117@end smallexample
2118
2119@noindent
2120If the value of @code{y} is always 1, 2 or 3, then @code{x} is
0c2d1a2a 2121always initialized, but GCC doesn't know this. Here is
74291a4b
MM
2122another common case:
2123
2124@smallexample
2125@{
2126 int save_y;
2127 if (change_y) save_y = y, y = new_y;
2128 @dots{}
2129 if (change_y) y = save_y;
2130@}
2131@end smallexample
2132
2133@noindent
2134This has no bug because @code{save_y} is used only if it is set.
2135
20300b05 2136@cindex @code{longjmp} warnings
b192711e 2137This option also warns when a non-volatile automatic variable might be
c5c76735
JL
2138changed by a call to @code{longjmp}. These warnings as well are possible
2139only in optimizing compilation.
20300b05
GK
2140
2141The compiler sees only the calls to @code{setjmp}. It cannot know
2142where @code{longjmp} will be called; in fact, a signal handler could
2143call it at any point in the code. As a result, you may get a warning
2144even when there is in fact no problem because @code{longjmp} cannot
2145in fact be called at the place which would cause a problem.
2146
74291a4b
MM
2147Some spurious warnings can be avoided if you declare all the functions
2148you use that never return as @code{noreturn}. @xref{Function
2149Attributes}.
2150
aee96fe9 2151@item -Wreorder @r{(C++ only)}
cd3bb277 2152@opindex Wreorder
c5c76735
JL
2153@cindex reordering, warning
2154@cindex warning for reordering of member initializers
2155Warn when the order of member initializers given in the code does not
2156match the order in which they must be executed. For instance:
2157
d300e551 2158@item -Wunknown-pragmas
cd3bb277 2159@opindex Wunknown-pragmas
d300e551
NC
2160@cindex warning for unknown pragmas
2161@cindex unknown pragmas, warning
2162@cindex pragmas, warning of unknown
2163Warn when a #pragma directive is encountered which is not understood by
161d7b59 2164GCC@. If this command line option is used, warnings will even be issued
d300e551 2165for unknown pragmas in system header files. This is not the case if
630d3d5a 2166the warnings were only enabled by the @option{-Wall} command line option.
d300e551 2167
74291a4b 2168@item -Wall
cd3bb277 2169@opindex Wall
74291a4b
MM
2170All of the above @samp{-W} options combined. This enables all the
2171warnings about constructions that some users consider questionable, and
2172that are easy to avoid (or modify to prevent the warning), even in
2173conjunction with macros.
317639a8 2174
6c36d76b
NB
2175@item -Wdiv-by-zero
2176@opindex Wno-div-by-zero
2177@opindex Wdiv-by-zero
2178Warn about compile-time integer division by zero. This is default. To
2179inhibit the warning messages, use @option{-Wno-div-by-zero}. Floating
2180point division by zero is not warned about, as it can be a legitimate
2181way of obtaining infinities and NaNs.
2182
2183@item -Wmultichar
2184@opindex Wno-multichar
2185@opindex Wmultichar
2186Warn if a multicharacter constant (@samp{'FOOF'}) is used. This is
2187default. To inhibit the warning messages, use @option{-Wno-multichar}.
2188Usually they indicate a typo in the user's code, as they have
2189implementation-defined values, and should not be used in portable code.
2190
317639a8 2191@item -Wsystem-headers
cd3bb277 2192@opindex Wsystem-headers
317639a8
BC
2193@cindex warnings from system headers
2194@cindex system headers, warnings from
2195Print warning messages for constructs found in system header files.
2196Warnings from system headers are normally suppressed, on the assumption
2197that they usually do not indicate real problems and would only make the
2198compiler output harder to read. Using this command line option tells
2199GCC to emit warnings from system headers as if they occurred in user
630d3d5a 2200code. However, note that using @option{-Wall} in conjunction with this
317639a8 2201option will @emph{not} warn about unknown pragmas in system
630d3d5a 2202headers---for that, @option{-Wunknown-pragmas} must also be used.
74291a4b
MM
2203@end table
2204
630d3d5a 2205The following @option{-W@dots{}} options are not implied by @option{-Wall}.
74291a4b
MM
2206Some of them warn about constructions that users generally do not
2207consider questionable, but which occasionally you might wish to check
2208for; others warn about constructions that are necessary or hard to avoid
2209in some cases, and there is no simple way to modify the code to suppress
2210the warning.
2211
2642624b 2212@table @gcctabopt
74291a4b 2213@item -W
cd3bb277 2214@opindex W
74291a4b
MM
2215Print extra warning messages for these events:
2216
2217@itemize @bullet
74291a4b
MM
2218@item
2219A function can return either with or without a value. (Falling
2220off the end of the function body is considered returning without
2221a value.) For example, this function would evoke such a
2222warning:
2223
2224@smallexample
2225@group
2226foo (a)
2227@{
2228 if (a > 0)
2229 return a;
2230@}
2231@end group
2232@end smallexample
2233
2234@item
2235An expression-statement or the left-hand side of a comma expression
2236contains no side effects.
2237To suppress the warning, cast the unused expression to void.
2238For example, an expression such as @samp{x[i,j]} will cause a warning,
2239but @samp{x[(void)i,j]} will not.
2240
2241@item
2242An unsigned value is compared against zero with @samp{<} or @samp{<=}.
2243
2244@item
2245A comparison like @samp{x<=y<=z} appears; this is equivalent to
2246@samp{(x<=y ? 1 : 0) <= z}, which is a different interpretation from
2247that of ordinary mathematical notation.
2248
2249@item
2250Storage-class specifiers like @code{static} are not the first things in
2251a declaration. According to the C Standard, this usage is obsolescent.
2252
e0c9fbb7
JM
2253@item
2254The return type of a function has a type qualifier such as @code{const}.
2255Such a type qualifier has no effect, since the value returned by a
2256function is not an lvalue. (But don't warn about the GNU extension of
2257@code{volatile void} return types. That extension will be warned about
630d3d5a 2258if @option{-pedantic} is specified.)
e0c9fbb7 2259
74291a4b 2260@item
630d3d5a 2261If @option{-Wall} or @option{-Wunused} is also specified, warn about unused
74291a4b
MM
2262arguments.
2263
e9a25f70
JL
2264@item
2265A comparison between signed and unsigned values could produce an
2266incorrect result when the signed value is converted to unsigned.
630d3d5a 2267(But don't warn if @option{-Wno-sign-compare} is also specified.)
e9a25f70 2268
74291a4b
MM
2269@item
2270An aggregate has a partly bracketed initializer.
2271For example, the following code would evoke such a warning,
2272because braces are missing around the initializer for @code{x.h}:
2273
2274@smallexample
2275struct s @{ int f, g; @};
2276struct t @{ struct s h; int i; @};
2277struct t x = @{ 1, 2, 3 @};
2278@end smallexample
dbde0d5d
BH
2279
2280@item
2281An aggregate has an initializer which does not initialize all members.
2282For example, the following code would cause such a warning, because
2283@code{x.h} would be implicitly initialized to zero:
2284
2285@smallexample
2286struct s @{ int f, g, h; @};
2287struct s x = @{ 3, 4 @};
2288@end smallexample
74291a4b
MM
2289@end itemize
2290
f793a95e 2291@item -Wfloat-equal
cd3bb277 2292@opindex Wfloat-equal
f793a95e
JL
2293Warn if floating point values are used in equality comparisons.
2294
488d3985
GK
2295The idea behind this is that sometimes it is convenient (for the
2296programmer) to consider floating-point values as approximations to
2297infinitely precise real numbers. If you are doing this, then you need
2298to compute (by analysing the code, or in some other way) the maximum or
2299likely maximum error that the computation introduces, and allow for it
2300when performing comparisons (and when producing output, but that's a
2301different problem). In particular, instead of testing for equality, you
2302would check to see whether the two values have ranges that overlap; and
2303this is done with the relational operators, so equality comparisons are
2304probably mistaken.
2305
aee96fe9 2306@item -Wtraditional @r{(C only)}
cd3bb277 2307@opindex Wtraditional
74291a4b 2308Warn about certain constructs that behave differently in traditional and
161d7b59 2309ISO C@. Also warn about ISO C constructs that have no traditional C
c8abc684 2310equivalent, and/or problematic constructs which should be avoided.
74291a4b
MM
2311
2312@itemize @bullet
2313@item
da312b55
NB
2314Macro parameters that appear within string literals in the macro body.
2315In traditional C macro replacement takes place within string literals,
161d7b59 2316but does not in ISO C@.
da312b55
NB
2317
2318@item
2319In traditional C, some preprocessor directives did not exist.
2320Traditional preprocessors would only consider a line to be a directive
2321if the @samp{#} appeared in column 1 on the line. Therefore
630d3d5a 2322@option{-Wtraditional} warns about directives that traditional C
da312b55
NB
2323understands but would ignore because the @samp{#} does not appear as the
2324first character on the line. It also suggests you hide directives like
2325@samp{#pragma} not understood by traditional C by indenting them. Some
c21cd8b1 2326traditional implementations would not recognize @samp{#elif}, so it
da312b55
NB
2327suggests avoiding it altogether.
2328
2329@item
2330A function-like macro that appears without arguments.
2331
2332@item
2333The unary plus operator.
2334
2335@item
c771326b
JM
2336The @samp{U} integer constant suffix, or the @samp{F} or @samp{L} floating point
2337constant suffixes. (Traditional C does support the @samp{L} suffix on integer
da312b55 2338constants.) Note, these suffixes appear in macros defined in the system
e979f9e8 2339headers of most modern systems, e.g.@: the @samp{_MIN}/@samp{_MAX} macros in @code{<limits.h>}.
c8abc684
KG
2340Use of these macros in user code might normally lead to spurious
2341warnings, however gcc's integrated preprocessor has enough context to
2342avoid warning in these cases.
74291a4b
MM
2343
2344@item
2345A function declared external in one block and then used after the end of
2346the block.
2347
2348@item
2349A @code{switch} statement has an operand of type @code{long}.
db838bb8
KG
2350
2351@item
2352A non-@code{static} function declaration follows a @code{static} one.
2353This construct is not accepted by some traditional C compilers.
48776cde
KG
2354
2355@item
c1030c7c 2356The ISO type of an integer constant has a different width or
48776cde 2357signedness from its traditional type. This warning is only issued if
e979f9e8 2358the base of the constant is ten. I.e.@: hexadecimal or octal values, which
48776cde 2359typically represent bit patterns, are not warned about.
bb66adca
KG
2360
2361@item
c1030c7c 2362Usage of ISO string concatenation is detected.
7f094a94 2363
895ea614
KG
2364@item
2365Initialization of automatic aggregates.
2366
2367@item
2368Identifier conflicts with labels. Traditional C lacks a separate
2369namespace for labels.
253b6b82
KG
2370
2371@item
2372Initialization of unions. If the initializer is zero, the warning is
2373omitted. This is done under the assumption that the zero initializer in
e979f9e8 2374user code appears conditioned on e.g.@: @code{__STDC__} to avoid missing
253b6b82
KG
2375initializer warnings and relies on default initialization to zero in the
2376traditional C case.
03829ad2
KG
2377
2378@item
3ed56f8a
KG
2379Conversions by prototypes between fixed/floating point values and vice
2380versa. The absence of these prototypes when compiling with traditional
2381C would cause serious problems. This is a subset of the possible
630d3d5a 2382conversion warnings, for the full set use @option{-Wconversion}.
74291a4b
MM
2383@end itemize
2384
861bb6c1 2385@item -Wundef
cd3bb277 2386@opindex Wundef
861bb6c1
JL
2387Warn if an undefined identifier is evaluated in an @samp{#if} directive.
2388
74291a4b 2389@item -Wshadow
cd3bb277 2390@opindex Wshadow
d773df5a
DB
2391Warn whenever a local variable shadows another local variable, parameter or
2392global variable or whenever a built-in function is shadowed.
74291a4b 2393
74291a4b 2394@item -Wlarger-than-@var{len}
cd3bb277 2395@opindex Wlarger-than
74291a4b
MM
2396Warn whenever an object of larger than @var{len} bytes is defined.
2397
2398@item -Wpointer-arith
cd3bb277 2399@opindex Wpointer-arith
74291a4b
MM
2400Warn about anything that depends on the ``size of'' a function type or
2401of @code{void}. GNU C assigns these types a size of 1, for
2402convenience in calculations with @code{void *} pointers and pointers
2403to functions.
2404
aee96fe9 2405@item -Wbad-function-cast @r{(C only)}
cd3bb277 2406@opindex Wbad-function-cast
74291a4b
MM
2407Warn whenever a function call is cast to a non-matching type.
2408For example, warn if @code{int malloc()} is cast to @code{anything *}.
2409
2410@item -Wcast-qual
cd3bb277 2411@opindex Wcast-qual
74291a4b
MM
2412Warn whenever a pointer is cast so as to remove a type qualifier from
2413the target type. For example, warn if a @code{const char *} is cast
2414to an ordinary @code{char *}.
2415
2416@item -Wcast-align
cd3bb277 2417@opindex Wcast-align
74291a4b
MM
2418Warn whenever a pointer is cast such that the required alignment of the
2419target is increased. For example, warn if a @code{char *} is cast to
2420an @code{int *} on machines where integers can only be accessed at
2421two- or four-byte boundaries.
2422
2423@item -Wwrite-strings
cd3bb277 2424@opindex Wwrite-strings
aee96fe9
JM
2425When compiling C, give string constants the type @code{const
2426char[@var{length}]} so that
74291a4b 2427copying the address of one into a non-@code{const} @code{char *}
aee96fe9
JM
2428pointer will get a warning; when compiling C++, warn about the
2429deprecated conversion from string constants to @code{char *}.
2430These warnings will help you find at
74291a4b
MM
2431compile time code that can try to write into a string constant, but
2432only if you have been very careful about using @code{const} in
2433declarations and prototypes. Otherwise, it will just be a nuisance;
630d3d5a 2434this is why we did not make @option{-Wall} request these warnings.
74291a4b
MM
2435
2436@item -Wconversion
cd3bb277 2437@opindex Wconversion
74291a4b
MM
2438Warn if a prototype causes a type conversion that is different from what
2439would happen to the same argument in the absence of a prototype. This
2440includes conversions of fixed point to floating and vice versa, and
2441conversions changing the width or signedness of a fixed point argument
2442except when the same as the default promotion.
2443
2444Also, warn if a negative integer constant expression is implicitly
2445converted to an unsigned type. For example, warn about the assignment
2446@code{x = -1} if @code{x} is unsigned. But do not warn about explicit
2447casts like @code{(unsigned) -1}.
2448
e9a25f70 2449@item -Wsign-compare
cd3bb277 2450@opindex Wsign-compare
e9a25f70
JL
2451@cindex warning for comparison of signed and unsigned values
2452@cindex comparison of signed and unsigned values, warning
2453@cindex signed and unsigned values, comparison warning
2454Warn when a comparison between signed and unsigned values could produce
2455an incorrect result when the signed value is converted to unsigned.
630d3d5a
JM
2456This warning is also enabled by @option{-W}; to get the other warnings
2457of @option{-W} without this warning, use @samp{-W -Wno-sign-compare}.
e9a25f70 2458
74291a4b 2459@item -Waggregate-return
cd3bb277 2460@opindex Waggregate-return
74291a4b
MM
2461Warn if any functions that return structures or unions are defined or
2462called. (In languages where you can return an array, this also elicits
2463a warning.)
2464
aee96fe9 2465@item -Wstrict-prototypes @r{(C only)}
cd3bb277 2466@opindex Wstrict-prototypes
74291a4b
MM
2467Warn if a function is declared or defined without specifying the
2468argument types. (An old-style function definition is permitted without
2469a warning if preceded by a declaration which specifies the argument
2470types.)
2471
aee96fe9 2472@item -Wmissing-prototypes @r{(C only)}
cd3bb277 2473@opindex Wmissing-prototypes
74291a4b
MM
2474Warn if a global function is defined without a previous prototype
2475declaration. This warning is issued even if the definition itself
2476provides a prototype. The aim is to detect global functions that fail
2477to be declared in header files.
2478
2479@item -Wmissing-declarations
cd3bb277 2480@opindex Wmissing-declarations
74291a4b
MM
2481Warn if a global function is defined without a previous declaration.
2482Do so even if the definition itself provides a prototype.
2483Use this option to detect global functions that are not declared in
2484header files.
2485
0ca3fb0a 2486@item -Wmissing-noreturn
cd3bb277 2487@opindex Wmissing-noreturn
0ca3fb0a
KG
2488Warn about functions which might be candidates for attribute @code{noreturn}.
2489Note these are only possible candidates, not absolute ones. Care should
2490be taken to manually verify functions actually do not ever return before
2491adding the @code{noreturn} attribute, otherwise subtle code generation
21c7361e
AJ
2492bugs could be introduced. You will not get a warning for @code{main} in
2493hosted C environments.
0ca3fb0a 2494
74ff4629 2495@item -Wmissing-format-attribute
cd3bb277
JM
2496@opindex Wmissing-format-attribute
2497@opindex Wformat
630d3d5a 2498If @option{-Wformat} is enabled, also warn about functions which might be
74ff4629
JM
2499candidates for @code{format} attributes. Note these are only possible
2500candidates, not absolute ones. GCC will guess that @code{format}
2501attributes might be appropriate for any function that calls a function
2502like @code{vprintf} or @code{vscanf}, but this might not always be the
2503case, and some functions for which @code{format} attributes are
2504appropriate may not be detected. This option has no effect unless
630d3d5a 2505@option{-Wformat} is enabled (possibly by @option{-Wall}).
74ff4629 2506
e23bd218
IR
2507@item -Wno-deprecated-declarations
2508@opindex Wno-deprecated-declarations
2509Do not warn about uses of functions, variables, and types marked as
f282ffb3 2510deprecated by using the @code{deprecated} attribute.
e23bd218
IR
2511(@pxref{Function Attributes}, @pxref{Variable Attributes},
2512@pxref{Type Attributes}.)
2513
3c12fcc2 2514@item -Wpacked
cd3bb277 2515@opindex Wpacked
3c12fcc2 2516Warn if a structure is given the packed attribute, but the packed
02f52e19 2517attribute has no effect on the layout or size of the structure.
3c12fcc2
GM
2518Such structures may be mis-aligned for little benefit. For
2519instance, in this code, the variable @code{f.x} in @code{struct bar}
2520will be misaligned even though @code{struct bar} does not itself
2521have the packed attribute:
2522
2523@smallexample
2524@group
2525struct foo @{
2526 int x;
2527 char a, b, c, d;
2528@} __attribute__((packed));
2529struct bar @{
2530 char z;
2531 struct foo f;
2532@};
2533@end group
2534@end smallexample
2535
2536@item -Wpadded
cd3bb277 2537@opindex Wpadded
3c12fcc2
GM
2538Warn if padding is included in a structure, either to align an element
2539of the structure or to align the whole structure. Sometimes when this
2540happens it is possible to rearrange the fields of the structure to
2541reduce the padding and so make the structure smaller.
2542
74291a4b 2543@item -Wredundant-decls
cd3bb277 2544@opindex Wredundant-decls
74291a4b
MM
2545Warn if anything is declared more than once in the same scope, even in
2546cases where multiple declaration is valid and changes nothing.
2547
aee96fe9 2548@item -Wnested-externs @r{(C only)}
cd3bb277 2549@opindex Wnested-externs
252215a7 2550Warn if an @code{extern} declaration is encountered within a function.
74291a4b 2551
312f6255 2552@item -Wunreachable-code
cd3bb277 2553@opindex Wunreachable-code
312f6255
GK
2554Warn if the compiler detects that code will never be executed.
2555
2556This option is intended to warn when the compiler detects that at
2557least a whole line of source code will never be executed, because
2558some condition is never satisfied or because it is after a
2559procedure that never returns.
2560
2561It is possible for this option to produce a warning even though there
2562are circumstances under which part of the affected line can be executed,
2563so care should be taken when removing apparently-unreachable code.
2564
2565For instance, when a function is inlined, a warning may mean that the
02f52e19 2566line is unreachable in only one inlined copy of the function.
312f6255 2567
630d3d5a 2568This option is not made part of @option{-Wall} because in a debugging
312f6255
GK
2569version of a program there is often substantial code which checks
2570correct functioning of the program and is, hopefully, unreachable
2571because the program does work. Another common use of unreachable
c21cd8b1 2572code is to provide behavior which is selectable at compile-time.
312f6255 2573
74291a4b 2574@item -Winline
cd3bb277 2575@opindex Winline
c5c76735 2576Warn if a function can not be inlined and it was declared as inline.
74291a4b 2577
795add94 2578@item -Wlong-long
cd3bb277
JM
2579@opindex Wlong-long
2580@opindex Wno-long-long
795add94 2581Warn if @samp{long long} type is used. This is default. To inhibit
630d3d5a
JM
2582the warning messages, use @option{-Wno-long-long}. Flags
2583@option{-Wlong-long} and @option{-Wno-long-long} are taken into account
2584only when @option{-pedantic} flag is used.
795add94 2585
18424ae1 2586@item -Wdisabled-optimization
cd3bb277 2587@opindex Wdisabled-optimization
18424ae1
BL
2588Warn if a requested optimization pass is disabled. This warning does
2589not generally indicate that there is anything wrong with your code; it
2590merely indicates that GCC's optimizers were unable to handle the code
2591effectively. Often, the problem is that your code is too big or too
2592complex; GCC will refuse to optimize programs when the optimization
2593itself is likely to take inordinate amounts of time.
2594
74291a4b 2595@item -Werror
cd3bb277 2596@opindex Werror
74291a4b
MM
2597Make all warnings into errors.
2598@end table
2599
2600@node Debugging Options
0c2d1a2a 2601@section Options for Debugging Your Program or GCC
74291a4b
MM
2602@cindex options, debugging
2603@cindex debugging information options
2604
0c2d1a2a 2605GCC has various special options that are used for debugging
74291a4b
MM
2606either your program or GCC:
2607
2642624b 2608@table @gcctabopt
74291a4b 2609@item -g
cd3bb277 2610@opindex g
74291a4b 2611Produce debugging information in the operating system's native format
161d7b59 2612(stabs, COFF, XCOFF, or DWARF)@. GDB can work with this debugging
74291a4b
MM
2613information.
2614
630d3d5a 2615On most systems that use stabs format, @option{-g} enables use of extra
74291a4b
MM
2616debugging information that only GDB can use; this extra information
2617makes debugging work better in GDB but will probably make other debuggers
2618crash or
2619refuse to read the program. If you want to control for certain whether
630d3d5a 2620to generate the extra information, use @option{-gstabs+}, @option{-gstabs},
5f98259a
RK
2621@option{-gxcoff+}, @option{-gxcoff}, @option{-gdwarf-1+}, @option{-gdwarf-1},
2622or @option{-gvms} (see below).
74291a4b 2623
630d3d5a
JM
2624Unlike most other C compilers, GCC allows you to use @option{-g} with
2625@option{-O}. The shortcuts taken by optimized code may occasionally
74291a4b
MM
2626produce surprising results: some variables you declared may not exist
2627at all; flow of control may briefly move where you did not expect it;
2628some statements may not be executed because they compute constant
2629results or their values were already at hand; some statements may
2630execute in different places because they were moved out of loops.
2631
2632Nevertheless it proves possible to debug optimized output. This makes
2633it reasonable to use the optimizer for programs that might have bugs.
2634
0c2d1a2a 2635The following options are useful when GCC is generated with the
74291a4b
MM
2636capability for more than one debugging format.
2637
2638@item -ggdb
cd3bb277 2639@opindex ggdb
161d7b59 2640Produce debugging information for use by GDB@. This means to use the
861bb6c1
JL
2641most expressive format available (DWARF 2, stabs, or the native format
2642if neither of those are supported), including GDB extensions if at all
2643possible.
74291a4b
MM
2644
2645@item -gstabs
cd3bb277 2646@opindex gstabs
74291a4b
MM
2647Produce debugging information in stabs format (if that is supported),
2648without GDB extensions. This is the format used by DBX on most BSD
2649systems. On MIPS, Alpha and System V Release 4 systems this option
161d7b59 2650produces stabs debugging output which is not understood by DBX or SDB@.
74291a4b
MM
2651On System V Release 4 systems this option requires the GNU assembler.
2652
2653@item -gstabs+
cd3bb277 2654@opindex gstabs+
74291a4b 2655Produce debugging information in stabs format (if that is supported),
161d7b59 2656using GNU extensions understood only by the GNU debugger (GDB)@. The
74291a4b
MM
2657use of these extensions is likely to make other debuggers crash or
2658refuse to read the program.
2659
2660@item -gcoff
cd3bb277 2661@opindex gcoff
74291a4b
MM
2662Produce debugging information in COFF format (if that is supported).
2663This is the format used by SDB on most System V systems prior to
2664System V Release 4.
2665
2666@item -gxcoff
cd3bb277 2667@opindex gxcoff
74291a4b
MM
2668Produce debugging information in XCOFF format (if that is supported).
2669This is the format used by the DBX debugger on IBM RS/6000 systems.
2670
2671@item -gxcoff+
cd3bb277 2672@opindex gxcoff+
74291a4b 2673Produce debugging information in XCOFF format (if that is supported),
161d7b59 2674using GNU extensions understood only by the GNU debugger (GDB)@. The
74291a4b
MM
2675use of these extensions is likely to make other debuggers crash or
2676refuse to read the program, and may cause assemblers other than the GNU
2677assembler (GAS) to fail with an error.
2678
2679@item -gdwarf
cd3bb277 2680@opindex gdwarf
861bb6c1
JL
2681Produce debugging information in DWARF version 1 format (if that is
2682supported). This is the format used by SDB on most System V Release 4
2683systems.
74291a4b
MM
2684
2685@item -gdwarf+
cd3bb277 2686@opindex gdwarf+
861bb6c1
JL
2687Produce debugging information in DWARF version 1 format (if that is
2688supported), using GNU extensions understood only by the GNU debugger
161d7b59 2689(GDB)@. The use of these extensions is likely to make other debuggers
861bb6c1
JL
2690crash or refuse to read the program.
2691
2692@item -gdwarf-2
cd3bb277 2693@opindex gdwarf-2
861bb6c1
JL
2694Produce debugging information in DWARF version 2 format (if that is
2695supported). This is the format used by DBX on IRIX 6.
74291a4b 2696
5f98259a
RK
2697@item -gvms
2698@opindex gvms
2699Produce debugging information in VMS debug format (if that is
2700supported). This is the format used by DEBUG on VMS systems.
2701
74291a4b
MM
2702@item -g@var{level}
2703@itemx -ggdb@var{level}
2704@itemx -gstabs@var{level}
2705@itemx -gcoff@var{level}
2706@itemx -gxcoff@var{level}
2707@itemx -gdwarf@var{level}
861bb6c1 2708@itemx -gdwarf-2@var{level}
5f98259a 2709@itemx -gvms@var{level}
74291a4b
MM
2710Request debugging information and also use @var{level} to specify how
2711much information. The default level is 2.
2712
2713Level 1 produces minimal information, enough for making backtraces in
2714parts of the program that you don't plan to debug. This includes
2715descriptions of functions and external variables, but no information
2716about local variables and no line numbers.
2717
2718Level 3 includes extra information, such as all the macro definitions
2719present in the program. Some debuggers support macro expansion when
630d3d5a 2720you use @option{-g3}.
74291a4b
MM
2721
2722@cindex @code{prof}
2723@item -p
cd3bb277 2724@opindex p
74291a4b
MM
2725Generate extra code to write profile information suitable for the
2726analysis program @code{prof}. You must use this option when compiling
2727the source files you want data about, and you must also use it when
2728linking.
2729
2730@cindex @code{gprof}
2731@item -pg
cd3bb277 2732@opindex pg
74291a4b
MM
2733Generate extra code to write profile information suitable for the
2734analysis program @code{gprof}. You must use this option when compiling
2735the source files you want data about, and you must also use it when
2736linking.
2737
2738@cindex @code{tcov}
2739@item -a
cd3bb277 2740@opindex a
74291a4b
MM
2741Generate extra code to write profile information for basic blocks, which will
2742record the number of times each basic block is executed, the basic block start
630d3d5a 2743address, and the function name containing the basic block. If @option{-g} is
74291a4b
MM
2744used, the line number and filename of the start of the basic block will also be
2745recorded. If not overridden by the machine description, the default action is
2746to append to the text file @file{bb.out}.
2747
2748This data could be analyzed by a program like @code{tcov}. Note,
2749however, that the format of the data is not what @code{tcov} expects.
2750Eventually GNU @code{gprof} should be extended to process this data.
2751
898f531b 2752@item -Q
cd3bb277 2753@opindex Q
898f531b
JL
2754Makes the compiler print out each function name as it is compiled, and
2755print some statistics about each pass when it finishes.
2756
1f0c3120 2757@item -ftime-report
cd3bb277 2758@opindex ftime-report
1f0c3120
JM
2759Makes the compiler print some statistics about the time consumed by each
2760pass when it finishes.
2761
2762@item -fmem-report
cd3bb277 2763@opindex fmem-report
1f0c3120
JM
2764Makes the compiler print some statistics about permanent memory
2765allocation when it finishes.
2766
861bb6c1 2767@item -fprofile-arcs
cd3bb277 2768@opindex fprofile-arcs
3de87bf2
JJ
2769Instrument @dfn{arcs} during compilation to generate coverage data
2770or for profile-directed block ordering. During execution the program
2771records how many times each branch is executed and how many times it is
2772taken. When the compiled program exits it saves this data to a file
2773called @file{@var{sourcename}.da} for each source file.
2774
2775For profile-directed block ordering, compile the program with
2776@option{-fprofile-arcs} plus optimization and code generation options,
2777generate the arc profile information by running the program on a
2778selected workload, and then compile the program again with the same
2779optimization and code generation options plus
630d3d5a 2780@option{-fbranch-probabilities} (@pxref{Optimize Options,,Options that
3de87bf2
JJ
2781Control Optimization}).
2782
2783The other use of @option{-fprofile-arcs} is for use with @code{gcov},
2784when it is used with the @option{-ftest-coverage} option. GCC
2785supports two methods of determining code coverage: the options that
2786support @code{gcov}, and options @option{-a} and @option{-ax}, which
2787write information to text files. The options that support @code{gcov}
2788do not need to instrument every arc in the program, so a program compiled
2789with them runs faster than a program compiled with @option{-a}, which
2790adds instrumentation code to every basic block in the program. The
2791tradeoff: since @code{gcov} does not have execution counts for all
2792branches, it must start with the execution counts for the instrumented
2793branches, and then iterate over the program flow graph until the entire
2794graph has been solved. Hence, @code{gcov} runs a little more slowly than
2795a program which uses information from @option{-a} and @option{-ax}.
2796
2797With @option{-fprofile-arcs}, for each function of your program GCC
2798creates a program flow graph, then finds a spanning tree for the graph.
2799Only arcs that are not on the spanning tree have to be instrumented: the
2800compiler adds code to count the number of times that these arcs are
2801executed. When an arc is the only exit or only entrance to a block, the
2802instrumentation code can be added to the block; otherwise, a new basic
2803block must be created to hold the instrumentation code.
2804
2805This option makes it possible to estimate branch probabilities and to
2806calculate basic block execution counts. In general, basic block
2807execution counts as provided by @option{-a} do not give enough
2808information to estimate all branch probabilities.
861bb6c1
JL
2809
2810@need 2000
2811@item -ftest-coverage
cd3bb277 2812@opindex ftest-coverage
861bb6c1 2813Create data files for the @code{gcov} code-coverage utility
0c2d1a2a 2814(@pxref{Gcov,, @code{gcov}: a GCC Test Coverage Program}).
861bb6c1
JL
2815The data file names begin with the name of your source file:
2816
2642624b 2817@table @gcctabopt
861bb6c1
JL
2818@item @var{sourcename}.bb
2819A mapping from basic blocks to line numbers, which @code{gcov} uses to
2820associate basic block execution counts with line numbers.
2821
2822@item @var{sourcename}.bbg
2823A list of all arcs in the program flow graph. This allows @code{gcov}
2824to reconstruct the program flow graph, so that it can compute all basic
2825block and arc execution counts from the information in the
3de87bf2 2826@code{@var{sourcename}.da} file.
861bb6c1
JL
2827@end table
2828
3de87bf2
JJ
2829Use @option{-ftest-coverage} with @option{-fprofile-arcs}; the latter
2830option adds instrumentation to the program, which then writes
2831execution counts to another data file:
2832
2833@table @gcctabopt
2834@item @var{sourcename}.da
2835Runtime arc execution counts, used in conjunction with the arc
2836information in the file @code{@var{sourcename}.bbg}.
2837@end table
2838
2839Coverage data will map better to the source files if
2840@option{-ftest-coverage} is used without optimization.
2841
74291a4b 2842@item -d@var{letters}
cd3bb277 2843@opindex d
74291a4b
MM
2844Says to make debugging dumps during compilation at times specified by
2845@var{letters}. This is used for debugging the compiler. The file names
375e2d5c 2846for most of the dumps are made by appending a pass number and a word to
02f52e19 2847the source file name (e.g. @file{foo.c.00.rtl} or @file{foo.c.01.sibling}).
375e2d5c 2848Here are the possible letters for use in @var{letters}, and their meanings:
74291a4b
MM
2849
2850@table @samp
375e2d5c 2851@item A
cd3bb277 2852@opindex dA
375e2d5c 2853Annotate the assembler output with miscellaneous debugging information.
956d6950 2854@item b
cd3bb277 2855@opindex db
0b47e4c1 2856Dump after computing branch probabilities, to @file{@var{file}.14.bp}.
48d9ade5 2857@item B
cd3bb277 2858@opindex dB
1e4e4df2 2859Dump after block reordering, to @file{@var{file}.29.bbro}.
032713aa 2860@item c
cd3bb277 2861@opindex dc
0b47e4c1 2862Dump after instruction combination, to the file @file{@var{file}.16.combine}.
470fc13d 2863@item C
cd3bb277 2864@opindex dC
0b47e4c1 2865Dump after the first if conversion, to the file @file{@var{file}.17.ce}.
032713aa 2866@item d
cd3bb277 2867@opindex dd
0b47e4c1 2868Dump after delayed branch scheduling, to @file{@var{file}.31.dbr}.
032713aa 2869@item D
cd3bb277 2870@opindex dD
f5963e61
JL
2871Dump all macro definitions, at the end of preprocessing, in addition to
2872normal output.
48d9ade5 2873@item e
cd3bb277 2874@opindex de
0826f1d8 2875Dump after SSA optimizations, to @file{@var{file}.04.ssa} and
0b47e4c1 2876@file{@var{file}.07.ussa}.
470fc13d 2877@item E
cd3bb277 2878@opindex dE
0b47e4c1 2879Dump after the second if conversion, to @file{@var{file}.26.ce2}.
74291a4b 2880@item f
cd3bb277 2881@opindex df
0b47e4c1 2882Dump after life analysis, to @file{@var{file}.15.life}.
48d9ade5 2883@item F
cd3bb277 2884@opindex dF
0b47e4c1 2885Dump after purging @code{ADDRESSOF} codes, to @file{@var{file}.09.addressof}.
74291a4b 2886@item g
cd3bb277 2887@opindex dg
0b47e4c1 2888Dump after global register allocation, to @file{@var{file}.21.greg}.
0826f1d8
JL
2889@item h
2890@opindex dh
2891Dump after finalization of EH handling code, to @file{@var{file}.02.eh}.
1e4e4df2
KH
2892@item k
2893@opindex dk
2894Dump after reg-to-stack conversion, to @file{@var{file}.28.stack}.
0826f1d8 2895@item o
cd3bb277 2896@opindex do
9c34dbbf 2897Dump after post-reload optimizations, to @file{@var{file}.22.postreload}.
02f52e19 2898@item G
cd3bb277 2899@opindex dG
0b47e4c1 2900Dump after GCSE, to @file{@var{file}.10.gcse}.
48d9ade5 2901@item i
cd3bb277 2902@opindex di
48d9ade5 2903Dump after sibling call optimizations, to @file{@var{file}.01.sibling}.
032713aa 2904@item j
cd3bb277 2905@opindex dj
0826f1d8 2906Dump after the first jump optimization, to @file{@var{file}.03.jump}.
74291a4b 2907@item k
cd3bb277 2908@opindex dk
0b47e4c1 2909Dump after conversion from registers to stack, to @file{@var{file}.32.stack}.
032713aa 2910@item l
cd3bb277 2911@opindex dl
0b47e4c1 2912Dump after local register allocation, to @file{@var{file}.20.lreg}.
032713aa 2913@item L
cd3bb277 2914@opindex dL
0b47e4c1 2915Dump after loop optimization, to @file{@var{file}.11.loop}.
032713aa 2916@item M
cd3bb277 2917@opindex dM
032713aa 2918Dump after performing the machine dependent reorganisation pass, to
0b47e4c1 2919@file{@var{file}.30.mach}.
48d9ade5 2920@item n
cd3bb277 2921@opindex dn
0b47e4c1 2922Dump after register renumbering, to @file{@var{file}.25.rnreg}.
032713aa 2923@item N
cd3bb277 2924@opindex dN
0b47e4c1 2925Dump after the register move pass, to @file{@var{file}.18.regmove}.
032713aa 2926@item r
cd3bb277 2927@opindex dr
375e2d5c 2928Dump after RTL generation, to @file{@var{file}.00.rtl}.
032713aa 2929@item R
cd3bb277 2930@opindex dR
9c34dbbf 2931Dump after the second scheduling pass, to @file{@var{file}.27.sched2}.
032713aa 2932@item s
cd3bb277 2933@opindex ds
032713aa 2934Dump after CSE (including the jump optimization that sometimes follows
0b47e4c1 2935CSE), to @file{@var{file}.08.cse}.
032713aa 2936@item S
cd3bb277 2937@opindex dS
9c34dbbf 2938Dump after the first scheduling pass, to @file{@var{file}.19.sched}.
032713aa 2939@item t
cd3bb277 2940@opindex dt
032713aa 2941Dump after the second CSE pass (including the jump optimization that
0b47e4c1 2942sometimes follows CSE), to @file{@var{file}.12.cse2}.
48d9ade5 2943@item w
cd3bb277 2944@opindex dw
0b47e4c1 2945Dump after the second flow pass, to @file{@var{file}.23.flow2}.
470fc13d 2946@item X
cd3bb277 2947@opindex dX
9c34dbbf 2948Dump after SSA dead code elimination, to @file{@var{file}.06.ssadce}.
48d9ade5 2949@item z
cd3bb277 2950@opindex dz
0b47e4c1 2951Dump after the peephole pass, to @file{@var{file}.24.peephole2}.
74291a4b 2952@item a
cd3bb277 2953@opindex da
74291a4b
MM
2954Produce all the dumps listed above.
2955@item m
cd3bb277 2956@opindex dm
74291a4b
MM
2957Print statistics on memory usage, at the end of the run, to
2958standard error.
2959@item p
cd3bb277 2960@opindex dp
74291a4b 2961Annotate the assembler output with a comment indicating which
f20b5577
MM
2962pattern and alternative was used. The length of each instruction is
2963also printed.
2856c3e3 2964@item P
cd3bb277 2965@opindex dP
2856c3e3 2966Dump the RTL in the assembler output as a comment before each instruction.
630d3d5a 2967Also turns on @option{-dp} annotation.
375e2d5c 2968@item v
cd3bb277 2969@opindex dv
375e2d5c
RH
2970For each of the other indicated dump files (except for
2971@file{@var{file}.00.rtl}), dump a representation of the control flow graph
b192711e 2972suitable for viewing with VCG to @file{@var{file}.@var{pass}.vcg}.
62a1403d 2973@item x
cd3bb277 2974@opindex dx
62a1403d
AS
2975Just generate RTL for a function instead of compiling it. Usually used
2976with @samp{r}.
032713aa 2977@item y
cd3bb277 2978@opindex dy
032713aa 2979Dump debugging information during parsing, to standard error.
74291a4b
MM
2980@end table
2981
b707b450 2982@item -fdump-unnumbered
cd3bb277 2983@opindex fdump-unnumbered
695ac33f 2984When doing debugging dumps (see @option{-d} option above), suppress instruction
b707b450 2985numbers and line number note output. This makes it more feasible to
b192711e 2986use diff on debugging dumps for compiler invocations with different
695ac33f 2987options, in particular with and without @option{-g}.
b707b450 2988
f70a54cb
CR
2989@item -fdump-translation-unit @r{(C and C++ only)}
2990@itemx -fdump-translation-unit-@var{options} @r{(C and C++ only)}
2991@opindex fdump-translation-unit
2992Dump a representation of the tree structure for the entire translation
2993unit to a file. The file name is made by appending @file{.tu} to the
2994source file name. If the @samp{-@var{options}} form is used, @var{options}
2995controls the details of the dump as described for the
2996@option{-fdump-tree} options.
2997
aee96fe9 2998@item -fdump-class-hierarchy @r{(C++ only)}
22367161 2999@itemx -fdump-class-hierarchy-@var{options} @r{(C++ only)}
cd3bb277 3000@opindex fdump-class-hierarchy
e76b4820 3001Dump a representation of each class's hierarchy and virtual function
767094dd 3002table layout to a file. The file name is made by appending @file{.class}
22367161
NS
3003to the source file name. If the @samp{-@var{options}} form is used,
3004@var{options} controls the details of the dump as described for the
3005@option{-fdump-tree} options.
3006
3007@item -fdump-tree-@var{switch} @r{(C++ only)}
3008@itemx -fdump-tree-@var{switch}-@var{options} @r{(C++ only)}
3009@opindex fdump-tree
3010Control the dumping at various stages of processing the intermediate
3011language tree to a file. The file name is generated by appending a switch
3012specific suffix to the source file name. If the @samp{-@var{options}}
3013form is used, @var{options} is a list of @samp{-} separated options that
3014control the details of the dump. Not all options are applicable to all
3015dumps, those which are not meaningful will be ignored. The following
3016options are available
f71f87f9 3017
e76b4820 3018@table @samp
22367161 3019@item address
767094dd 3020Print the address of each node. Usually this is not meaningful as it
22367161
NS
3021changes according to the environment and source file. Its primary use
3022is for tying up a dump file with a debug environment.
3023@item slim
3024Inhibit dumping of members of a scope or body of a function merely
3025because that scope has been reached. Only dump such items when they
3026are directly reachable by some other path.
3027@item all
3028Turn on all options.
e76b4820
NS
3029@end table
3030
3031The following tree dumps are possible:
3032@table @samp
3033@item original
3034Dump before any tree based optimization, to @file{@var{file}.original}.
3035@item optimized
3036Dump after all tree based optimization, to @file{@var{file}.optimized}.
6be77748 3037@item inlined
9c34dbbf 3038Dump after function inlining, to @file{@var{file}.inlined}.
e76b4820 3039@end table
9965d119 3040
74291a4b 3041@item -fpretend-float
cd3bb277 3042@opindex fpretend-float
74291a4b
MM
3043When running a cross-compiler, pretend that the target machine uses the
3044same floating point format as the host machine. This causes incorrect
3045output of the actual floating constants, but the actual instruction
0c2d1a2a 3046sequence will probably be the same as GCC would make when running on
74291a4b
MM
3047the target machine.
3048
3049@item -save-temps
cd3bb277 3050@opindex save-temps
74291a4b
MM
3051Store the usual ``temporary'' intermediate files permanently; place them
3052in the current directory and name them based on the source file. Thus,
3053compiling @file{foo.c} with @samp{-c -save-temps} would produce files
f2ecb02d
JM
3054@file{foo.i} and @file{foo.s}, as well as @file{foo.o}. This creates a
3055preprocessed @file{foo.i} output file even though the compiler now
3056normally uses an integrated preprocessor.
74291a4b 3057
03c41c05 3058@item -time
cd3bb277 3059@opindex time
03c41c05 3060Report the CPU time taken by each subprocess in the compilation
f2ecb02d
JM
3061sequence. For C source files, this is the compiler proper and assembler
3062(plus the linker if linking is done). The output looks like this:
03c41c05
ZW
3063
3064@smallexample
03c41c05
ZW
3065# cc1 0.12 0.01
3066# as 0.00 0.01
3067@end smallexample
3068
3069The first number on each line is the ``user time,'' that is time spent
3070executing the program itself. The second number is ``system time,''
3071time spent executing operating system routines on behalf of the program.
3072Both numbers are in seconds.
3073
74291a4b 3074@item -print-file-name=@var{library}
cd3bb277 3075@opindex print-file-name
74291a4b
MM
3076Print the full absolute name of the library file @var{library} that
3077would be used when linking---and don't do anything else. With this
0c2d1a2a 3078option, GCC does not compile or link anything; it just prints the
74291a4b
MM
3079file name.
3080
b1018de6
AO
3081@item -print-multi-directory
3082@opindex print-multi-directory
3083Print the directory name corresponding to the multilib selected by any
3084other switches present in the command line. This directory is supposed
3085to exist in @env{GCC_EXEC_PREFIX}.
3086
3087@item -print-multi-lib
3088@opindex print-multi-lib
3089Print the mapping from multilib directory names to compiler switches
3090that enable them. The directory name is separated from the switches by
3091@samp{;}, and each switch starts with an @samp{@@} instead of the
3092@samp{-}, without spaces between multiple switches. This is supposed to
3093ease shell-processing.
3094
74291a4b 3095@item -print-prog-name=@var{program}
cd3bb277 3096@opindex print-prog-name
630d3d5a 3097Like @option{-print-file-name}, but searches for a program such as @samp{cpp}.
74291a4b
MM
3098
3099@item -print-libgcc-file-name
cd3bb277 3100@opindex print-libgcc-file-name
630d3d5a 3101Same as @option{-print-file-name=libgcc.a}.
74291a4b 3102
630d3d5a 3103This is useful when you use @option{-nostdlib} or @option{-nodefaultlibs}
74291a4b
MM
3104but you do want to link with @file{libgcc.a}. You can do
3105
3106@example
3107gcc -nostdlib @var{files}@dots{} `gcc -print-libgcc-file-name`
3108@end example
3109
3110@item -print-search-dirs
cd3bb277 3111@opindex print-search-dirs
74291a4b
MM
3112Print the name of the configured installation directory and a list of
3113program and library directories gcc will search---and don't do anything else.
3114
3115This is useful when gcc prints the error message
3c0b7970
JM
3116@samp{installation problem, cannot exec cpp0: No such file or directory}.
3117To resolve this you either need to put @file{cpp0} and the other compiler
74291a4b 3118components where gcc expects to find them, or you can set the environment
bedc7537 3119variable @env{GCC_EXEC_PREFIX} to the directory where you installed them.
74291a4b
MM
3120Don't forget the trailing '/'.
3121@xref{Environment Variables}.
1f0c3120
JM
3122
3123@item -dumpmachine
cd3bb277 3124@opindex dumpmachine
1f0c3120
JM
3125Print the compiler's target machine (for example,
3126@samp{i686-pc-linux-gnu})---and don't do anything else.
3127
3128@item -dumpversion
cd3bb277 3129@opindex dumpversion
1f0c3120
JM
3130Print the compiler version (for example, @samp{3.0})---and don't do
3131anything else.
3132
3133@item -dumpspecs
cd3bb277 3134@opindex dumpspecs
1f0c3120
JM
3135Print the compiler's built-in specs---and don't do anything else. (This
3136is used when GCC itself is being built.) @xref{Spec Files}.
74291a4b
MM
3137@end table
3138
3139@node Optimize Options
3140@section Options That Control Optimization
3141@cindex optimize options
3142@cindex options, optimization
3143
3144These options control various sorts of optimizations:
3145
2642624b 3146@table @gcctabopt
74291a4b
MM
3147@item -O
3148@itemx -O1
cd3bb277
JM
3149@opindex O
3150@opindex O1
74291a4b
MM
3151Optimize. Optimizing compilation takes somewhat more time, and a lot
3152more memory for a large function.
3153
630d3d5a 3154Without @option{-O}, the compiler's goal is to reduce the cost of
74291a4b
MM
3155compilation and to make debugging produce the expected results.
3156Statements are independent: if you stop the program with a breakpoint
3157between statements, you can then assign a new value to any variable or
3158change the program counter to any other statement in the function and
3159get exactly the results you would expect from the source code.
3160
630d3d5a 3161With @option{-O}, the compiler tries to reduce code size and execution
9c34dbbf
ZW
3162time, without performing any optimizations that take a great deal of
3163compilation time.
74291a4b
MM
3164
3165@item -O2
cd3bb277 3166@opindex O2
0c2d1a2a 3167Optimize even more. GCC performs nearly all supported optimizations
74291a4b 3168that do not involve a space-speed tradeoff. The compiler does not
630d3d5a
JM
3169perform loop unrolling or function inlining when you specify @option{-O2}.
3170As compared to @option{-O}, this option increases both compilation time
74291a4b
MM
3171and the performance of the generated code.
3172
630d3d5a 3173@option{-O2} turns on all optional optimizations except for loop unrolling,
2b2a8f1f 3174function inlining, and register renaming. It also turns on the
630d3d5a 3175@option{-fforce-mem} option on all machines and frame pointer elimination
2b2a8f1f 3176on machines where doing so does not interfere with debugging.
74291a4b 3177
081ca317
BL
3178Please note the warning under @option{-fgcse} about
3179invoking @option{-O2} on programs that use computed gotos.
3180
74291a4b 3181@item -O3
cd3bb277 3182@opindex O3
630d3d5a
JM
3183Optimize yet more. @option{-O3} turns on all optimizations specified by
3184@option{-O2} and also turns on the @option{-finline-functions} and
3185@option{-frename-registers} options.
74291a4b
MM
3186
3187@item -O0
cd3bb277 3188@opindex O0
74291a4b
MM
3189Do not optimize.
3190
c6aded7c 3191@item -Os
cd3bb277 3192@opindex Os
630d3d5a 3193Optimize for size. @option{-Os} enables all @option{-O2} optimizations that
c6aded7c
AG
3194do not typically increase code size. It also performs further
3195optimizations designed to reduce code size.
3196
630d3d5a 3197If you use multiple @option{-O} options, with or without level numbers,
74291a4b
MM
3198the last such option is the one that is effective.
3199@end table
3200
630d3d5a 3201Options of the form @option{-f@var{flag}} specify machine-independent
74291a4b 3202flags. Most flags have both positive and negative forms; the negative
630d3d5a 3203form of @option{-ffoo} would be @option{-fno-foo}. In the table below,
74291a4b
MM
3204only one of the forms is listed---the one which is not the default.
3205You can figure out the other form by either removing @samp{no-} or
3206adding it.
3207
2642624b 3208@table @gcctabopt
74291a4b 3209@item -ffloat-store
cd3bb277 3210@opindex ffloat-store
74291a4b
MM
3211Do not store floating point variables in registers, and inhibit other
3212options that might change whether a floating point value is taken from a
3213register or memory.
3214
3215@cindex floating point precision
3216This option prevents undesirable excess precision on machines such as
3217the 68000 where the floating registers (of the 68881) keep more
3218precision than a @code{double} is supposed to have. Similarly for the
3219x86 architecture. For most programs, the excess precision does only
3220good, but a few programs rely on the precise definition of IEEE floating
630d3d5a 3221point. Use @option{-ffloat-store} for such programs, after modifying
6fd74494 3222them to store all pertinent intermediate computations into variables.
74291a4b
MM
3223
3224@item -fno-default-inline
cd3bb277 3225@opindex fno-default-inline
74291a4b
MM
3226Do not make member functions inline by default merely because they are
3227defined inside the class scope (C++ only). Otherwise, when you specify
630d3d5a 3228@w{@option{-O}}, member functions defined inside class scope are compiled
74291a4b
MM
3229inline by default; i.e., you don't need to add @samp{inline} in front of
3230the member function name.
3231
3232@item -fno-defer-pop
cd3bb277 3233@opindex fno-defer-pop
74291a4b
MM
3234Always pop the arguments to each function call as soon as that function
3235returns. For machines which must pop arguments after a function call,
3236the compiler normally lets arguments accumulate on the stack for several
3237function calls and pops them all at once.
3238
3239@item -fforce-mem
cd3bb277 3240@opindex fforce-mem
74291a4b
MM
3241Force memory operands to be copied into registers before doing
3242arithmetic on them. This produces better code by making all memory
3243references potential common subexpressions. When they are not common
3244subexpressions, instruction combination should eliminate the separate
630d3d5a 3245register-load. The @option{-O2} option turns on this option.
74291a4b
MM
3246
3247@item -fforce-addr
cd3bb277 3248@opindex fforce-addr
74291a4b
MM
3249Force memory address constants to be copied into registers before
3250doing arithmetic on them. This may produce better code just as
630d3d5a 3251@option{-fforce-mem} may.
74291a4b
MM
3252
3253@item -fomit-frame-pointer
cd3bb277 3254@opindex fomit-frame-pointer
74291a4b
MM
3255Don't keep the frame pointer in a register for functions that
3256don't need one. This avoids the instructions to save, set up and
3257restore frame pointers; it also makes an extra register available
3258in many functions. @strong{It also makes debugging impossible on
3259some machines.}
3260
8aeea6e6 3261On some machines, such as the VAX, this flag has no effect, because
74291a4b
MM
3262the standard calling sequence automatically handles the frame pointer
3263and nothing is saved by pretending it doesn't exist. The
3264machine-description macro @code{FRAME_POINTER_REQUIRED} controls
3265whether a target machine supports this flag. @xref{Registers,,Register
b11cc610 3266Usage, gccint, GNU Compiler Collection (GCC) Internals}.
74291a4b 3267
1aaef9c1 3268@item -foptimize-sibling-calls
cd3bb277 3269@opindex foptimize-sibling-calls
1aaef9c1
JH
3270Optimize sibling and tail recursive calls.
3271
91ce572a 3272@item -ftrapv
cd3bb277 3273@opindex ftrapv
91ce572a
CC
3274This option generates traps for signed overflow on addition, subtraction,
3275multiplication operations.
3276
74291a4b 3277@item -fno-inline
cd3bb277 3278@opindex fno-inline
74291a4b
MM
3279Don't pay attention to the @code{inline} keyword. Normally this option
3280is used to keep the compiler from expanding any functions inline.
3281Note that if you are not optimizing, no functions can be expanded inline.
3282
3283@item -finline-functions
cd3bb277 3284@opindex finline-functions
74291a4b
MM
3285Integrate all simple functions into their callers. The compiler
3286heuristically decides which functions are simple enough to be worth
3287integrating in this way.
3288
3289If all calls to a given function are integrated, and the function is
3290declared @code{static}, then the function is normally not output as
3291assembler code in its own right.
3292
efa3896a 3293@item -finline-limit=@var{n}
cd3bb277 3294@opindex finline-limit
f9e814f1
TP
3295By default, gcc limits the size of functions that can be inlined. This flag
3296allows the control of this limit for functions that are explicitly marked as
02f52e19
AJ
3297inline (ie marked with the inline keyword or defined within the class
3298definition in c++). @var{n} is the size of functions that can be inlined in
f9e814f1 3299number of pseudo instructions (not counting parameter handling). The default
93ee12c4
GP
3300value of @var{n} is 600.
3301Increasing this value can result in more inlined code at
f9e814f1 3302the cost of compilation time and memory consumption. Decreasing usually makes
02f52e19
AJ
3303the compilation faster and less code will be inlined (which presumably
3304means slower programs). This option is particularly useful for programs that
aee96fe9 3305use inlining heavily such as those based on recursive templates with C++.
f9e814f1
TP
3306
3307@emph{Note:} pseudo instruction represents, in this particular context, an
3308abstract measurement of function's size. In no way, it represents a count
3309of assembly instructions and as such its exact meaning might change from one
3310release to an another.
3311
74291a4b 3312@item -fkeep-inline-functions
cd3bb277 3313@opindex fkeep-inline-functions
74291a4b
MM
3314Even if all calls to a given function are integrated, and the function
3315is declared @code{static}, nevertheless output a separate run-time
3316callable version of the function. This switch does not affect
3317@code{extern inline} functions.
3318
3319@item -fkeep-static-consts
cd3bb277 3320@opindex fkeep-static-consts
74291a4b
MM
3321Emit variables declared @code{static const} when optimization isn't turned
3322on, even if the variables aren't referenced.
3323
0c2d1a2a 3324GCC enables this option by default. If you want to force the compiler to
74291a4b 3325check if the variable was referenced, regardless of whether or not
630d3d5a 3326optimization is turned on, use the @option{-fno-keep-static-consts} option.
74291a4b 3327
201556f0
JJ
3328@item -fmerge-constants
3329Attempt to merge identical constants (string constants and floating point
3330constants) accross compilation units.
3331
3332This option is default for optimized compilation if assembler and linker
c21cd8b1 3333support it. Use @option{-fno-merge-constants} to inhibit this behavior.
201556f0
JJ
3334
3335@item -fmerge-all-constants
3336Attempt to merge identical constants and identical variables.
3337
3338This option implies @option{-fmerge-constants}. In addition to
3339@option{-fmerge-constants} this considers e.g. even constant initialized
3340arrays or initialized constant variables with integral or floating point
3341types. Languages like C or C++ require each non-automatic variable to
3342have distinct location, so using this option will result in non-conforming
c21cd8b1 3343behavior.
201556f0 3344
74291a4b 3345@item -fno-function-cse
cd3bb277 3346@opindex fno-function-cse
74291a4b
MM
3347Do not put function addresses in registers; make each instruction that
3348calls a constant function contain the function's address explicitly.
3349
3350This option results in less efficient code, but some strange hacks
3351that alter the assembler output may be confused by the optimizations
3352performed when this option is not used.
3353
3354@item -ffast-math
cd3bb277 3355@opindex ffast-math
9c34dbbf
ZW
3356Sets @option{-fno-math-errno}, @option{-funsafe-math-optimizations}, and @*
3357@option{-fno-trapping-math}.
de6c5979 3358
630d3d5a 3359This option causes the preprocessor macro @code{__FAST_MATH__} to be defined.
74291a4b 3360
630d3d5a 3361This option should never be turned on by any @option{-O} option since
74291a4b 3362it can result in incorrect output for programs which depend on
c1030c7c 3363an exact implementation of IEEE or ISO rules/specifications for
74291a4b 3364math functions.
9605da8a
BL
3365
3366@item -fno-math-errno
cd3bb277 3367@opindex fno-math-errno
9605da8a
BL
3368Do not set ERRNO after calling math functions that are executed
3369with a single instruction, e.g., sqrt. A program that relies on
3370IEEE exceptions for math error handling may want to use this flag
3371for speed while maintaining IEEE arithmetic compatibility.
3372
630d3d5a 3373This option should never be turned on by any @option{-O} option since
de6c5979
BL
3374it can result in incorrect output for programs which depend on
3375an exact implementation of IEEE or ISO rules/specifications for
3376math functions.
3377
9c34dbbf 3378The default is @option{-fmath-errno}.
de6c5979
BL
3379
3380@item -funsafe-math-optimizations
cd3bb277 3381@opindex funsafe-math-optimizations
de6c5979
BL
3382Allow optimizations for floating-point arithmetic that (a) assume
3383that arguments and results are valid and (b) may violate IEEE or
237b14f7
RH
3384ANSI standards. When used at link-time, it may include libraries
3385or startup files that change the default FPU control word or other
3386similar optimizations.
de6c5979 3387
630d3d5a 3388This option should never be turned on by any @option{-O} option since
de6c5979
BL
3389it can result in incorrect output for programs which depend on
3390an exact implementation of IEEE or ISO rules/specifications for
3391math functions.
3392
9c34dbbf 3393The default is @option{-fno-unsafe-math-optimizations}.
de6c5979
BL
3394
3395@item -fno-trapping-math
cd3bb277 3396@opindex fno-trapping-math
de6c5979
BL
3397Compile code assuming that floating-point operations cannot generate
3398user-visible traps. Setting this option may allow faster code
3399if one relies on ``non-stop'' IEEE arithmetic, for example.
3400
630d3d5a 3401This option should never be turned on by any @option{-O} option since
de6c5979
BL
3402it can result in incorrect output for programs which depend on
3403an exact implementation of IEEE or ISO rules/specifications for
3404math functions.
3405
9c34dbbf 3406The default is @option{-ftrapping-math}.
74291a4b
MM
3407@end table
3408
630d3d5a
JM
3409The following options control specific optimizations. The @option{-O2}
3410option turns on all of these optimizations except @option{-funroll-loops}
3411and @option{-funroll-all-loops}. On most machines, the @option{-O} option
3412turns on the @option{-fthread-jumps} and @option{-fdelayed-branch} options,
74291a4b
MM
3413but specific machines may handle it differently.
3414
3415You can use the following flags in the rare cases when ``fine-tuning''
3416of optimizations to be performed is desired.
3417
9c34dbbf
ZW
3418Not all of the optimizations performed by GCC have @option{-f} options
3419to control them.
3420
ad919812 3421@table @gcctabopt
74291a4b 3422@item -fstrength-reduce
cd3bb277 3423@opindex fstrength-reduce
74291a4b
MM
3424Perform the optimizations of loop strength reduction and
3425elimination of iteration variables.
3426
3427@item -fthread-jumps
cd3bb277 3428@opindex fthread-jumps
74291a4b
MM
3429Perform optimizations where we check to see if a jump branches to a
3430location where another comparison subsumed by the first is found. If
3431so, the first branch is redirected to either the destination of the
3432second branch or a point immediately following it, depending on whether
3433the condition is known to be true or false.
3434
3435@item -fcse-follow-jumps
cd3bb277 3436@opindex fcse-follow-jumps
74291a4b
MM
3437In common subexpression elimination, scan through jump instructions
3438when the target of the jump is not reached by any other path. For
3439example, when CSE encounters an @code{if} statement with an
3440@code{else} clause, CSE will follow the jump when the condition
3441tested is false.
3442
3443@item -fcse-skip-blocks
cd3bb277 3444@opindex fcse-skip-blocks
630d3d5a 3445This is similar to @option{-fcse-follow-jumps}, but causes CSE to
74291a4b
MM
3446follow jumps which conditionally skip over blocks. When CSE
3447encounters a simple @code{if} statement with no else clause,
630d3d5a 3448@option{-fcse-skip-blocks} causes CSE to follow the jump around the
74291a4b
MM
3449body of the @code{if}.
3450
3451@item -frerun-cse-after-loop
cd3bb277 3452@opindex frerun-cse-after-loop
74291a4b
MM
3453Re-run common subexpression elimination after loop optimizations has been
3454performed.
3455
6d6d0fa0 3456@item -frerun-loop-opt
cd3bb277 3457@opindex frerun-loop-opt
6d6d0fa0
JL
3458Run the loop optimizer twice.
3459
7506f491 3460@item -fgcse
cd3bb277 3461@opindex fgcse
7506f491
DE
3462Perform a global common subexpression elimination pass.
3463This pass also performs global constant and copy propagation.
3464
081ca317
BL
3465@emph{Note:} When compiling a program using computed gotos, a GCC
3466extension, you may get better runtime performance if you disable
3467the global common subexpression elmination pass by adding
3468@option{-fno-gcse} to the command line.
3469
a13d4ebf 3470@item -fgcse-lm
cd3bb277 3471@opindex fgcse-lm
695ac33f 3472When @option{-fgcse-lm} is enabled, global common subexpression elimination will
767094dd 3473attempt to move loads which are only killed by stores into themselves. This
a13d4ebf 3474allows a loop containing a load/store sequence to be changed to a load outside
02f52e19 3475the loop, and a copy/store within the loop.
a13d4ebf
AM
3476
3477@item -fgcse-sm
cd3bb277 3478@opindex fgcse-sm
695ac33f 3479When @option{-fgcse-sm} is enabled, A store motion pass is run after global common
767094dd 3480subexpression elimination. This pass will attempt to move stores out of loops.
695ac33f 3481When used in conjunction with @option{-fgcse-lm}, loops containing a load/store sequence
a13d4ebf
AM
3482can be changed to a load before the loop and a store after the loop.
3483
b6d24183 3484@item -fdelete-null-pointer-checks
cd3bb277 3485@opindex fdelete-null-pointer-checks
9c34dbbf
ZW
3486Use global dataflow analysis to identify and eliminate useless checks
3487for null pointers. The compiler assumes that dereferencing a null
3488pointer would have halted the program. If a pointer is checked after
3489it has already been dereferenced, it cannot be null.
3490
3491In some environments, this assumption is not true, and programs can
3492safely dereference null pointers. Use
3493@option{-fno-delete-null-pointer-checks} to disable this optimization
3494for programs which depend on that behavior.
b6d24183 3495
74291a4b 3496@item -fexpensive-optimizations
cd3bb277 3497@opindex fexpensive-optimizations
74291a4b
MM
3498Perform a number of minor optimizations that are relatively expensive.
3499
639726ba 3500@item -foptimize-register-move
59d40964 3501@itemx -fregmove
cd3bb277
JM
3502@opindex foptimize-register-move
3503@opindex fregmove
9ec36da5
JL
3504Attempt to reassign register numbers in move instructions and as
3505operands of other simple instructions in order to maximize the amount of
56159047 3506register tying. This is especially helpful on machines with two-operand
630d3d5a 3507instructions. GCC enables this optimization by default with @option{-O2}
9ec36da5
JL
3508or higher.
3509
bedc7537 3510Note @option{-fregmove} and @option{-foptimize-register-move} are the same
9ec36da5
JL
3511optimization.
3512
74291a4b 3513@item -fdelayed-branch
cd3bb277 3514@opindex fdelayed-branch
74291a4b
MM
3515If supported for the target machine, attempt to reorder instructions
3516to exploit instruction slots available after delayed branch
3517instructions.
3518
3519@item -fschedule-insns
cd3bb277 3520@opindex fschedule-insns
74291a4b
MM
3521If supported for the target machine, attempt to reorder instructions to
3522eliminate execution stalls due to required data being unavailable. This
3523helps machines that have slow floating point or memory load instructions
3524by allowing other instructions to be issued until the result of the load
3525or floating point instruction is required.
3526
3527@item -fschedule-insns2
cd3bb277 3528@opindex fschedule-insns2
630d3d5a 3529Similar to @option{-fschedule-insns}, but requests an additional pass of
74291a4b
MM
3530instruction scheduling after register allocation has been done. This is
3531especially useful on machines with a relatively small number of
3532registers and where memory load instructions take more than one cycle.
3533
3534@item -ffunction-sections
59d40964 3535@itemx -fdata-sections
cd3bb277
JM
3536@opindex ffunction-sections
3537@opindex fdata-sections
7d0756fb
CM
3538Place each function or data item into its own section in the output
3539file if the target supports arbitrary sections. The name of the
3540function or the name of the data item determines the section's name
3541in the output file.
74291a4b 3542
7d0756fb 3543Use these options on systems where the linker can perform optimizations
74291a4b
MM
3544to improve locality of reference in the instruction space. HPPA
3545processors running HP-UX and Sparc processors running Solaris 2 have
3546linkers with such optimizations. Other systems using the ELF object format
3547as well as AIX may have these optimizations in the future.
3548
7d0756fb
CM
3549Only use these options when there are significant benefits from doing
3550so. When you specify these options, the assembler and linker will
74291a4b
MM
3551create larger object and executable files and will also be slower.
3552You will not be able to use @code{gprof} on all systems if you
3553specify this option and you may have problems with debugging if
630d3d5a 3554you specify both this option and @option{-g}.
74291a4b
MM
3555
3556@item -fcaller-saves
cd3bb277 3557@opindex fcaller-saves
74291a4b
MM
3558Enable values to be allocated in registers that will be clobbered by
3559function calls, by emitting extra instructions to save and restore the
3560registers around such calls. Such allocation is done only when it
3561seems to result in better code than would otherwise be produced.
3562
81610a0d
HPN
3563This option is always enabled by default on certain machines, usually
3564those which have no call-preserved registers to use instead.
3565
3566For all machines, optimization level 2 and higher enables this flag by
3567default.
74291a4b
MM
3568
3569@item -funroll-loops
cd3bb277 3570@opindex funroll-loops
9c34dbbf
ZW
3571Unroll loops whose number of iterations can be determined at compile
3572time or upon entry to the loop. @option{-funroll-loops} implies both
3573@option{-fstrength-reduce} and @option{-frerun-cse-after-loop}. This
3574option makes code larger, and may or may not make it run faster.
74291a4b
MM
3575
3576@item -funroll-all-loops
cd3bb277 3577@opindex funroll-all-loops
9c34dbbf
ZW
3578Unroll all loops, even if their number of iterations is uncertain when
3579the loop is entered. This usually makes programs run more slowly.
3580@option{-funroll-all-loops} implies the same options as
3581@option{-funroll-loops},
3582
0dd0e980
JH
3583@item -fprefetch-loop-arrays
3584@opindex fprefetch-loop-arrays
3585If supported by the target machine, generate instructions to prefetch
3586memory to improve the performance of loops that access large arrays.
74291a4b 3587
e5eb27e5 3588@item -fmove-all-movables
cd3bb277 3589@opindex fmove-all-movables
e5eb27e5
JL
3590Forces all invariant computations in loops to be moved
3591outside the loop.
3592
3593@item -freduce-all-givs
cd3bb277 3594@opindex freduce-all-givs
e5eb27e5
JL
3595Forces all general-induction variables in loops to be
3596strength-reduced.
3597
3598@emph{Note:} When compiling programs written in Fortran,
630d3d5a 3599@option{-fmove-all-movables} and @option{-freduce-all-givs} are enabled
e5eb27e5
JL
3600by default when you use the optimizer.
3601
3602These options may generate better or worse code; results are highly
3603dependent on the structure of loops within the source code.
3604
3605These two options are intended to be removed someday, once
3606they have helped determine the efficacy of various
3607approaches to improving loop optimizations.
3608
2642624b 3609Please let us (@w{@email{gcc@@gcc.gnu.org}} and @w{@email{fortran@@gnu.org}})
e5eb27e5
JL
3610know how use of these options affects
3611the performance of your production code.
3612We're very interested in code that runs @emph{slower}
3613when these options are @emph{enabled}.
3614
74291a4b 3615@item -fno-peephole
6cfc0341 3616@itemx -fno-peephole2
cd3bb277 3617@opindex fno-peephole
6cfc0341
RH
3618@opindex fno-peephole2
3619Disable any machine-specific peephole optimizations. The difference
630d3d5a 3620between @option{-fno-peephole} and @option{-fno-peephole2} is in how they
6cfc0341
RH
3621are implemented in the compiler; some targets use one, some use the
3622other, a few use both.
861bb6c1
JL
3623
3624@item -fbranch-probabilities
cd3bb277 3625@opindex fbranch-probabilities
630d3d5a 3626After running a program compiled with @option{-fprofile-arcs}
861bb6c1 3627(@pxref{Debugging Options,, Options for Debugging Your Program or
bedc7537 3628@command{gcc}}), you can compile it a second time using
630d3d5a 3629@option{-fbranch-probabilities}, to improve optimizations based on
3de87bf2
JJ
3630the number of times each branch was taken. When the program
3631compiled with @option{-fprofile-arcs} exits it saves arc execution
3632counts to a file called @file{@var{sourcename}.da} for each source
3633file The information in this data file is very dependent on the
3634structure of the generated code, so you must use the same source code
3635and the same optimization options for both compilations.
861bb6c1 3636
630d3d5a 3637With @option{-fbranch-probabilities}, GCC puts a @samp{REG_EXEC_COUNT}
861bb6c1
JL
3638note on the first instruction of each basic block, and a
3639@samp{REG_BR_PROB} note on each @samp{JUMP_INSN} and @samp{CALL_INSN}.
3640These can be used to improve optimization. Currently, they are only
3641used in one place: in @file{reorg.c}, instead of guessing which path a
3642branch is mostly to take, the @samp{REG_BR_PROB} values are used to
3643exactly determine which path is taken more often.
8c660648 3644
454d0cc7 3645@item -fno-guess-branch-probability
cd3bb277 3646@opindex fno-guess-branch-probability
9c34dbbf
ZW
3647Do not guess branch probabilities using a randomized model.
3648
3649Sometimes gcc will opt to use a randomized model to guess branch
3650probabilities, when none are available from either profiling feedback
3651(@option{-fprofile-arcs}) or @samp{__builtin_expect}. This means that
3652different runs of the compiler on the same program may produce different
3653object code.
3654
3655In a hard real-time system, people don't want different runs of the
3656compiler to produce code that has different behavior; minimizing
3657non-determinism is of paramount import. This switch allows users to
3658reduce non-determinism, possibly at the expense of inferior
3659optimization.
454d0cc7 3660
41472af8 3661@item -fstrict-aliasing
cd3bb277 3662@opindex fstrict-aliasing
41472af8
MM
3663Allows the compiler to assume the strictest aliasing rules applicable to
3664the language being compiled. For C (and C++), this activates
3665optimizations based on the type of expressions. In particular, an
3666object of one type is assumed never to reside at the same address as an
3667object of a different type, unless the types are almost the same. For
3668example, an @code{unsigned int} can alias an @code{int}, but not a
3669@code{void*} or a @code{double}. A character type may alias any other
02f52e19 3670type.
41472af8
MM
3671
3672Pay special attention to code like this:
3673@example
02f52e19 3674union a_union @{
41472af8
MM
3675 int i;
3676 double d;
3677@};
3678
3679int f() @{
3680 a_union t;
3681 t.d = 3.0;
3682 return t.i;
3683@}
3684@end example
3685The practice of reading from a different union member than the one most
3686recently written to (called ``type-punning'') is common. Even with
630d3d5a 3687@option{-fstrict-aliasing}, type-punning is allowed, provided the memory
41472af8
MM
3688is accessed through the union type. So, the code above will work as
3689expected. However, this code might not:
3690@example
02f52e19 3691int f() @{
41472af8
MM
3692 a_union t;
3693 int* ip;
3694 t.d = 3.0;
3695 ip = &t.i;
3696 return *ip;
3697@}
3698@end example
3699
41472af8
MM
3700Every language that wishes to perform language-specific alias analysis
3701should define a function that computes, given an @code{tree}
3702node, an alias set for the node. Nodes in different alias sets are not
3703allowed to alias. For an example, see the C front-end function
3704@code{c_get_alias_set}.
41472af8 3705
efa3896a
GK
3706@item -falign-functions
3707@itemx -falign-functions=@var{n}
cd3bb277 3708@opindex falign-functions
efa3896a
GK
3709Align the start of functions to the next power-of-two greater than
3710@var{n}, skipping up to @var{n} bytes. For instance,
630d3d5a
JM
3711@option{-falign-functions=32} aligns functions to the next 32-byte
3712boundary, but @option{-falign-functions=24} would align to the next
efa3896a
GK
371332-byte boundary only if this can be done by skipping 23 bytes or less.
3714
630d3d5a 3715@option{-fno-align-functions} and @option{-falign-functions=1} are
efa3896a
GK
3716equivalent and mean that functions will not be aligned.
3717
3718Some assemblers only support this flag when @var{n} is a power of two;
3719in that case, it is rounded up.
3720
3721If @var{n} is not specified, use a machine-dependent default.
3722
3723@item -falign-labels
3724@itemx -falign-labels=@var{n}
cd3bb277 3725@opindex falign-labels
efa3896a 3726Align all branch targets to a power-of-two boundary, skipping up to
630d3d5a 3727@var{n} bytes like @option{-falign-functions}. This option can easily
efa3896a
GK
3728make code slower, because it must insert dummy operations for when the
3729branch target is reached in the usual flow of the code.
3730
630d3d5a 3731If @option{-falign-loops} or @option{-falign-jumps} are applicable and
efa3896a
GK
3732are greater than this value, then their values are used instead.
3733
3734If @var{n} is not specified, use a machine-dependent default which is
3735very likely to be @samp{1}, meaning no alignment.
3736
3737@item -falign-loops
3738@itemx -falign-loops=@var{n}
cd3bb277 3739@opindex falign-loops
efa3896a 3740Align loops to a power-of-two boundary, skipping up to @var{n} bytes
630d3d5a 3741like @option{-falign-functions}. The hope is that the loop will be
efa3896a
GK
3742executed many times, which will make up for any execution of the dummy
3743operations.
3744
3745If @var{n} is not specified, use a machine-dependent default.
3746
3747@item -falign-jumps
3748@itemx -falign-jumps=@var{n}
cd3bb277 3749@opindex falign-jumps
efa3896a
GK
3750Align branch targets to a power-of-two boundary, for branch targets
3751where the targets can only be reached by jumping, skipping up to @var{n}
630d3d5a 3752bytes like @option{-falign-functions}. In this case, no dummy operations
efa3896a
GK
3753need be executed.
3754
3755If @var{n} is not specified, use a machine-dependent default.
3756
4bae0b47 3757@item -fssa
cd3bb277 3758@opindex fssa
4bae0b47
AS
3759Perform optimizations in static single assignment form. Each function's
3760flow graph is translated into SSA form, optimizations are performed, and
90ecce3e 3761the flow graph is translated back from SSA form. Users should not
b53978a3
JO
3762specify this option, since it is not yet ready for production use.
3763
0b47e4c1
JL
3764@item -fssa-ccp
3765@opindex fssa-ccp
3766Perform Sparse Conditional Constant Propagation in SSA form. Requires
3767@option{-fssa}. Like @option{-fssa}, this is an experimental feature.
3768
62d285ff
JL
3769@item -fssa-dce
3770@opindex fssa-dce
3771Perform aggressive dead-code elimination in SSA form. Requires @option{-fssa}.
3772Like @option{-fssa}, this is an experimental feature.
4bae0b47 3773
46d3a873 3774@item -fsingle-precision-constant
cd3bb277 3775@opindex fsingle-precision-constant
46d3a873
CC
3776Treat floating point constant as single precision constant instead of
3777implicitly converting it to double precision constant.
3778
2b2a8f1f 3779@item -frename-registers
cd3bb277 3780@opindex frename-registers
c771326b 3781Attempt to avoid false dependencies in scheduled code by making use
2b2a8f1f
RH
3782of registers left over after register allocation. This optimization
3783will most benefit processors with lots of registers. It can, however,
3784make debugging impossible, since variables will no longer stay in
3785a ``home register''.
3af64fd6 3786
8582c27b
RH
3787@item -fno-cprop-registers
3788@opindex fno-cprop-registers
3789After register allocation and post-register allocation instruction splitting,
3790we perform a copy-propagation pass to try to reduce scheduling dependencies
3791and occasionally eliminate the copy.
3792
3af64fd6 3793@item --param @var{name}=@var{value}
cd3bb277 3794@opindex param
3af64fd6
MM
3795In some places, GCC uses various constants to control the amount of
3796optimization that is done. For example, GCC will not inline functions
3797that contain more that a certain number of instructions. You can
3798control some of these constants on the command-line using the
630d3d5a 3799@option{--param} option.
3af64fd6 3800
4fe9b91c 3801In each case, the @var{value} is an integer. The allowable choices for
3af64fd6
MM
3802@var{name} are given in the following table:
3803
3804@table @gcctabopt
1c4c47db
JO
3805@item max-delay-slot-insn-search
3806The maximum number of instructions to consider when looking for an
3807instruction to fill a delay slot. If more than this arbitrary number of
3808instructions is searched, the time savings from filling the delay slot
3809will be minimal so stop searching. Increasing values mean more
3810aggressive optimization, making the compile time increase with probably
3811small improvement in executable run time.
3812
3813@item max-delay-slot-live-search
3814When trying to fill delay slots, the maximum number of instructions to
3815consider when searching for a block with valid live register
3816information. Increasing this arbitrarily chosen value means more
3817aggressive optimization, increasing the compile time. This parameter
3818should be removed when the delay slot code is rewritten to maintain the
3819control-flow graph.
33d3b05b
MM
3820
3821@item max-gcse-memory
3822The approximate maximum amount of memory that will be allocated in
3823order to perform the global common subexpression elimination
3824optimization. If more memory than specified is required, the
3825optimization will not be done.
3af64fd6 3826
740f35a0 3827@item max-gcse-passes
7dac2f89 3828The maximum number of passes of GCSE to run.
740f35a0 3829
4a121cc3 3830@item max-pending-list-length
0c688a7d 3831The maximum number of pending dependencies scheduling will allow
4a121cc3
AM
3832before flushing the current state and starting over. Large functions
3833with few branches or calls can create excessively large lists which
3834needlessly consume memory and resources.
3835
1c4c47db
JO
3836@item max-inline-insns
3837If an function contains more than this many instructions, it
3838will not be inlined. This option is precisely equivalent to
630d3d5a 3839@option{-finline-limit}.
1c4c47db
JO
3840
3841@end table
74291a4b
MM
3842@end table
3843
3844@node Preprocessor Options
3845@section Options Controlling the Preprocessor
3846@cindex preprocessor options
3847@cindex options, preprocessor
3848
3849These options control the C preprocessor, which is run on each C source
3850file before actual compilation.
3851
630d3d5a
JM
3852If you use the @option{-E} option, nothing is done except preprocessing.
3853Some of these options make sense only together with @option{-E} because
74291a4b
MM
3854they cause the preprocessor output to be unsuitable for actual
3855compilation.
3856
2642624b 3857@table @gcctabopt
74291a4b 3858@item -include @var{file}
cd3bb277 3859@opindex include
74291a4b 3860Process @var{file} as input before processing the regular input file.
630d3d5a
JM
3861In effect, the contents of @var{file} are compiled first. Any @option{-D}
3862and @option{-U} options on the command line are always processed before
3863@option{-include @var{file}}, regardless of the order in which they are
3864written. All the @option{-include} and @option{-imacros} options are
74291a4b
MM
3865processed in the order in which they are written.
3866
3867@item -imacros @var{file}
cd3bb277 3868@opindex imacros
74291a4b
MM
3869Process @var{file} as input, discarding the resulting output, before
3870processing the regular input file. Because the output generated from
630d3d5a 3871@var{file} is discarded, the only effect of @option{-imacros @var{file}}
74291a4b 3872is to make the macros defined in @var{file} available for use in the
630d3d5a 3873main input. All the @option{-include} and @option{-imacros} options are
e582248c 3874processed in the order in which they are written.
74291a4b
MM
3875
3876@item -idirafter @var{dir}
cd3bb277 3877@opindex idirafter
74291a4b
MM
3878@cindex second include path
3879Add the directory @var{dir} to the second include path. The directories
3880on the second include path are searched when a header file is not found
3881in any of the directories in the main include path (the one that
630d3d5a 3882@option{-I} adds to).
74291a4b
MM
3883
3884@item -iprefix @var{prefix}
cd3bb277 3885@opindex iprefix
630d3d5a 3886Specify @var{prefix} as the prefix for subsequent @option{-iwithprefix}
74291a4b
MM
3887options.
3888
3889@item -iwithprefix @var{dir}
cd3bb277 3890@opindex iwithprefix
74291a4b
MM
3891Add a directory to the second include path. The directory's name is
3892made by concatenating @var{prefix} and @var{dir}, where @var{prefix} was
630d3d5a 3893specified previously with @option{-iprefix}. If you have not specified a
74291a4b
MM
3894prefix yet, the directory containing the installed passes of the
3895compiler is used as the default.
3896
3897@item -iwithprefixbefore @var{dir}
cd3bb277 3898@opindex iwithprefixbefore
74291a4b
MM
3899Add a directory to the main include path. The directory's name is made
3900by concatenating @var{prefix} and @var{dir}, as in the case of
630d3d5a 3901@option{-iwithprefix}.
74291a4b
MM
3902
3903@item -isystem @var{dir}
cd3bb277 3904@opindex isystem
74291a4b
MM
3905Add a directory to the beginning of the second include path, marking it
3906as a system directory, so that it gets the same special treatment as
3907is applied to the standard system directories.
3908
3909@item -nostdinc
cd3bb277 3910@opindex nostdinc
74291a4b 3911Do not search the standard system directories for header files. Only
630d3d5a 3912the directories you have specified with @option{-I} options (and the
74291a4b 3913current directory, if appropriate) are searched. @xref{Directory
630d3d5a 3914Options}, for information on @option{-I}.
74291a4b 3915
dfb5868d
NS
3916By using both @option{-nostdinc} and @option{-I-}, you can limit the include-file
3917search path to only those directories you specify explicitly.
74291a4b 3918
e582248c 3919@item -remap
cd3bb277 3920@opindex remap
e582248c
NB
3921When searching for a header file in a directory, remap file names if a
3922file named @file{header.gcc} exists in that directory. This can be used
3923to work around limitations of file systems with file name restrictions.
3924The @file{header.gcc} file should contain a series of lines with two
3925tokens on each line: the first token is the name to map, and the second
3926token is the actual name to use.
3927
74291a4b 3928@item -undef
cd3bb277 3929@opindex undef
74291a4b
MM
3930Do not predefine any nonstandard macros. (Including architecture flags).
3931
3932@item -E
cd3bb277 3933@opindex E
74291a4b
MM
3934Run only the C preprocessor. Preprocess all the C source files
3935specified and output the results to standard output or to the
3936specified output file.
3937
3938@item -C
cd3bb277 3939@opindex C
74291a4b 3940Tell the preprocessor not to discard comments. Used with the
630d3d5a 3941@option{-E} option.
74291a4b
MM
3942
3943@item -P
cd3bb277 3944@opindex P
74291a4b 3945Tell the preprocessor not to generate @samp{#line} directives.
630d3d5a 3946Used with the @option{-E} option.
74291a4b
MM
3947
3948@cindex make
3949@cindex dependencies, make
3950@item -M
cd3bb277 3951@opindex M
e582248c 3952Instead of outputting the result of preprocessing, output a rule
56cd5b95
NB
3953suitable for @command{make} describing the dependencies of the main
3954source file. The preprocessor outputs one @command{make} rule containing
3955the object file name for that source file, a colon, and the names of all
3956the included files, including those coming from @option{-include} or
3957@option{-imacros} command line options.
74291a4b 3958
56cd5b95
NB
3959Unless specified explicitly (with @option{-MT} or @option{-MQ}), the
3960object file name consists of the basename of the source file with any
3961suffix replaced with object file suffix. If there are many included
3962files then the rule is split into several lines using @samp{\}-newline.
3963The rule has no commands.
3964
3965Passing @option{-M} to the driver implies @option{-E}.
74291a4b 3966
e582248c 3967@item -MM
cd3bb277 3968@opindex MM
70b6aaed
NB
3969Like @option{-M} but do not mention header files that are found in
3970system header directories, nor header files that are included,
3971directly or indirectly, from such a header.
3972
3973This implies that the choice of angle brackets or double quotes in an
3974@samp{#include} directive does not in itself determine whether that
3975header will appear in @option{-MM} dependency output. This is a
3976slight change in semantics from GCC versions 3.0 and earlier.
e582248c 3977
7da723ef 3978@item -MD
cd3bb277 3979@opindex MD
56cd5b95
NB
3980@option{-MD} is equivalent to @option{-M -MF @var{file}}, except that
3981@option{-E} is not implied. The driver determines @var{file} based on
3982whether an @option{-o} option is given. If it is, the driver uses its
3983argument but with a suffix of @file{.d}, otherwise it take the
3984basename of the input file and applies a @file{.d} suffix.
3985
3986If @option{-MD} is used in conjunction with @option{-E}, any
3987@option{-o} switch is understood to specify the dependency output file
3988(but @pxref{-MF}), but if used without @option{-E}, each @option{-o}
3989is understood to specify a target object file.
7da723ef 3990
56cd5b95
NB
3991Since @option{-E} is not implied, @option{-MD} can be used to generate
3992a dependency output file as a side-effect of the compilation process.
7da723ef
NB
3993
3994With Mach, you can use the utility @code{md} to merge multiple
3995dependency files into a single dependency file suitable for using with
3996the @samp{make} command.
3997
d396403a 3998@item -MMD
cd3bb277 3999@opindex MMD
630d3d5a 4000Like @option{-MD} except mention only user header files, not system
7da723ef
NB
4001-header files.
4002
e582248c 4003@item -MF @var{file}
cd3bb277 4004@opindex MF
56cd5b95
NB
4005@anchor{-MF}
4006When used with @option{-M} or @option{-MM}, specifies a
4007file to write the dependencies to. If no @option{-MF} switch is given
4008the preprocessor sends the rules to the same place it would have sent
4009preprocessed output.
4010
4011When used with the driver options @option{-MD} or @option{-MMD},
4012@option{-MF} overrides the default dependency output file.
e582248c 4013
74291a4b 4014Another way to specify output of a @code{make} rule is by setting
bedc7537 4015the environment variable @env{DEPENDENCIES_OUTPUT} (@pxref{Environment
74291a4b
MM
4016Variables}).
4017
74291a4b 4018@item -MG
cd3bb277 4019@opindex MG
630d3d5a 4020When used with @option{-M} or @option{-MM}, @option{-MG} says to treat missing
e582248c
NB
4021header files as generated files and assume they live in the same
4022directory as the source file. It suppresses preprocessed output, as a
4023missing header file is ordinarily an error.
4024
4025This feature is used in automatic updating of makefiles.
4026
4027@item -MP
cd3bb277 4028@opindex MP
e582248c
NB
4029This option instructs CPP to add a phony target for each dependency
4030other than the main file, causing each to depend on nothing. These
4031dummy rules work around errors @code{make} gives if you remove header
4032files without updating the @code{Makefile} to match.
4033
4034This is typical output:-
4035
4036@smallexample
4037/tmp/test.o: /tmp/test.c /tmp/test.h
4038
4039/tmp/test.h:
4040@end smallexample
4041
4042@item -MQ @var{target}
4043@item -MT @var{target}
cd3bb277
JM
4044@opindex MQ
4045@opindex MT
e582248c
NB
4046By default CPP uses the main file name, including any path, and appends
4047the object suffix, normally ``.o'', to it to obtain the name of the
630d3d5a 4048target for dependency generation. With @option{-MT} you can specify a
e582248c
NB
4049target yourself, overriding the default one.
4050
4051If you want multiple targets, you can specify them as a single argument
630d3d5a 4052to @option{-MT}, or use multiple @option{-MT} options.
e582248c
NB
4053
4054The targets you specify are output in the order they appear on the
630d3d5a
JM
4055command line. @option{-MQ} is identical to @option{-MT}, except that the
4056target name is quoted for Make, but with @option{-MT} it isn't. For
4057example, @option{-MT '$(objpfx)foo.o'} gives
e582248c
NB
4058
4059@smallexample
4060$(objpfx)foo.o: /tmp/foo.c
4061@end smallexample
4062
630d3d5a 4063but @option{-MQ '$(objpfx)foo.o'} gives
e582248c
NB
4064
4065@smallexample
4066$$(objpfx)foo.o: /tmp/foo.c
4067@end smallexample
4068
4069The default target is automatically quoted, as if it were given with
630d3d5a 4070@option{-MQ}.
74291a4b
MM
4071
4072@item -H
cd3bb277 4073@opindex H
74291a4b
MM
4074Print the name of each header file used, in addition to other normal
4075activities.
4076
4077@item -A@var{question}(@var{answer})
cd3bb277 4078@opindex A
74291a4b
MM
4079Assert the answer @var{answer} for @var{question}, in case it is tested
4080with a preprocessing conditional such as @samp{#if
630d3d5a 4081#@var{question}(@var{answer})}. @option{-A-} disables the standard
74291a4b
MM
4082assertions that normally describe the target machine.
4083
4084@item -D@var{macro}
cd3bb277 4085@opindex D
74291a4b
MM
4086Define macro @var{macro} with the string @samp{1} as its definition.
4087
4088@item -D@var{macro}=@var{defn}
630d3d5a
JM
4089Define macro @var{macro} as @var{defn}. All instances of @option{-D} on
4090the command line are processed before any @option{-U} options.
74291a4b 4091
630d3d5a
JM
4092Any @option{-D} and @option{-U} options on the command line are processed in
4093order, and always before @option{-imacros @var{file}}, regardless of the
e582248c
NB
4094order in which they are written.
4095
74291a4b 4096@item -U@var{macro}
cd3bb277 4097@opindex U
630d3d5a
JM
4098Undefine macro @var{macro}. @option{-U} options are evaluated after all
4099@option{-D} options, but before any @option{-include} and @option{-imacros}
74291a4b
MM
4100options.
4101
630d3d5a
JM
4102Any @option{-D} and @option{-U} options on the command line are processed in
4103order, and always before @option{-imacros @var{file}}, regardless of the
e582248c
NB
4104order in which they are written.
4105
74291a4b 4106@item -dM
cd3bb277 4107@opindex dM
74291a4b 4108Tell the preprocessor to output only a list of the macro definitions
630d3d5a 4109that are in effect at the end of preprocessing. Used with the @option{-E}
74291a4b
MM
4110option.
4111
4112@item -dD
cd3bb277 4113@opindex dD
74291a4b
MM
4114Tell the preprocessing to pass all macro definitions into the output, in
4115their proper sequence in the rest of the output.
4116
4117@item -dN
cd3bb277 4118@opindex dN
630d3d5a 4119Like @option{-dD} except that the macro arguments and contents are omitted.
74291a4b
MM
4120Only @samp{#define @var{name}} is included in the output.
4121
e582248c 4122@item -dI
cd3bb277 4123@opindex dI
e582248c
NB
4124Output @samp{#include} directives in addition to the result of
4125preprocessing.
4126
3bce8a01
NB
4127@item -fpreprocessed
4128@opindex fpreprocessed
4129Indicate to the preprocessor that the input file has already been
4130preprocessed. This suppresses things like macro expansion, trigraph
4131conversion, escaped newline splicing, and processing of most directives.
6d34c1c4
NB
4132The preprocessor still recognizes and removes comments, so that you can
4133pass a file preprocessed with @option{-C} to the compiler without
4134problems. In this mode the integrated preprocessor is little more than
4135a tokenizer for the front ends.
3bce8a01 4136
630d3d5a 4137@option{-fpreprocessed} is implicit if the input file has one of the
6d34c1c4
NB
4138extensions @samp{i}, @samp{ii} or @samp{mi}. These are the extensions
4139that GCC uses for preprocessed files created by @option{-save-temps}.
3bce8a01 4140
74291a4b 4141@item -trigraphs
cd3bb277 4142@opindex trigraphs
e582248c
NB
4143Process ISO standard trigraph sequences. These are three-character
4144sequences, all starting with @samp{??}, that are defined by ISO C to
4145stand for single characters. For example, @samp{??/} stands for
4146@samp{\}, so @samp{'??/n'} is a character constant for a newline. By
4147default, GCC ignores trigraphs, but in standard-conforming modes it
630d3d5a 4148converts them. See the @option{-std} and @option{-ansi} options.
e582248c
NB
4149
4150The nine trigraph sequences are
4151@table @samp
4152@item ??(
aee96fe9 4153@expansion{} @samp{[}
e582248c
NB
4154
4155@item ??)
aee96fe9 4156@expansion{} @samp{]}
e582248c
NB
4157
4158@item ??<
aee96fe9 4159@expansion{} @samp{@{}
e582248c
NB
4160
4161@item ??>
aee96fe9 4162@expansion{} @samp{@}}
e582248c
NB
4163
4164@item ??=
aee96fe9 4165@expansion{} @samp{#}
e582248c
NB
4166
4167@item ??/
aee96fe9 4168@expansion{} @samp{\}
e582248c
NB
4169
4170@item ??'
aee96fe9 4171@expansion{} @samp{^}
e582248c
NB
4172
4173@item ??!
aee96fe9 4174@expansion{} @samp{|}
e582248c
NB
4175
4176@item ??-
aee96fe9 4177@expansion{} @samp{~}
e582248c
NB
4178
4179@end table
4180
4181Trigraph support is not popular, so many compilers do not implement it
4182properly. Portable code should not rely on trigraphs being either
4183converted or ignored.
74291a4b 4184
aee96fe9 4185@item -Wp,@var{option}
cd3bb277 4186@opindex Wp
bedc7537 4187Pass @var{option} as an option to the preprocessor. If @var{option}
74291a4b
MM
4188contains commas, it is split into multiple options at the commas.
4189@end table
4190
4191@node Assembler Options
4192@section Passing Options to the Assembler
4193
4194@c prevent bad page break with this line
4195You can pass options to the assembler.
4196
2642624b 4197@table @gcctabopt
aee96fe9 4198@item -Wa,@var{option}
cd3bb277 4199@opindex Wa
74291a4b
MM
4200Pass @var{option} as an option to the assembler. If @var{option}
4201contains commas, it is split into multiple options at the commas.
4202@end table
4203
4204@node Link Options
4205@section Options for Linking
4206@cindex link options
4207@cindex options, linking
4208
4209These options come into play when the compiler links object files into
4210an executable output file. They are meaningless if the compiler is
4211not doing a link step.
4212
2642624b 4213@table @gcctabopt
74291a4b
MM
4214@cindex file names
4215@item @var{object-file-name}
4216A file name that does not end in a special recognized suffix is
4217considered to name an object file or library. (Object files are
4218distinguished from libraries by the linker according to the file
4219contents.) If linking is done, these object files are used as input
4220to the linker.
4221
4222@item -c
4223@itemx -S
4224@itemx -E
cd3bb277
JM
4225@opindex c
4226@opindex S
4227@opindex E
74291a4b
MM
4228If any of these options is used, then the linker is not run, and
4229object file names should not be used as arguments. @xref{Overall
4230Options}.
4231
4232@cindex Libraries
4233@item -l@var{library}
4275c4c4 4234@itemx -l @var{library}
cd3bb277 4235@opindex l
4275c4c4
JS
4236Search the library named @var{library} when linking. (The second
4237alternative with the library as a separate argument is only for
4238POSIX compliance and is not recommended.)
74291a4b
MM
4239
4240It makes a difference where in the command you write this option; the
4275c4c4 4241linker searches and processes libraries and object files in the order they
74291a4b
MM
4242are specified. Thus, @samp{foo.o -lz bar.o} searches library @samp{z}
4243after file @file{foo.o} but before @file{bar.o}. If @file{bar.o} refers
4244to functions in @samp{z}, those functions may not be loaded.
4245
4246The linker searches a standard list of directories for the library,
4247which is actually a file named @file{lib@var{library}.a}. The linker
4248then uses this file as if it had been specified precisely by name.
4249
4250The directories searched include several standard system directories
630d3d5a 4251plus any that you specify with @option{-L}.
74291a4b
MM
4252
4253Normally the files found this way are library files---archive files
4254whose members are object files. The linker handles an archive file by
4255scanning through it for members which define symbols that have so far
4256been referenced but not defined. But if the file that is found is an
4257ordinary object file, it is linked in the usual fashion. The only
630d3d5a
JM
4258difference between using an @option{-l} option and specifying a file name
4259is that @option{-l} surrounds @var{library} with @samp{lib} and @samp{.a}
74291a4b
MM
4260and searches several directories.
4261
4262@item -lobjc
cd3bb277 4263@opindex lobjc
630d3d5a 4264You need this special case of the @option{-l} option in order to
2147b154 4265link an Objective-C program.
74291a4b
MM
4266
4267@item -nostartfiles
cd3bb277 4268@opindex nostartfiles
74291a4b 4269Do not use the standard system startup files when linking.
bedc7537
NC
4270The standard system libraries are used normally, unless @option{-nostdlib}
4271or @option{-nodefaultlibs} is used.
74291a4b
MM
4272
4273@item -nodefaultlibs
cd3bb277 4274@opindex nodefaultlibs
74291a4b
MM
4275Do not use the standard system libraries when linking.
4276Only the libraries you specify will be passed to the linker.
bedc7537 4277The standard startup files are used normally, unless @option{-nostartfiles}
4754172c 4278is used. The compiler may generate calls to memcmp, memset, and memcpy
c1030c7c 4279for System V (and ISO C) environments or to bcopy and bzero for
4754172c
CM
4280BSD environments. These entries are usually resolved by entries in
4281libc. These entry points should be supplied through some other
4282mechanism when this option is specified.
74291a4b
MM
4283
4284@item -nostdlib
cd3bb277 4285@opindex nostdlib
74291a4b
MM
4286Do not use the standard system startup files or libraries when linking.
4287No startup files and only the libraries you specify will be passed to
767094dd 4288the linker. The compiler may generate calls to memcmp, memset, and memcpy
c1030c7c 4289for System V (and ISO C) environments or to bcopy and bzero for
4754172c
CM
4290BSD environments. These entries are usually resolved by entries in
4291libc. These entry points should be supplied through some other
4292mechanism when this option is specified.
74291a4b 4293
630d3d5a
JM
4294@cindex @option{-lgcc}, use with @option{-nostdlib}
4295@cindex @option{-nostdlib} and unresolved references
4296@cindex unresolved references and @option{-nostdlib}
4297@cindex @option{-lgcc}, use with @option{-nodefaultlibs}
4298@cindex @option{-nodefaultlibs} and unresolved references
4299@cindex unresolved references and @option{-nodefaultlibs}
4300One of the standard libraries bypassed by @option{-nostdlib} and
4301@option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
0c2d1a2a 4302that GCC uses to overcome shortcomings of particular machines, or special
74291a4b 4303needs for some languages.
b11cc610
JM
4304(@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
4305Collection (GCC) Internals},
74291a4b 4306for more discussion of @file{libgcc.a}.)
74291a4b 4307In most cases, you need @file{libgcc.a} even when you want to avoid
630d3d5a
JM
4308other standard libraries. In other words, when you specify @option{-nostdlib}
4309or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
0c2d1a2a 4310This ensures that you have no unresolved references to internal GCC
74291a4b 4311library subroutines. (For example, @samp{__main}, used to ensure C++
b11cc610
JM
4312constructors will be called; @pxref{Collect2,,@code{collect2}, gccint,
4313GNU Compiler Collection (GCC) Internals}.)
74291a4b
MM
4314
4315@item -s
cd3bb277 4316@opindex s
74291a4b
MM
4317Remove all symbol table and relocation information from the executable.
4318
4319@item -static
cd3bb277 4320@opindex static
74291a4b
MM
4321On systems that support dynamic linking, this prevents linking with the shared
4322libraries. On other systems, this option has no effect.
4323
4324@item -shared
cd3bb277 4325@opindex shared
74291a4b 4326Produce a shared object which can then be linked with other objects to
1d3b0e2c 4327form an executable. Not all systems support this option. For predictable
02f52e19 4328results, you must also specify the same set of options that were used to
630d3d5a 4329generate code (@option{-fpic}, @option{-fPIC}, or model suboptions)
2642624b 4330when you specify this option.@footnote{On some systems, @samp{gcc -shared}
767094dd 4331needs to build supplementary stub code for constructors to work. On
2642624b 4332multi-libbed systems, @samp{gcc -shared} must select the correct support
1d3b0e2c 4333libraries to link against. Failing to supply the correct flags may lead
767094dd 4334to subtle defects. Supplying them in cases where they are not necessary
1d3b0e2c 4335is innocuous.}
74291a4b 4336
9db0819e
RH
4337@item -shared-libgcc
4338@itemx -static-libgcc
cd3bb277
JM
4339@opindex shared-libgcc
4340@opindex static-libgcc
9db0819e
RH
4341On systems that provide @file{libgcc} as a shared library, these options
4342force the use of either the shared or static version respectively.
4343If no shared version of @file{libgcc} was built when the compiler was
4344configured, these options have no effect.
4345
4346There are several situations in which an application should use the
4347shared @file{libgcc} instead of the static version. The most common
4348of these is when the application wishes to throw and catch exceptions
4349across different shared libraries. In that case, each of the libraries
4350as well as the application itself should use the shared @file{libgcc}.
4351
5c181756
AO
4352Therefore, the G++ and GCJ drivers automatically add
4353@option{-shared-libgcc} whenever you build a shared library or a main
4354executable, because C++ and Java programs typically use exceptions, so
4355this is the right thing to do.
4356
4357If, instead, you use the GCC driver to create shared libraries, you may
4358find that they will not always be linked with the shared @file{libgcc}.
4359If GCC finds, at its configuration time, that you have a GNU linker that
4360does not support option @option{--eh-frame-hdr}, it will link the shared
4361version of @file{libgcc} into shared libraries by default. Otherwise,
4362it will take advantage of the linker and optimize away the linking with
4363the shared version of @file{libgcc}, linking with the static version of
4364libgcc by default. This allows exceptions to propagate through such
4365shared libraries, without incurring relocation costs at library load
4366time.
4367
4368However, if a library or main executable is supposed to throw or catch
4369exceptions, you must link it using the G++ or GCJ driver, as appropriate
4370for the languages used in the program, or using the option
4371@option{-shared-libgcc}, such that it is linked with the shared
049f6ec9 4372@file{libgcc}.
9db0819e 4373
74291a4b 4374@item -symbolic
cd3bb277 4375@opindex symbolic
74291a4b
MM
4376Bind references to global symbols when building a shared object. Warn
4377about any unresolved references (unless overridden by the link editor
4378option @samp{-Xlinker -z -Xlinker defs}). Only a few systems support
4379this option.
4380
4381@item -Xlinker @var{option}
cd3bb277 4382@opindex Xlinker
74291a4b 4383Pass @var{option} as an option to the linker. You can use this to
0c2d1a2a 4384supply system-specific linker options which GCC does not know how to
74291a4b
MM
4385recognize.
4386
4387If you want to pass an option that takes an argument, you must use
630d3d5a
JM
4388@option{-Xlinker} twice, once for the option and once for the argument.
4389For example, to pass @option{-assert definitions}, you must write
74291a4b 4390@samp{-Xlinker -assert -Xlinker definitions}. It does not work to write
630d3d5a 4391@option{-Xlinker "-assert definitions"}, because this passes the entire
74291a4b
MM
4392string as a single argument, which is not what the linker expects.
4393
aee96fe9 4394@item -Wl,@var{option}
cd3bb277 4395@opindex Wl
74291a4b
MM
4396Pass @var{option} as an option to the linker. If @var{option} contains
4397commas, it is split into multiple options at the commas.
4398
4399@item -u @var{symbol}
cd3bb277 4400@opindex u
74291a4b 4401Pretend the symbol @var{symbol} is undefined, to force linking of
630d3d5a 4402library modules to define it. You can use @option{-u} multiple times with
74291a4b
MM
4403different symbols to force loading of additional library modules.
4404@end table
4405
4406@node Directory Options
4407@section Options for Directory Search
4408@cindex directory options
4409@cindex options, directory search
4410@cindex search path
4411
4412These options specify directories to search for header files, for
4413libraries and for parts of the compiler:
4414
2642624b 4415@table @gcctabopt
74291a4b 4416@item -I@var{dir}
cd3bb277 4417@opindex I
861bb6c1
JL
4418Add the directory @var{dir} to the head of the list of directories to be
4419searched for header files. This can be used to override a system header
4420file, substituting your own version, since these directories are
d0a5eb32
RK
4421searched before the system header file directories. However, you should
4422not use this option to add directories that contain vendor-supplied
767094dd 4423system header files (use @option{-isystem} for that). If you use more than
630d3d5a 4424one @option{-I} option, the directories are scanned in left-to-right
74291a4b
MM
4425order; the standard system directories come after.
4426
dbead49c
NS
4427If a standard system include directory, or a directory specified with
4428@option{-isystem}, is also specified with @option{-I}, it will be
4429searched only in the position requested by @option{-I}. Also, it will
4430not be considered a system include directory. If that directory really
4431does contain system headers, there is a good chance that they will
4432break. For instance, if GCC's installation procedure edited the headers
4433in @file{/usr/include} to fix bugs, @samp{-I/usr/include} will cause the
4434original, buggy headers to be found instead of the corrected ones. GCC
4435will issue a warning when a system include directory is hidden in this
4436way.
4437
74291a4b 4438@item -I-
cd3bb277 4439@opindex I-
630d3d5a 4440Any directories you specify with @option{-I} options before the @option{-I-}
74291a4b
MM
4441option are searched only for the case of @samp{#include "@var{file}"};
4442they are not searched for @samp{#include <@var{file}>}.
4443
630d3d5a
JM
4444If additional directories are specified with @option{-I} options after
4445the @option{-I-}, these directories are searched for all @samp{#include}
4446directives. (Ordinarily @emph{all} @option{-I} directories are used
74291a4b
MM
4447this way.)
4448
630d3d5a 4449In addition, the @option{-I-} option inhibits the use of the current
74291a4b
MM
4450directory (where the current input file came from) as the first search
4451directory for @samp{#include "@var{file}"}. There is no way to
630d3d5a 4452override this effect of @option{-I-}. With @option{-I.} you can specify
74291a4b
MM
4453searching the directory which was current when the compiler was
4454invoked. That is not exactly the same as what the preprocessor does
4455by default, but it is often satisfactory.
4456
630d3d5a
JM
4457@option{-I-} does not inhibit the use of the standard system directories
4458for header files. Thus, @option{-I-} and @option{-nostdinc} are
74291a4b
MM
4459independent.
4460
4461@item -L@var{dir}
cd3bb277 4462@opindex L
74291a4b 4463Add directory @var{dir} to the list of directories to be searched
630d3d5a 4464for @option{-l}.
74291a4b
MM
4465
4466@item -B@var{prefix}
cd3bb277 4467@opindex B
74291a4b
MM
4468This option specifies where to find the executables, libraries,
4469include files, and data files of the compiler itself.
4470
4471The compiler driver program runs one or more of the subprograms
4472@file{cpp}, @file{cc1}, @file{as} and @file{ld}. It tries
4473@var{prefix} as a prefix for each program it tries to run, both with and
4474without @samp{@var{machine}/@var{version}/} (@pxref{Target Options}).
4475
4476For each subprogram to be run, the compiler driver first tries the
630d3d5a 4477@option{-B} prefix, if any. If that name is not found, or if @option{-B}
74291a4b
MM
4478was not specified, the driver tries two standard prefixes, which are
4479@file{/usr/lib/gcc/} and @file{/usr/local/lib/gcc-lib/}. If neither of
4480those results in a file name that is found, the unmodified program
4481name is searched for using the directories specified in your
bedc7537 4482@env{PATH} environment variable.
74291a4b 4483
07804c3b
NC
4484The compiler will check to see if the path provided by the @option{-B}
4485refers to a directory, and if necessary it will add a directory
4486separator character at the end of the path.
4487
630d3d5a 4488@option{-B} prefixes that effectively specify directory names also apply
74291a4b 4489to libraries in the linker, because the compiler translates these
630d3d5a 4490options into @option{-L} options for the linker. They also apply to
74291a4b 4491includes files in the preprocessor, because the compiler translates these
630d3d5a 4492options into @option{-isystem} options for the preprocessor. In this case,
74291a4b
MM
4493the compiler appends @samp{include} to the prefix.
4494
4495The run-time support file @file{libgcc.a} can also be searched for using
630d3d5a 4496the @option{-B} prefix, if needed. If it is not found there, the two
74291a4b
MM
4497standard prefixes above are tried, and that is all. The file is left
4498out of the link if it is not found by those means.
4499
630d3d5a 4500Another way to specify a prefix much like the @option{-B} prefix is to use
bedc7537 4501the environment variable @env{GCC_EXEC_PREFIX}. @xref{Environment
74291a4b 4502Variables}.
861bb6c1 4503
07804c3b 4504As a special kludge, if the path provided by @option{-B} is
bf4eebe0
NC
4505@file{[dir/]stage@var{N}/}, where @var{N} is a number in the range 0 to
45069, then it will be replaced by @file{[dir/]include}. This is to help
7dac2f89 4507with boot-strapping the compiler.
07804c3b 4508
861bb6c1 4509@item -specs=@var{file}
cd3bb277 4510@opindex specs
861bb6c1
JL
4511Process @var{file} after the compiler reads in the standard @file{specs}
4512file, in order to override the defaults that the @file{gcc} driver
4513program uses when determining what switches to pass to @file{cc1},
4514@file{cc1plus}, @file{as}, @file{ld}, etc. More than one
630d3d5a 4515@option{-specs=@var{file}} can be specified on the command line, and they
861bb6c1 4516are processed in order, from left to right.
74291a4b
MM
4517@end table
4518
ee457005
JM
4519@c man end
4520
a743d340
NC
4521@node Spec Files
4522@section Specifying subprocesses and the switches to pass to them
4523@cindex Spec Files
bedc7537 4524@command{gcc} is a driver program. It performs its job by invoking a
a743d340
NC
4525sequence of other programs to do the work of compiling, assembling and
4526linking. GCC interprets its command-line parameters and uses these to
4527deduce which programs it should invoke, and which command-line options
c21cd8b1 4528it ought to place on their command lines. This behavior is controlled
a743d340
NC
4529by @dfn{spec strings}. In most cases there is one spec string for each
4530program that GCC can invoke, but a few programs have multiple spec
c21cd8b1 4531strings to control their behavior. The spec strings built into GCC can
630d3d5a 4532be overridden by using the @option{-specs=} command-line switch to specify
a743d340
NC
4533a spec file.
4534
4535@dfn{Spec files} are plaintext files that are used to construct spec
4536strings. They consist of a sequence of directives separated by blank
4537lines. The type of directive is determined by the first non-whitespace
4538character on the line and it can be one of the following:
4539
4540@table @code
4541@item %@var{command}
4542Issues a @var{command} to the spec file processor. The commands that can
02f52e19 4543appear here are:
a743d340
NC
4544
4545@table @code
4546@item %include <@var{file}>
4547@cindex %include
4548Search for @var{file} and insert its text at the current point in the
4549specs file.
4550
4551@item %include_noerr <@var{file}>
4552@cindex %include_noerr
4553Just like @samp{%include}, but do not generate an error message if the include
4554file cannot be found.
4555
4556@item %rename @var{old_name} @var{new_name}
4557@cindex %rename
4558Rename the spec string @var{old_name} to @var{new_name}.
4559
4560@end table
4561
4562@item *[@var{spec_name}]:
4563This tells the compiler to create, override or delete the named spec
4564string. All lines after this directive up to the next directive or
4565blank line are considered to be the text for the spec string. If this
4566results in an empty string then the spec will be deleted. (Or, if the
4567spec did not exist, then nothing will happened.) Otherwise, if the spec
4568does not currently exist a new spec will be created. If the spec does
4569exist then its contents will be overridden by the text of this
4570directive, unless the first character of that text is the @samp{+}
4571character, in which case the text will be appended to the spec.
4572
4573@item [@var{suffix}]:
4574Creates a new @samp{[@var{suffix}] spec} pair. All lines after this directive
4575and up to the next directive or blank line are considered to make up the
02f52e19 4576spec string for the indicated suffix. When the compiler encounters an
a743d340
NC
4577input file with the named suffix, it will processes the spec string in
4578order to work out how to compile that file. For example:
4579
4580@smallexample
4581.ZZ:
4582z-compile -input %i
4583@end smallexample
4584
4585This says that any input file whose name ends in @samp{.ZZ} should be
4586passed to the program @samp{z-compile}, which should be invoked with the
630d3d5a 4587command-line switch @option{-input} and with the result of performing the
a743d340
NC
4588@samp{%i} substitution. (See below.)
4589
4590As an alternative to providing a spec string, the text that follows a
4591suffix directive can be one of the following:
4592
4593@table @code
4594@item @@@var{language}
4595This says that the suffix is an alias for a known @var{language}. This is
bedc7537 4596similar to using the @option{-x} command-line switch to GCC to specify a
a743d340
NC
4597language explicitly. For example:
4598
4599@smallexample
4600.ZZ:
4601@@c++
4602@end smallexample
4603
4604Says that .ZZ files are, in fact, C++ source files.
4605
4606@item #@var{name}
4607This causes an error messages saying:
4608
4609@smallexample
4610@var{name} compiler not installed on this system.
4611@end smallexample
4612@end table
4613
4614GCC already has an extensive list of suffixes built into it.
4615This directive will add an entry to the end of the list of suffixes, but
4616since the list is searched from the end backwards, it is effectively
4617possible to override earlier entries using this technique.
4618
4619@end table
4620
4621GCC has the following spec strings built into it. Spec files can
4622override these strings or create their own. Note that individual
02f52e19 4623targets can also add their own spec strings to this list.
a743d340
NC
4624
4625@smallexample
4626asm Options to pass to the assembler
4627asm_final Options to pass to the assembler post-processor
4628cpp Options to pass to the C preprocessor
4629cc1 Options to pass to the C compiler
4630cc1plus Options to pass to the C++ compiler
4631endfile Object files to include at the end of the link
4632link Options to pass to the linker
4633lib Libraries to include on the command line to the linker
4634libgcc Decides which GCC support library to pass to the linker
4635linker Sets the name of the linker
4636predefines Defines to be passed to the C preprocessor
310668e8
JM
4637signed_char Defines to pass to CPP to say whether @code{char} is signed
4638 by default
a743d340
NC
4639startfile Object files to include at the start of the link
4640@end smallexample
4641
4642Here is a small example of a spec file:
4643
4644@smallexample
4645%rename lib old_lib
4646
4647*lib:
4648--start-group -lgcc -lc -leval1 --end-group %(old_lib)
4649@end smallexample
4650
4651This example renames the spec called @samp{lib} to @samp{old_lib} and
4652then overrides the previous definition of @samp{lib} with a new one.
4653The new definition adds in some extra command-line options before
4654including the text of the old definition.
4655
4656@dfn{Spec strings} are a list of command-line options to be passed to their
4657corresponding program. In addition, the spec strings can contain
4658@samp{%}-prefixed sequences to substitute variable text or to
4659conditionally insert text into the command line. Using these constructs
4660it is possible to generate quite complex command lines.
4661
4662Here is a table of all defined @samp{%}-sequences for spec
4663strings. Note that spaces are not generated automatically around the
4664results of expanding these sequences. Therefore you can concatenate them
02f52e19 4665together or combine them with constant text in a single argument.
a743d340
NC
4666
4667@table @code
4668@item %%
4669Substitute one @samp{%} into the program name or argument.
4670
4671@item %i
4672Substitute the name of the input file being processed.
4673
4674@item %b
4675Substitute the basename of the input file being processed.
4676This is the substring up to (and not including) the last period
4677and not including the directory.
4678
371e300b
NC
4679@item %B
4680This is the same as @samp{%b}, but include the file suffix (text after
4681the last period).
4682
a743d340
NC
4683@item %d
4684Marks the argument containing or following the @samp{%d} as a
4685temporary file name, so that that file will be deleted if GCC exits
4686successfully. Unlike @samp{%g}, this contributes no text to the
02f52e19 4687argument.
a743d340
NC
4688
4689@item %g@var{suffix}
4690Substitute a file name that has suffix @var{suffix} and is chosen
4691once per compilation, and mark the argument in the same way as
4692@samp{%d}. To reduce exposure to denial-of-service attacks, the file
02f52e19 4693name is now chosen in a way that is hard to predict even when previously
695ac33f 4694chosen file names are known. For example, @samp{%g.s @dots{} %g.o @dots{} %g.s}
a743d340
NC
4695might turn into @samp{ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s}. @var{suffix} matches
4696the regexp @samp{[.A-Za-z]*} or the special string @samp{%O}, which is
4697treated exactly as if @samp{%O} had been preprocessed. Previously, @samp{%g}
4698was simply substituted with a file name chosen once per compilation,
4699without regard to any appended suffix (which was therefore treated
4700just like ordinary text), making such attacks more likely to succeed.
4701
4702@item %u@var{suffix}
4703Like @samp{%g}, but generates a new temporary file name even if
4704@samp{%u@var{suffix}} was already seen.
4705
4706@item %U@var{suffix}
4707Substitutes the last file name generated with @samp{%u@var{suffix}}, generating a
4708new one if there is no such last file name. In the absence of any
4709@samp{%u@var{suffix}}, this is just like @samp{%g@var{suffix}}, except they don't share
695ac33f 4710the same suffix @emph{space}, so @samp{%g.s @dots{} %U.s @dots{} %g.s @dots{} %U.s}
a743d340
NC
4711would involve the generation of two distinct file names, one
4712for each @samp{%g.s} and another for each @samp{%U.s}. Previously, @samp{%U} was
4713simply substituted with a file name chosen for the previous @samp{%u},
4714without regard to any appended suffix.
4715
371e300b 4716@item %j@var{SUFFIX}
aee96fe9 4717Substitutes the name of the @code{HOST_BIT_BUCKET}, if any, and if it is
371e300b
NC
4718writable, and if save-temps is off; otherwise, substitute the name
4719of a temporary file, just like @samp{%u}. This temporary file is not
4720meant for communication between processes, but rather as a junk
4721disposal mechanism.
4722
4723@item %.@var{SUFFIX}
4724Substitutes @var{.SUFFIX} for the suffixes of a matched switch's args
767094dd 4725when it is subsequently output with @samp{%*}. @var{SUFFIX} is
371e300b
NC
4726terminated by the next space or %.
4727
a743d340
NC
4728@item %w
4729Marks the argument containing or following the @samp{%w} as the
4730designated output file of this compilation. This puts the argument
4731into the sequence of arguments that @samp{%o} will substitute later.
4732
4733@item %o
4734Substitutes the names of all the output files, with spaces
4735automatically placed around them. You should write spaces
4736around the @samp{%o} as well or the results are undefined.
4737@samp{%o} is for use in the specs for running the linker.
4738Input files whose names have no recognized suffix are not compiled
4739at all, but they are included among the output files, so they will
4740be linked.
4741
4742@item %O
4743Substitutes the suffix for object files. Note that this is
4744handled specially when it immediately follows @samp{%g, %u, or %U},
4745because of the need for those to form complete file names. The
4746handling is such that @samp{%O} is treated exactly as if it had already
4747been substituted, except that @samp{%g, %u, and %U} do not currently
4748support additional @var{suffix} characters following @samp{%O} as they would
4749following, for example, @samp{.o}.
4750
4751@item %p
4752Substitutes the standard macro predefinitions for the
4753current target machine. Use this when running @code{cpp}.
4754
4755@item %P
4756Like @samp{%p}, but puts @samp{__} before and after the name of each
4757predefined macro, except for macros that start with @samp{__} or with
c1030c7c 4758@samp{_@var{L}}, where @var{L} is an uppercase letter. This is for ISO
161d7b59 4759C@.
a743d340
NC
4760
4761@item %I
aee96fe9 4762Substitute a @option{-iprefix} option made from @env{GCC_EXEC_PREFIX}.
a743d340
NC
4763
4764@item %s
4765Current argument is the name of a library or startup file of some sort.
4766Search for that file in a standard list of directories and substitute
02f52e19 4767the full name found.
a743d340
NC
4768
4769@item %e@var{str}
4770Print @var{str} as an error message. @var{str} is terminated by a newline.
4771Use this when inconsistent options are detected.
4772
4773@item %|
4774Output @samp{-} if the input for the current command is coming from a pipe.
4775
4776@item %(@var{name})
4777Substitute the contents of spec string @var{name} at this point.
4778
4779@item %[@var{name}]
630d3d5a 4780Like @samp{%(@dots{})} but put @samp{__} around @option{-D} arguments.
a743d340
NC
4781
4782@item %x@{@var{option}@}
4783Accumulate an option for @samp{%X}.
4784
4785@item %X
630d3d5a 4786Output the accumulated linker options specified by @option{-Wl} or a @samp{%x}
a743d340
NC
4787spec string.
4788
4789@item %Y
630d3d5a 4790Output the accumulated assembler options specified by @option{-Wa}.
a743d340
NC
4791
4792@item %Z
630d3d5a 4793Output the accumulated preprocessor options specified by @option{-Wp}.
a743d340
NC
4794
4795@item %v1
161d7b59 4796Substitute the major version number of GCC@.
a743d340
NC
4797(For version 2.9.5, this is 2.)
4798
4799@item %v2
161d7b59 4800Substitute the minor version number of GCC@.
a743d340
NC
4801(For version 2.9.5, this is 9.)
4802
371e300b 4803@item %v3
161d7b59 4804Substitute the patch level number of GCC@.
371e300b
NC
4805(For version 2.9.5, this is 5.)
4806
a743d340
NC
4807@item %a
4808Process the @code{asm} spec. This is used to compute the
4809switches to be passed to the assembler.
4810
4811@item %A
4812Process the @code{asm_final} spec. This is a spec string for
4813passing switches to an assembler post-processor, if such a program is
4814needed.
4815
4816@item %l
4817Process the @code{link} spec. This is the spec for computing the
4818command line passed to the linker. Typically it will make use of the
4819@samp{%L %G %S %D and %E} sequences.
4820
4821@item %D
630d3d5a 4822Dump out a @option{-L} option for each directory that GCC believes might
a743d340 4823contain startup files. If the target supports multilibs then the
02f52e19 4824current multilib directory will be prepended to each of these paths.
a743d340 4825
371e300b 4826@item %M
c771326b 4827Output the multilib directory with directory separators replaced with
695ac33f
JM
4828@samp{_}. If multilib directories are not set, or the multilib directory is
4829@file{.} then this option emits nothing.
371e300b 4830
a743d340
NC
4831@item %L
4832Process the @code{lib} spec. This is a spec string for deciding which
02f52e19 4833libraries should be included on the command line to the linker.
a743d340
NC
4834
4835@item %G
4836Process the @code{libgcc} spec. This is a spec string for deciding
02f52e19 4837which GCC support library should be included on the command line to the linker.
a743d340
NC
4838
4839@item %S
4840Process the @code{startfile} spec. This is a spec for deciding which
4841object files should be the first ones passed to the linker. Typically
02f52e19 4842this might be a file named @file{crt0.o}.
a743d340
NC
4843
4844@item %E
4845Process the @code{endfile} spec. This is a spec string that specifies
02f52e19 4846the last object files that will be passed to the linker.
a743d340
NC
4847
4848@item %C
4849Process the @code{cpp} spec. This is used to construct the arguments
4850to be passed to the C preprocessor.
4851
4852@item %c
4853Process the @code{signed_char} spec. This is intended to be used
02f52e19 4854to tell cpp whether a char is signed. It typically has the definition:
a743d340
NC
4855@smallexample
4856%@{funsigned-char:-D__CHAR_UNSIGNED__@}
4857@end smallexample
4858
4859@item %1
4860Process the @code{cc1} spec. This is used to construct the options to be
4861passed to the actual C compiler (@samp{cc1}).
4862
4863@item %2
4864Process the @code{cc1plus} spec. This is used to construct the options to be
4865passed to the actual C++ compiler (@samp{cc1plus}).
4866
4867@item %*
4868Substitute the variable part of a matched option. See below.
4869Note that each comma in the substituted string is replaced by
4870a single space.
4871
4872@item %@{@code{S}@}
161d7b59 4873Substitutes the @code{-S} switch, if that switch was given to GCC@.
a743d340
NC
4874If that switch was not specified, this substitutes nothing. Note that
4875the leading dash is omitted when specifying this option, and it is
4876automatically inserted if the substitution is performed. Thus the spec
630d3d5a
JM
4877string @samp{%@{foo@}} would match the command-line option @option{-foo}
4878and would output the command line option @option{-foo}.
a743d340
NC
4879
4880@item %W@{@code{S}@}
4881Like %@{@code{S}@} but mark last argument supplied within as a file to be
02f52e19 4882deleted on failure.
a743d340
NC
4883
4884@item %@{@code{S}*@}
4885Substitutes all the switches specified to GCC whose names start
4886with @code{-S}, but which also take an argument. This is used for
695ac33f 4887switches like @option{-o}, @option{-D}, @option{-I}, etc.
630d3d5a 4888GCC considers @option{-o foo} as being
a743d340 4889one switch whose names starts with @samp{o}. %@{o*@} would substitute this
02f52e19 4890text, including the space. Thus two arguments would be generated.
a743d340
NC
4891
4892@item %@{^@code{S}*@}
4893Like %@{@code{S}*@}, but don't put a blank between a switch and its
4894argument. Thus %@{^o*@} would only generate one argument, not two.
4895
371e300b
NC
4896@item %@{@code{S}*&@code{T}*@}
4897Like %@{@code{S}*@}, but preserve order of @code{S} and @code{T} options
4898(the order of @code{S} and @code{T} in the spec is not significant).
4899There can be any number of ampersand-separated variables; for each the
4900wild card is optional. Useful for CPP as @samp{%@{D*&U*&A*@}}.
4901
d630442f 4902@item %@{<@code{S}@}
695ac33f 4903Remove all occurrences of @code{-S} from the command line. Note---this
d630442f 4904command is position dependent. @samp{%} commands in the spec string
50c57e7b 4905before this option will see @code{-S}, @samp{%} commands in the spec
d630442f
NC
4906string after this option will not.
4907
a743d340
NC
4908@item %@{@code{S}*:@code{X}@}
4909Substitutes @code{X} if one or more switches whose names start with
161d7b59 4910@code{-S} are specified to GCC@. Note that the tail part of the
e979f9e8 4911@code{-S} option (i.e.@: the part matched by the @samp{*}) will be substituted
02f52e19 4912for each occurrence of @samp{%*} within @code{X}.
a743d340
NC
4913
4914@item %@{@code{S}:@code{X}@}
161d7b59 4915Substitutes @code{X}, but only if the @samp{-S} switch was given to GCC@.
a743d340
NC
4916
4917@item %@{!@code{S}:@code{X}@}
161d7b59 4918Substitutes @code{X}, but only if the @samp{-S} switch was @emph{not} given to GCC@.
a743d340
NC
4919
4920@item %@{|@code{S}:@code{X}@}
4921Like %@{@code{S}:@code{X}@}, but if no @code{S} switch, substitute @samp{-}.
4922
4923@item %@{|!@code{S}:@code{X}@}
4924Like %@{!@code{S}:@code{X}@}, but if there is an @code{S} switch, substitute @samp{-}.
4925
4926@item %@{.@code{S}:@code{X}@}
4927Substitutes @code{X}, but only if processing a file with suffix @code{S}.
4928
4929@item %@{!.@code{S}:@code{X}@}
4930Substitutes @code{X}, but only if @emph{not} processing a file with suffix @code{S}.
4931
4932@item %@{@code{S}|@code{P}:@code{X}@}
161d7b59 4933Substitutes @code{X} if either @code{-S} or @code{-P} was given to GCC@. This may be
a743d340
NC
4934combined with @samp{!} and @samp{.} sequences as well, although they
4935have a stronger binding than the @samp{|}. For example a spec string
4936like this:
4937
4938@smallexample
4939%@{.c:-foo@} %@{!.c:-bar@} %@{.c|d:-baz@} %@{!.c|d:-boggle@}
4940@end smallexample
4941
4942will output the following command-line options from the following input
4943command-line options:
4944
4945@smallexample
4946fred.c -foo -baz
4947jim.d -bar -boggle
4948-d fred.c -foo -baz -boggle
4949-d jim.d -bar -baz -boggle
4950@end smallexample
4951
4952@end table
4953
4954The conditional text @code{X} in a %@{@code{S}:@code{X}@} or
4955%@{!@code{S}:@code{X}@} construct may contain other nested @samp{%} constructs
4956or spaces, or even newlines. They are processed as usual, as described
02f52e19 4957above.
a743d340 4958
695ac33f
JM
4959The @option{-O}, @option{-f}, @option{-m}, and @option{-W}
4960switches are handled specifically in these
630d3d5a
JM
4961constructs. If another value of @option{-O} or the negated form of a @option{-f}, @option{-m}, or
4962@option{-W} switch is found later in the command line, the earlier switch
a743d340
NC
4963value is ignored, except with @{@code{S}*@} where @code{S} is just one
4964letter, which passes all matching options.
4965
4966The character @samp{|} at the beginning of the predicate text is used to indicate
630d3d5a 4967that a command should be piped to the following command, but only if @option{-pipe}
a743d340
NC
4968is specified.
4969
4970It is built into GCC which switches take arguments and which do not.
4971(You might think it would be useful to generalize this to allow each
4972compiler's spec to say which switches take arguments. But this cannot
4973be done in a consistent fashion. GCC cannot even decide which input
4974files have been specified without knowing which switches take arguments,
4975and it must know which input files to compile in order to tell which
02f52e19 4976compilers to run).
a743d340 4977
630d3d5a 4978GCC also knows implicitly that arguments starting in @option{-l} are to be
a743d340
NC
4979treated as compiler output files, and passed to the linker in their
4980proper position among the other output files.
4981
ee457005
JM
4982@c man begin OPTIONS
4983
74291a4b
MM
4984@node Target Options
4985@section Specifying Target Machine and Compiler Version
4986@cindex target options
4987@cindex cross compiling
4988@cindex specifying machine version
4989@cindex specifying compiler version and target machine
4990@cindex compiler version, specifying
4991@cindex target machine, specifying
4992
0c2d1a2a 4993By default, GCC compiles code for the same type of machine that you
74291a4b
MM
4994are using. However, it can also be installed as a cross-compiler, to
4995compile for some other type of machine. In fact, several different
0c2d1a2a 4996configurations of GCC, for different target machines, can be
74291a4b 4997installed side by side. Then you specify which one to use with the
630d3d5a 4998@option{-b} option.
74291a4b 4999
0c2d1a2a 5000In addition, older and newer versions of GCC can be installed side
74291a4b
MM
5001by side. One of them (probably the newest) will be the default, but
5002you may sometimes wish to use another.
5003
2642624b 5004@table @gcctabopt
74291a4b 5005@item -b @var{machine}
cd3bb277 5006@opindex b
74291a4b 5007The argument @var{machine} specifies the target machine for compilation.
0c2d1a2a 5008This is useful when you have installed GCC as a cross-compiler.
74291a4b
MM
5009
5010The value to use for @var{machine} is the same as was specified as the
0c2d1a2a 5011machine type when configuring GCC as a cross-compiler. For
74291a4b
MM
5012example, if a cross-compiler was configured with @samp{configure
5013i386v}, meaning to compile for an 80386 running System V, then you
630d3d5a 5014would specify @option{-b i386v} to run that cross compiler.
74291a4b 5015
630d3d5a 5016When you do not specify @option{-b}, it normally means to compile for
74291a4b
MM
5017the same type of machine that you are using.
5018
5019@item -V @var{version}
cd3bb277 5020@opindex V
0c2d1a2a 5021The argument @var{version} specifies which version of GCC to run.
74291a4b 5022This is useful when multiple versions are installed. For example,
0c2d1a2a 5023@var{version} might be @samp{2.0}, meaning to run GCC version 2.0.
74291a4b 5024
630d3d5a 5025The default version, when you do not specify @option{-V}, is the last
0c2d1a2a 5026version of GCC that you installed.
74291a4b
MM
5027@end table
5028
630d3d5a 5029The @option{-b} and @option{-V} options actually work by controlling part of
74291a4b 5030the file name used for the executable files and libraries used for
0c2d1a2a 5031compilation. A given version of GCC, for a given target machine, is
bd819a4a 5032normally kept in the directory @file{/usr/local/lib/gcc-lib/@var{machine}/@var{version}}.
74291a4b 5033
630d3d5a 5034Thus, sites can customize the effect of @option{-b} or @option{-V} either by
74291a4b
MM
5035changing the names of these directories or adding alternate names (or
5036symbolic links). If in directory @file{/usr/local/lib/gcc-lib/} the
630d3d5a
JM
5037file @file{80386} is a link to the file @file{i386v}, then @option{-b
503880386} becomes an alias for @option{-b i386v}.
74291a4b 5039
630d3d5a 5040In one respect, the @option{-b} or @option{-V} do not completely change
bedc7537 5041to a different compiler: the top-level driver program @command{gcc}
74291a4b
MM
5042that you originally invoked continues to run and invoke the other
5043executables (preprocessor, compiler per se, assembler and linker)
5044that do the real work. However, since no real work is done in the
5045driver program, it usually does not matter that the driver program
8c7b74b9
JM
5046in use is not the one for the specified target. It is common for the
5047interface to the other executables to change incompatibly between
5048compiler versions, so unless the version specified is very close to that
630d3d5a
JM
5049of the driver (for example, @option{-V 3.0} with a driver program from GCC
5050version 3.0.1), use of @option{-V} may not work; for example, using
5051@option{-V 2.95.2} will not work with a driver program from GCC 3.0.
74291a4b
MM
5052
5053The only way that the driver program depends on the target machine is
5054in the parsing and handling of special machine-specific options.
5055However, this is controlled by a file which is found, along with the
5056other executables, in the directory for the specified version and
5057target machine. As a result, a single installed driver program adapts
8c7b74b9
JM
5058to any specified target machine, and sufficiently similar compiler
5059versions.
74291a4b
MM
5060
5061The driver program executable does control one significant thing,
5062however: the default version and target machine. Therefore, you can
5063install different instances of the driver program, compiled for
5064different targets or versions, under different names.
5065
bedc7537
NC
5066For example, if the driver for version 2.0 is installed as @command{ogcc}
5067and that for version 2.1 is installed as @command{gcc}, then the command
5068@command{gcc} will use version 2.1 by default, while @command{ogcc} will use
74291a4b 50692.0 by default. However, you can choose either version with either
630d3d5a 5070command with the @option{-V} option.
74291a4b
MM
5071
5072@node Submodel Options
5073@section Hardware Models and Configurations
5074@cindex submodel options
5075@cindex specifying hardware config
5076@cindex hardware models and configurations, specifying
5077@cindex machine dependent options
5078
630d3d5a 5079Earlier we discussed the standard option @option{-b} which chooses among
74291a4b 5080different installed compilers for completely different target
8aeea6e6 5081machines, such as VAX vs.@: 68000 vs.@: 80386.
74291a4b
MM
5082
5083In addition, each of these target machine types can have its own
5084special options, starting with @samp{-m}, to choose among various
5085hardware models or configurations---for example, 68010 vs 68020,
5086floating coprocessor or none. A single installed version of the
5087compiler can compile for any model or configuration, according to the
5088options specified.
5089
5090Some configurations of the compiler also support additional special
5091options, usually for compatibility with other compilers on the same
5092platform.
5093
74291a4b
MM
5094These options are defined by the macro @code{TARGET_SWITCHES} in the
5095machine description. The default for the options is also defined by
5096that macro, which enables you to change the defaults.
74291a4b
MM
5097
5098@menu
5099* M680x0 Options::
2856c3e3 5100* M68hc1x Options::
74291a4b
MM
5101* VAX Options::
5102* SPARC Options::
5103* Convex Options::
5104* AMD29K Options::
5105* ARM Options::
ecff22ab 5106* MN10200 Options::
6d6d0fa0 5107* MN10300 Options::
861bb6c1 5108* M32R/D Options::
74291a4b
MM
5109* M88K Options::
5110* RS/6000 and PowerPC Options::
5111* RT Options::
5112* MIPS Options::
14f73b5a 5113* i386 and x86-64 Options::
74291a4b
MM
5114* HPPA Options::
5115* Intel 960 Options::
5116* DEC Alpha Options::
d7c23cdc 5117* DEC Alpha/VMS Options::
74291a4b
MM
5118* Clipper Options::
5119* H8/300 Options::
5120* SH Options::
5121* System V Options::
282a61e6 5122* TMS320C3x/C4x Options::
f84271d9 5123* V850 Options::
56b2d7a7 5124* ARC Options::
83575957 5125* NS32K Options::
052a4b28
DC
5126* AVR Options::
5127* MCore Options::
df6194d4 5128* IA-64 Options::
e8ad90e5 5129* D30V Options::
91abf72d 5130* S/390 and zSeries Options::
0b85d816 5131* CRIS Options::
bcf684c7 5132* MMIX Options::
9f85bca7 5133* PDP-11 Options::
69a0611f 5134* Xstormy16 Options::
03984308 5135* Xtensa Options::
74291a4b
MM
5136@end menu
5137
5138@node M680x0 Options
5139@subsection M680x0 Options
5140@cindex M680x0 options
5141
5142These are the @samp{-m} options defined for the 68000 series. The default
5143values for these options depends on which style of 68000 was selected when
5144the compiler was configured; the defaults for the most common choices are
5145given below.
5146
2642624b 5147@table @gcctabopt
74291a4b
MM
5148@item -m68000
5149@itemx -mc68000
cd3bb277
JM
5150@opindex m68000
5151@opindex mc68000
74291a4b
MM
5152Generate output for a 68000. This is the default
5153when the compiler is configured for 68000-based systems.
5154
74cf1c6d
RK
5155Use this option for microcontrollers with a 68000 or EC000 core,
5156including the 68008, 68302, 68306, 68307, 68322, 68328 and 68356.
5157
74291a4b
MM
5158@item -m68020
5159@itemx -mc68020
cd3bb277
JM
5160@opindex m68020
5161@opindex mc68020
74291a4b
MM
5162Generate output for a 68020. This is the default
5163when the compiler is configured for 68020-based systems.
5164
5165@item -m68881
cd3bb277 5166@opindex m68881
74291a4b 5167Generate output containing 68881 instructions for floating point.
630d3d5a 5168This is the default for most 68020 systems unless @option{--nfp} was
74291a4b
MM
5169specified when the compiler was configured.
5170
5171@item -m68030
cd3bb277 5172@opindex m68030
74291a4b
MM
5173Generate output for a 68030. This is the default when the compiler is
5174configured for 68030-based systems.
5175
5176@item -m68040
cd3bb277 5177@opindex m68040
74291a4b
MM
5178Generate output for a 68040. This is the default when the compiler is
5179configured for 68040-based systems.
5180
5181This option inhibits the use of 68881/68882 instructions that have to be
74cf1c6d
RK
5182emulated by software on the 68040. Use this option if your 68040 does not
5183have code to emulate those instructions.
74291a4b
MM
5184
5185@item -m68060
cd3bb277 5186@opindex m68060
74291a4b
MM
5187Generate output for a 68060. This is the default when the compiler is
5188configured for 68060-based systems.
5189
5190This option inhibits the use of 68020 and 68881/68882 instructions that
74cf1c6d
RK
5191have to be emulated by software on the 68060. Use this option if your 68060
5192does not have code to emulate those instructions.
5193
5194@item -mcpu32
cd3bb277 5195@opindex mcpu32
767094dd 5196Generate output for a CPU32. This is the default
74cf1c6d
RK
5197when the compiler is configured for CPU32-based systems.
5198
5199Use this option for microcontrollers with a
5200CPU32 or CPU32+ core, including the 68330, 68331, 68332, 68333, 68334,
520168336, 68340, 68341, 68349 and 68360.
74291a4b
MM
5202
5203@item -m5200
cd3bb277 5204@opindex m5200
695ac33f 5205Generate output for a 520X ``coldfire'' family cpu. This is the default
74291a4b
MM
5206when the compiler is configured for 520X-based systems.
5207
02f52e19 5208Use this option for microcontroller with a 5200 core, including
74cf1c6d
RK
5209the MCF5202, MCF5203, MCF5204 and MCF5202.
5210
74291a4b
MM
5211
5212@item -m68020-40
cd3bb277 5213@opindex m68020-40
74291a4b
MM
5214Generate output for a 68040, without using any of the new instructions.
5215This results in code which can run relatively efficiently on either a
521668020/68881 or a 68030 or a 68040. The generated code does use the
521768881 instructions that are emulated on the 68040.
5218
861bb6c1 5219@item -m68020-60
cd3bb277 5220@opindex m68020-60
861bb6c1
JL
5221Generate output for a 68060, without using any of the new instructions.
5222This results in code which can run relatively efficiently on either a
522368020/68881 or a 68030 or a 68040. The generated code does use the
522468881 instructions that are emulated on the 68060.
5225
74291a4b 5226@item -mfpa
cd3bb277 5227@opindex mfpa
74291a4b
MM
5228Generate output containing Sun FPA instructions for floating point.
5229
5230@item -msoft-float
cd3bb277 5231@opindex msoft-float
74291a4b
MM
5232Generate output containing library calls for floating point.
5233@strong{Warning:} the requisite libraries are not available for all m68k
5234targets. Normally the facilities of the machine's usual C compiler are
5235used, but this can't be done directly in cross-compilation. You must
5236make your own arrangements to provide suitable library functions for
5237cross-compilation. The embedded targets @samp{m68k-*-aout} and
5238@samp{m68k-*-coff} do provide software floating point support.
5239
5240@item -mshort
cd3bb277 5241@opindex mshort
74291a4b
MM
5242Consider type @code{int} to be 16 bits wide, like @code{short int}.
5243
5244@item -mnobitfield
cd3bb277 5245@opindex mnobitfield
630d3d5a
JM
5246Do not use the bit-field instructions. The @option{-m68000}, @option{-mcpu32}
5247and @option{-m5200} options imply @w{@option{-mnobitfield}}.
74291a4b
MM
5248
5249@item -mbitfield
cd3bb277 5250@opindex mbitfield
630d3d5a
JM
5251Do use the bit-field instructions. The @option{-m68020} option implies
5252@option{-mbitfield}. This is the default if you use a configuration
74291a4b
MM
5253designed for a 68020.
5254
5255@item -mrtd
cd3bb277 5256@opindex mrtd
74291a4b
MM
5257Use a different function-calling convention, in which functions
5258that take a fixed number of arguments return with the @code{rtd}
5259instruction, which pops their arguments while returning. This
5260saves one instruction in the caller since there is no need to pop
5261the arguments there.
5262
5263This calling convention is incompatible with the one normally
5264used on Unix, so you cannot use it if you need to call libraries
5265compiled with the Unix compiler.
5266
5267Also, you must provide function prototypes for all functions that
5268take variable numbers of arguments (including @code{printf});
5269otherwise incorrect code will be generated for calls to those
5270functions.
5271
5272In addition, seriously incorrect code will result if you call a
5273function with too many arguments. (Normally, extra arguments are
5274harmlessly ignored.)
5275
5276The @code{rtd} instruction is supported by the 68010, 68020, 68030,
74cf1c6d 527768040, 68060 and CPU32 processors, but not by the 68000 or 5200.
861bb6c1
JL
5278
5279@item -malign-int
5280@itemx -mno-align-int
cd3bb277
JM
5281@opindex malign-int
5282@opindex mno-align-int
02f52e19 5283Control whether GCC aligns @code{int}, @code{long}, @code{long long},
861bb6c1 5284@code{float}, @code{double}, and @code{long double} variables on a 32-bit
630d3d5a 5285boundary (@option{-malign-int}) or a 16-bit boundary (@option{-mno-align-int}).
861bb6c1
JL
5286Aligning variables on 32-bit boundaries produces code that runs somewhat
5287faster on processors with 32-bit busses at the expense of more memory.
5288
630d3d5a 5289@strong{Warning:} if you use the @option{-malign-int} switch, GCC will
861bb6c1
JL
5290align structures containing the above types differently than
5291most published application binary interface specifications for the m68k.
5292
fb868474 5293@item -mpcrel
cd3bb277 5294@opindex mpcrel
fb868474 5295Use the pc-relative addressing mode of the 68000 directly, instead of
695ac33f
JM
5296using a global offset table. At present, this option implies @option{-fpic},
5297allowing at most a 16-bit offset for pc-relative addressing. @option{-fPIC} is
5298not presently supported with @option{-mpcrel}, though this could be supported for
fb868474
DL
529968020 and higher processors.
5300
b71733d5
GM
5301@item -mno-strict-align
5302@itemx -mstrict-align
cd3bb277
JM
5303@opindex mno-strict-align
5304@opindex mstrict-align
b71733d5
GM
5305Do not (do) assume that unaligned memory references will be handled by
5306the system.
5307
74291a4b
MM
5308@end table
5309
2856c3e3
SC
5310@node M68hc1x Options
5311@subsection M68hc1x Options
5312@cindex M68hc1x options
5313
5314These are the @samp{-m} options defined for the 68hc11 and 68hc12
02f52e19 5315microcontrollers. The default values for these options depends on
2856c3e3
SC
5316which style of microcontroller was selected when the compiler was configured;
5317the defaults for the most common choices are given below.
5318
2642624b 5319@table @gcctabopt
2856c3e3
SC
5320@item -m6811
5321@itemx -m68hc11
cd3bb277
JM
5322@opindex m6811
5323@opindex m68hc11
2856c3e3
SC
5324Generate output for a 68HC11. This is the default
5325when the compiler is configured for 68HC11-based systems.
5326
5327@item -m6812
5328@itemx -m68hc12
cd3bb277
JM
5329@opindex m6812
5330@opindex m68hc12
2856c3e3
SC
5331Generate output for a 68HC12. This is the default
5332when the compiler is configured for 68HC12-based systems.
5333
5334@item -mauto-incdec
cd3bb277 5335@opindex mauto-incdec
2856c3e3
SC
5336Enable the use of 68HC12 pre and post auto-increment and auto-decrement
5337addressing modes.
5338
5339@item -mshort
cd3bb277 5340@opindex mshort
2856c3e3
SC
5341Consider type @code{int} to be 16 bits wide, like @code{short int}.
5342
5343@item -msoft-reg-count=@var{count}
cd3bb277 5344@opindex msoft-reg-count
2856c3e3
SC
5345Specify the number of pseudo-soft registers which are used for the
5346code generation. The maximum number is 32. Using more pseudo-soft
5347register may or may not result in better code depending on the program.
5348The default is 4 for 68HC11 and 2 for 68HC12.
5349
5350@end table
5351
74291a4b
MM
5352@node VAX Options
5353@subsection VAX Options
5354@cindex VAX options
5355
8aeea6e6 5356These @samp{-m} options are defined for the VAX:
74291a4b 5357
2642624b 5358@table @gcctabopt
74291a4b 5359@item -munix
cd3bb277 5360@opindex munix
74291a4b 5361Do not output certain jump instructions (@code{aobleq} and so on)
8aeea6e6 5362that the Unix assembler for the VAX cannot handle across long
74291a4b
MM
5363ranges.
5364
5365@item -mgnu
cd3bb277 5366@opindex mgnu
74291a4b
MM
5367Do output those jump instructions, on the assumption that you
5368will assemble with the GNU assembler.
5369
5370@item -mg
cd3bb277 5371@opindex mg
74291a4b
MM
5372Output code for g-format floating point numbers instead of d-format.
5373@end table
5374
5375@node SPARC Options
5376@subsection SPARC Options
5377@cindex SPARC options
5378
5379These @samp{-m} switches are supported on the SPARC:
5380
2642624b 5381@table @gcctabopt
74291a4b
MM
5382@item -mno-app-regs
5383@itemx -mapp-regs
cd3bb277
JM
5384@opindex mno-app-regs
5385@opindex mapp-regs
630d3d5a 5386Specify @option{-mapp-regs} to generate output using the global registers
74291a4b
MM
53872 through 4, which the SPARC SVR4 ABI reserves for applications. This
5388is the default.
5389
5390To be fully SVR4 ABI compliant at the cost of some performance loss,
630d3d5a 5391specify @option{-mno-app-regs}. You should compile libraries and system
74291a4b
MM
5392software with this option.
5393
5394@item -mfpu
5395@itemx -mhard-float
cd3bb277
JM
5396@opindex mfpu
5397@opindex mhard-float
74291a4b
MM
5398Generate output containing floating point instructions. This is the
5399default.
5400
5401@item -mno-fpu
5402@itemx -msoft-float
cd3bb277
JM
5403@opindex mno-fpu
5404@opindex msoft-float
74291a4b
MM
5405Generate output containing library calls for floating point.
5406@strong{Warning:} the requisite libraries are not available for all SPARC
5407targets. Normally the facilities of the machine's usual C compiler are
5408used, but this cannot be done directly in cross-compilation. You must make
5409your own arrangements to provide suitable library functions for
5410cross-compilation. The embedded targets @samp{sparc-*-aout} and
5411@samp{sparclite-*-*} do provide software floating point support.
5412
630d3d5a 5413@option{-msoft-float} changes the calling convention in the output file;
74291a4b
MM
5414therefore, it is only useful if you compile @emph{all} of a program with
5415this option. In particular, you need to compile @file{libgcc.a}, the
630d3d5a 5416library that comes with GCC, with @option{-msoft-float} in order for
74291a4b
MM
5417this to work.
5418
5419@item -mhard-quad-float
cd3bb277 5420@opindex mhard-quad-float
74291a4b
MM
5421Generate output containing quad-word (long double) floating point
5422instructions.
5423
5424@item -msoft-quad-float
cd3bb277 5425@opindex msoft-quad-float
74291a4b
MM
5426Generate output containing library calls for quad-word (long double)
5427floating point instructions. The functions called are those specified
161d7b59 5428in the SPARC ABI@. This is the default.
74291a4b
MM
5429
5430As of this writing, there are no sparc implementations that have hardware
5431support for the quad-word floating point instructions. They all invoke
5432a trap handler for one of these instructions, and then the trap handler
5433emulates the effect of the instruction. Because of the trap handler overhead,
5434this is much slower than calling the ABI library routines. Thus the
630d3d5a 5435@option{-msoft-quad-float} option is the default.
74291a4b
MM
5436
5437@item -mno-epilogue
5438@itemx -mepilogue
cd3bb277
JM
5439@opindex mno-epilogue
5440@opindex mepilogue
630d3d5a 5441With @option{-mepilogue} (the default), the compiler always emits code for
74291a4b
MM
5442function exit at the end of each function. Any function exit in
5443the middle of the function (such as a return statement in C) will
5444generate a jump to the exit code at the end of the function.
5445
630d3d5a 5446With @option{-mno-epilogue}, the compiler tries to emit exit code inline
74291a4b
MM
5447at every function exit.
5448
5449@item -mno-flat
5450@itemx -mflat
cd3bb277
JM
5451@opindex mno-flat
5452@opindex mflat
630d3d5a 5453With @option{-mflat}, the compiler does not generate save/restore instructions
695ac33f 5454and will use a ``flat'' or single register window calling convention.
74291a4b
MM
5455This model uses %i7 as the frame pointer and is compatible with the normal
5456register window model. Code from either may be intermixed.
aee96fe9 5457The local registers and the input registers (0--5) are still treated as
695ac33f 5458``call saved'' registers and will be saved on the stack as necessary.
74291a4b 5459
630d3d5a 5460With @option{-mno-flat} (the default), the compiler emits save/restore
74291a4b
MM
5461instructions (except for leaf functions) and is the normal mode of operation.
5462
5463@item -mno-unaligned-doubles
5464@itemx -munaligned-doubles
cd3bb277
JM
5465@opindex mno-unaligned-doubles
5466@opindex munaligned-doubles
74291a4b
MM
5467Assume that doubles have 8 byte alignment. This is the default.
5468
630d3d5a 5469With @option{-munaligned-doubles}, GCC assumes that doubles have 8 byte
74291a4b
MM
5470alignment only if they are contained in another type, or if they have an
5471absolute address. Otherwise, it assumes they have 4 byte alignment.
5472Specifying this option avoids some rare compatibility problems with code
5473generated by other compilers. It is not the default because it results
5474in a performance loss, especially for floating point code.
5475
c219ddf7
BK
5476@item -mno-faster-structs
5477@itemx -mfaster-structs
cd3bb277
JM
5478@opindex mno-faster-structs
5479@opindex mfaster-structs
630d3d5a 5480With @option{-mfaster-structs}, the compiler assumes that structures
c219ddf7
BK
5481should have 8 byte alignment. This enables the use of pairs of
5482@code{ldd} and @code{std} instructions for copies in structure
5483assignment, in place of twice as many @code{ld} and @code{st} pairs.
5484However, the use of this changed alignment directly violates the Sparc
161d7b59 5485ABI@. Thus, it's intended only for use on targets where the developer
c219ddf7 5486acknowledges that their resulting code will not be directly in line with
161d7b59 5487the rules of the ABI@.
c219ddf7 5488
74291a4b
MM
5489@item -mv8
5490@itemx -msparclite
cd3bb277
JM
5491@opindex mv8
5492@opindex msparclite
74291a4b
MM
5493These two options select variations on the SPARC architecture.
5494
5495By default (unless specifically configured for the Fujitsu SPARClite),
5496GCC generates code for the v7 variant of the SPARC architecture.
5497
630d3d5a 5498@option{-mv8} will give you SPARC v8 code. The only difference from v7
74291a4b
MM
5499code is that the compiler emits the integer multiply and integer
5500divide instructions which exist in SPARC v8 but not in SPARC v7.
5501
630d3d5a 5502@option{-msparclite} will give you SPARClite code. This adds the integer
74291a4b
MM
5503multiply, integer divide step and scan (@code{ffs}) instructions which
5504exist in SPARClite but not in SPARC v7.
5505
0c2d1a2a 5506These options are deprecated and will be deleted in a future GCC release.
630d3d5a 5507They have been replaced with @option{-mcpu=xxx}.
74291a4b
MM
5508
5509@item -mcypress
5510@itemx -msupersparc
cd3bb277
JM
5511@opindex mcypress
5512@opindex msupersparc
c21cd8b1 5513These two options select the processor for which the code is optimized.
74291a4b 5514
630d3d5a 5515With @option{-mcypress} (the default), the compiler optimizes code for the
74291a4b
MM
5516Cypress CY7C602 chip, as used in the SparcStation/SparcServer 3xx series.
5517This is also appropriate for the older SparcStation 1, 2, IPX etc.
5518
630d3d5a 5519With @option{-msupersparc} the compiler optimizes code for the SuperSparc cpu, as
767094dd 5520used in the SparcStation 10, 1000 and 2000 series. This flag also enables use
74291a4b
MM
5521of the full SPARC v8 instruction set.
5522
0c2d1a2a 5523These options are deprecated and will be deleted in a future GCC release.
630d3d5a 5524They have been replaced with @option{-mcpu=xxx}.
74291a4b
MM
5525
5526@item -mcpu=@var{cpu_type}
cd3bb277 5527@opindex mcpu
c0498f43
DE
5528Set the instruction set, register set, and instruction scheduling parameters
5529for machine type @var{cpu_type}. Supported values for @var{cpu_type} are
5530@samp{v7}, @samp{cypress}, @samp{v8}, @samp{supersparc}, @samp{sparclite},
ad6843d7
RH
5531@samp{hypersparc}, @samp{sparclite86x}, @samp{f930}, @samp{f934},
5532@samp{sparclet}, @samp{tsc701}, @samp{v9}, and @samp{ultrasparc}.
c0498f43
DE
5533
5534Default instruction scheduling parameters are used for values that select
5535an architecture and not an implementation. These are @samp{v7}, @samp{v8},
5536@samp{sparclite}, @samp{sparclet}, @samp{v9}.
5537
5538Here is a list of each supported architecture and their supported
5539implementations.
5540
5541@smallexample
5542 v7: cypress
ad6843d7
RH
5543 v8: supersparc, hypersparc
5544 sparclite: f930, f934, sparclite86x
c0498f43
DE
5545 sparclet: tsc701
5546 v9: ultrasparc
5547@end smallexample
74291a4b
MM
5548
5549@item -mtune=@var{cpu_type}
cd3bb277 5550@opindex mtune
74291a4b 5551Set the instruction scheduling parameters for machine type
c0498f43 5552@var{cpu_type}, but do not set the instruction set or register set that the
630d3d5a 5553option @option{-mcpu=@var{cpu_type}} would.
c0498f43 5554
9c34dbbf
ZW
5555The same values for @option{-mcpu=@var{cpu_type}} can be used for
5556@option{-mtune=@var{cpu_type}}, but the only useful values are those
5557that select a particular cpu implementation. Those are @samp{cypress},
5558@samp{supersparc}, @samp{hypersparc}, @samp{f930}, @samp{f934},
5559@samp{sparclite86x}, @samp{tsc701}, and @samp{ultrasparc}.
74291a4b
MM
5560
5561@end table
5562
5563These @samp{-m} switches are supported in addition to the above
5564on the SPARCLET processor.
5565
2642624b 5566@table @gcctabopt
74291a4b 5567@item -mlittle-endian
cd3bb277 5568@opindex mlittle-endian
74291a4b
MM
5569Generate code for a processor running in little-endian mode.
5570
5571@item -mlive-g0
cd3bb277 5572@opindex mlive-g0
74291a4b
MM
5573Treat register @code{%g0} as a normal register.
5574GCC will continue to clobber it as necessary but will not assume
5575it always reads as 0.
5576
5577@item -mbroken-saverestore
cd3bb277 5578@opindex mbroken-saverestore
74291a4b
MM
5579Generate code that does not use non-trivial forms of the @code{save} and
5580@code{restore} instructions. Early versions of the SPARCLET processor do
5581not correctly handle @code{save} and @code{restore} instructions used with
5582arguments. They correctly handle them used without arguments. A @code{save}
5583instruction used without arguments increments the current window pointer
5584but does not allocate a new stack frame. It is assumed that the window
5585overflow trap handler will properly handle this case as will interrupt
5586handlers.
5587@end table
5588
5589These @samp{-m} switches are supported in addition to the above
02f52e19 5590on SPARC V9 processors in 64-bit environments.
74291a4b 5591
2642624b 5592@table @gcctabopt
74291a4b 5593@item -mlittle-endian
cd3bb277 5594@opindex mlittle-endian
74291a4b
MM
5595Generate code for a processor running in little-endian mode.
5596
ded17aad
DE
5597@item -m32
5598@itemx -m64
cd3bb277
JM
5599@opindex m32
5600@opindex m64
02f52e19
AJ
5601Generate code for a 32-bit or 64-bit environment.
5602The 32-bit environment sets int, long and pointer to 32 bits.
5603The 64-bit environment sets int to 32 bits and long and pointer
ded17aad
DE
5604to 64 bits.
5605
5606@item -mcmodel=medlow
cd3bb277 5607@opindex mcmodel=medlow
ded17aad
DE
5608Generate code for the Medium/Low code model: the program must be linked
5609in the low 32 bits of the address space. Pointers are 64 bits.
5610Programs can be statically or dynamically linked.
5611
5612@item -mcmodel=medmid
cd3bb277 5613@opindex mcmodel=medmid
ded17aad
DE
5614Generate code for the Medium/Middle code model: the program must be linked
5615in the low 44 bits of the address space, the text segment must be less than
56162G bytes, and data segment must be within 2G of the text segment.
5617Pointers are 64 bits.
5618
5619@item -mcmodel=medany
cd3bb277 5620@opindex mcmodel=medany
ded17aad
DE
5621Generate code for the Medium/Anywhere code model: the program may be linked
5622anywhere in the address space, the text segment must be less than
56232G bytes, and data segment must be within 2G of the text segment.
5624Pointers are 64 bits.
5625
5626@item -mcmodel=embmedany
cd3bb277 5627@opindex mcmodel=embmedany
ded17aad 5628Generate code for the Medium/Anywhere code model for embedded systems:
02f52e19 5629assume a 32-bit text and a 32-bit data segment, both starting anywhere
ded17aad 5630(determined at link time). Register %g4 points to the base of the
02f52e19 5631data segment. Pointers are still 64 bits.
ded17aad 5632Programs are statically linked, PIC is not supported.
74291a4b
MM
5633
5634@item -mstack-bias
5635@itemx -mno-stack-bias
cd3bb277
JM
5636@opindex mstack-bias
5637@opindex mno-stack-bias
630d3d5a
JM
5638With @option{-mstack-bias}, GCC assumes that the stack pointer, and
5639frame pointer if present, are offset by @minus{}2047 which must be added back
74291a4b
MM
5640when making stack frame references.
5641Otherwise, assume no such offset is present.
5642@end table
5643
5644@node Convex Options
5645@subsection Convex Options
5646@cindex Convex options
5647
5648These @samp{-m} options are defined for Convex:
5649
2642624b 5650@table @gcctabopt
74291a4b 5651@item -mc1
cd3bb277 5652@opindex mc1
74291a4b
MM
5653Generate output for C1. The code will run on any Convex machine.
5654The preprocessor symbol @code{__convex__c1__} is defined.
5655
5656@item -mc2
cd3bb277 5657@opindex mc2
74291a4b
MM
5658Generate output for C2. Uses instructions not available on C1.
5659Scheduling and other optimizations are chosen for max performance on C2.
5660The preprocessor symbol @code{__convex_c2__} is defined.
5661
5662@item -mc32
cd3bb277 5663@opindex mc32
74291a4b
MM
5664Generate output for C32xx. Uses instructions not available on C1.
5665Scheduling and other optimizations are chosen for max performance on C32.
5666The preprocessor symbol @code{__convex_c32__} is defined.
5667
5668@item -mc34
cd3bb277 5669@opindex mc34
74291a4b
MM
5670Generate output for C34xx. Uses instructions not available on C1.
5671Scheduling and other optimizations are chosen for max performance on C34.
5672The preprocessor symbol @code{__convex_c34__} is defined.
5673
5674@item -mc38
cd3bb277 5675@opindex mc38
74291a4b
MM
5676Generate output for C38xx. Uses instructions not available on C1.
5677Scheduling and other optimizations are chosen for max performance on C38.
5678The preprocessor symbol @code{__convex_c38__} is defined.
5679
5680@item -margcount
cd3bb277 5681@opindex margcount
74291a4b
MM
5682Generate code which puts an argument count in the word preceding each
5683argument list. This is compatible with regular CC, and a few programs
5684may need the argument count word. GDB and other source-level debuggers
5685do not need it; this info is in the symbol table.
5686
5687@item -mnoargcount
cd3bb277 5688@opindex mnoargcount
74291a4b
MM
5689Omit the argument count word. This is the default.
5690
5691@item -mvolatile-cache
cd3bb277 5692@opindex mvolatile-cache
74291a4b
MM
5693Allow volatile references to be cached. This is the default.
5694
5695@item -mvolatile-nocache
cd3bb277 5696@opindex mvolatile-nocache
74291a4b
MM
5697Volatile references bypass the data cache, going all the way to memory.
5698This is only needed for multi-processor code that does not use standard
5699synchronization instructions. Making non-volatile references to volatile
5700locations will not necessarily work.
5701
5702@item -mlong32
cd3bb277 5703@opindex mlong32
74291a4b
MM
5704Type long is 32 bits, the same as type int. This is the default.
5705
5706@item -mlong64
cd3bb277 5707@opindex mlong64
74291a4b
MM
5708Type long is 64 bits, the same as type long long. This option is useless,
5709because no library support exists for it.
5710@end table
5711
5712@node AMD29K Options
5713@subsection AMD29K Options
5714@cindex AMD29K options
5715
5716These @samp{-m} options are defined for the AMD Am29000:
5717
2642624b 5718@table @gcctabopt
74291a4b 5719@item -mdw
cd3bb277 5720@opindex mdw
74291a4b
MM
5721@cindex DW bit (29k)
5722Generate code that assumes the @code{DW} bit is set, i.e., that byte and
5723halfword operations are directly supported by the hardware. This is the
5724default.
5725
5726@item -mndw
cd3bb277 5727@opindex mndw
74291a4b
MM
5728Generate code that assumes the @code{DW} bit is not set.
5729
5730@item -mbw
cd3bb277 5731@opindex mbw
74291a4b
MM
5732@cindex byte writes (29k)
5733Generate code that assumes the system supports byte and halfword write
5734operations. This is the default.
5735
5736@item -mnbw
cd3bb277 5737@opindex mnbw
74291a4b 5738Generate code that assumes the systems does not support byte and
630d3d5a 5739halfword write operations. @option{-mnbw} implies @option{-mndw}.
74291a4b
MM
5740
5741@item -msmall
cd3bb277 5742@opindex msmall
74291a4b
MM
5743@cindex memory model (29k)
5744Use a small memory model that assumes that all function addresses are
5745either within a single 256 KB segment or at an absolute address of less
5746than 256k. This allows the @code{call} instruction to be used instead
5747of a @code{const}, @code{consth}, @code{calli} sequence.
5748
5749@item -mnormal
cd3bb277 5750@opindex mnormal
74291a4b
MM
5751Use the normal memory model: Generate @code{call} instructions only when
5752calling functions in the same file and @code{calli} instructions
5753otherwise. This works if each file occupies less than 256 KB but allows
161d7b59 5754the entire executable to be larger than 256 KB@. This is the default.
74291a4b
MM
5755
5756@item -mlarge
cd3bb277 5757@opindex mlarge
74291a4b
MM
5758Always use @code{calli} instructions. Specify this option if you expect
5759a single file to compile into more than 256 KB of code.
5760
5761@item -m29050
cd3bb277 5762@opindex m29050
74291a4b
MM
5763@cindex processor selection (29k)
5764Generate code for the Am29050.
5765
5766@item -m29000
cd3bb277 5767@opindex m29000
74291a4b
MM
5768Generate code for the Am29000. This is the default.
5769
5770@item -mkernel-registers
cd3bb277 5771@opindex mkernel-registers
74291a4b
MM
5772@cindex kernel and user registers (29k)
5773Generate references to registers @code{gr64-gr95} instead of to
5774registers @code{gr96-gr127}. This option can be used when compiling
5775kernel code that wants a set of global registers disjoint from that used
5776by user-mode code.
5777
5778Note that when this option is used, register names in @samp{-f} flags
5779must use the normal, user-mode, names.
5780
5781@item -muser-registers
cd3bb277 5782@opindex muser-registers
74291a4b
MM
5783Use the normal set of global registers, @code{gr96-gr127}. This is the
5784default.
5785
5786@item -mstack-check
5787@itemx -mno-stack-check
cd3bb277
JM
5788@opindex mstack-check
5789@opindex mno-stack-check
74291a4b
MM
5790@cindex stack checks (29k)
5791Insert (or do not insert) a call to @code{__msp_check} after each stack
5792adjustment. This is often used for kernel code.
5793
5794@item -mstorem-bug
5795@itemx -mno-storem-bug
cd3bb277
JM
5796@opindex mstorem-bug
5797@opindex mno-storem-bug
74291a4b 5798@cindex storem bug (29k)
630d3d5a 5799@option{-mstorem-bug} handles 29k processors which cannot handle the
74291a4b
MM
5800separation of a mtsrim insn and a storem instruction (most 29000 chips
5801to date, but not the 29050).
5802
5803@item -mno-reuse-arg-regs
5804@itemx -mreuse-arg-regs
cd3bb277
JM
5805@opindex mno-reuse-arg-regs
5806@opindex mreuse-arg-regs
630d3d5a 5807@option{-mno-reuse-arg-regs} tells the compiler to only use incoming argument
74291a4b
MM
5808registers for copying out arguments. This helps detect calling a function
5809with fewer arguments than it was declared with.
5810
861bb6c1
JL
5811@item -mno-impure-text
5812@itemx -mimpure-text
cd3bb277
JM
5813@opindex mno-impure-text
5814@opindex mimpure-text
630d3d5a
JM
5815@option{-mimpure-text}, used in addition to @option{-shared}, tells the compiler to
5816not pass @option{-assert pure-text} to the linker when linking a shared object.
861bb6c1 5817
74291a4b 5818@item -msoft-float
cd3bb277 5819@opindex msoft-float
74291a4b 5820Generate output containing library calls for floating point.
161d7b59 5821@strong{Warning:} the requisite libraries are not part of GCC@.
74291a4b
MM
5822Normally the facilities of the machine's usual C compiler are used, but
5823this can't be done directly in cross-compilation. You must make your
5824own arrangements to provide suitable library functions for
5825cross-compilation.
4e8d7ddc
JW
5826
5827@item -mno-multm
cd3bb277 5828@opindex mno-multm
4e8d7ddc
JW
5829Do not generate multm or multmu instructions. This is useful for some embedded
5830systems which do not have trap handlers for these instructions.
74291a4b
MM
5831@end table
5832
5833@node ARM Options
5834@subsection ARM Options
5835@cindex ARM options
5836
5837These @samp{-m} options are defined for Advanced RISC Machines (ARM)
5838architectures:
5839
2642624b 5840@table @gcctabopt
74291a4b 5841@item -mapcs-frame
cd3bb277 5842@opindex mapcs-frame
74291a4b
MM
5843Generate a stack frame that is compliant with the ARM Procedure Call
5844Standard for all functions, even if this is not strictly necessary for
630d3d5a 5845correct execution of the code. Specifying @option{-fomit-frame-pointer}
157a620e 5846with this option will cause the stack frames not to be generated for
630d3d5a 5847leaf functions. The default is @option{-mno-apcs-frame}.
157a620e
NC
5848
5849@item -mapcs
cd3bb277 5850@opindex mapcs
630d3d5a 5851This is a synonym for @option{-mapcs-frame}.
74291a4b
MM
5852
5853@item -mapcs-26
cd3bb277 5854@opindex mapcs-26
74291a4b
MM
5855Generate code for a processor running with a 26-bit program counter,
5856and conforming to the function calling standards for the APCS 26-bit
630d3d5a 5857option. This option replaces the @option{-m2} and @option{-m3} options
74291a4b
MM
5858of previous releases of the compiler.
5859
5860@item -mapcs-32
cd3bb277 5861@opindex mapcs-32
74291a4b
MM
5862Generate code for a processor running with a 32-bit program counter,
5863and conforming to the function calling standards for the APCS 32-bit
630d3d5a 5864option. This option replaces the @option{-m6} option of previous releases
74291a4b
MM
5865of the compiler.
5866
247f8561
PB
5867@ignore
5868@c not currently implemented
157a620e 5869@item -mapcs-stack-check
cd3bb277 5870@opindex mapcs-stack-check
157a620e
NC
5871Generate code to check the amount of stack space available upon entry to
5872every function (that actually uses some stack space). If there is
5873insufficient space available then either the function
5874@samp{__rt_stkovf_split_small} or @samp{__rt_stkovf_split_big} will be
5875called, depending upon the amount of stack space required. The run time
5876system is required to provide these functions. The default is
630d3d5a 5877@option{-mno-apcs-stack-check}, since this produces smaller code.
157a620e 5878
247f8561 5879@c not currently implemented
157a620e 5880@item -mapcs-float
cd3bb277 5881@opindex mapcs-float
157a620e 5882Pass floating point arguments using the float point registers. This is
161d7b59 5883one of the variants of the APCS@. This option is recommended if the
157a620e
NC
5884target hardware has a floating point unit or if a lot of floating point
5885arithmetic is going to be performed by the code. The default is
630d3d5a
JM
5886@option{-mno-apcs-float}, since integer only code is slightly increased in
5887size if @option{-mapcs-float} is used.
157a620e 5888
247f8561 5889@c not currently implemented
157a620e 5890@item -mapcs-reentrant
cd3bb277 5891@opindex mapcs-reentrant
247f8561 5892Generate reentrant, position independent code. The default is
630d3d5a 5893@option{-mno-apcs-reentrant}.
247f8561 5894@end ignore
157a620e
NC
5895
5896@item -mthumb-interwork
cd3bb277 5897@opindex mthumb-interwork
247f8561 5898Generate code which supports calling between the ARM and Thumb
157a620e
NC
5899instruction sets. Without this option the two instruction sets cannot
5900be reliably used inside one program. The default is
630d3d5a
JM
5901@option{-mno-thumb-interwork}, since slightly larger code is generated
5902when @option{-mthumb-interwork} is specified.
157a620e
NC
5903
5904@item -mno-sched-prolog
cd3bb277 5905@opindex mno-sched-prolog
157a620e
NC
5906Prevent the reordering of instructions in the function prolog, or the
5907merging of those instruction with the instructions in the function's
ed0e6530
PB
5908body. This means that all functions will start with a recognizable set
5909of instructions (or in fact one of a choice from a small set of
157a620e
NC
5910different function prologues), and this information can be used to
5911locate the start if functions inside an executable piece of code. The
630d3d5a 5912default is @option{-msched-prolog}.
157a620e 5913
74291a4b 5914@item -mhard-float
cd3bb277 5915@opindex mhard-float
74291a4b
MM
5916Generate output containing floating point instructions. This is the
5917default.
5918
5919@item -msoft-float
cd3bb277 5920@opindex msoft-float
74291a4b
MM
5921Generate output containing library calls for floating point.
5922@strong{Warning:} the requisite libraries are not available for all ARM
5923targets. Normally the facilities of the machine's usual C compiler are
5924used, but this cannot be done directly in cross-compilation. You must make
5925your own arrangements to provide suitable library functions for
5926cross-compilation.
5927
630d3d5a 5928@option{-msoft-float} changes the calling convention in the output file;
74291a4b
MM
5929therefore, it is only useful if you compile @emph{all} of a program with
5930this option. In particular, you need to compile @file{libgcc.a}, the
630d3d5a 5931library that comes with GCC, with @option{-msoft-float} in order for
74291a4b
MM
5932this to work.
5933
5934@item -mlittle-endian
cd3bb277 5935@opindex mlittle-endian
74291a4b
MM
5936Generate code for a processor running in little-endian mode. This is
5937the default for all standard configurations.
5938
5939@item -mbig-endian
cd3bb277 5940@opindex mbig-endian
74291a4b
MM
5941Generate code for a processor running in big-endian mode; the default is
5942to compile code for a little-endian processor.
5943
5944@item -mwords-little-endian
cd3bb277 5945@opindex mwords-little-endian
74291a4b
MM
5946This option only applies when generating code for big-endian processors.
5947Generate code for a little-endian word order but a big-endian byte
5948order. That is, a byte order of the form @samp{32107654}. Note: this
5949option should only be used if you require compatibility with code for
5950big-endian ARM processors generated by versions of the compiler prior to
59512.8.
5952
5f1e6755 5953@item -malignment-traps
cd3bb277 5954@opindex malignment-traps
5f1e6755
NC
5955Generate code that will not trap if the MMU has alignment traps enabled.
5956On ARM architectures prior to ARMv4, there were no instructions to
5957access half-word objects stored in memory. However, when reading from
5958memory a feature of the ARM architecture allows a word load to be used,
5959even if the address is unaligned, and the processor core will rotate the
5960data as it is being loaded. This option tells the compiler that such
5961misaligned accesses will cause a MMU trap and that it should instead
5962synthesise the access as a series of byte accesses. The compiler can
5963still use word accesses to load half-word data if it knows that the
5964address is aligned to a word boundary.
5965
5966This option is ignored when compiling for ARM architecture 4 or later,
5967since these processors have instructions to directly access half-word
02f52e19
AJ
5968objects in memory.
5969
5f1e6755 5970@item -mno-alignment-traps
cd3bb277 5971@opindex mno-alignment-traps
5f1e6755
NC
5972Generate code that assumes that the MMU will not trap unaligned
5973accesses. This produces better code when the target instruction set
e979f9e8 5974does not have half-word memory operations (i.e.@: implementations prior to
02f52e19 5975ARMv4).
5f1e6755
NC
5976
5977Note that you cannot use this option to access unaligned word objects,
5978since the processor will only fetch one 32-bit aligned object from
02f52e19 5979memory.
5f1e6755 5980
695ac33f 5981The default setting for most targets is @option{-mno-alignment-traps}, since
5f1e6755 5982this produces better code when there are no half-word memory
02f52e19 5983instructions available.
5f1e6755 5984
74291a4b 5985@item -mshort-load-bytes
247f8561 5986@itemx -mno-short-load-words
cd3bb277
JM
5987@opindex mshort-load-bytes
5988@opindex mno-short-load-words
630d3d5a 5989These are deprecated aliases for @option{-malignment-traps}.
74291a4b
MM
5990
5991@item -mno-short-load-bytes
247f8561 5992@itemx -mshort-load-words
cd3bb277
JM
5993@opindex mno-short-load-bytes
5994@opindex mshort-load-words
630d3d5a 5995This are deprecated aliases for @option{-mno-alignment-traps}.
157a620e 5996
74291a4b 5997@item -mbsd
cd3bb277 5998@opindex mbsd
161d7b59 5999This option only applies to RISC iX@. Emulate the native BSD-mode
630d3d5a 6000compiler. This is the default if @option{-ansi} is not specified.
74291a4b
MM
6001
6002@item -mxopen
cd3bb277 6003@opindex mxopen
161d7b59 6004This option only applies to RISC iX@. Emulate the native X/Open-mode
74291a4b
MM
6005compiler.
6006
6007@item -mno-symrename
cd3bb277 6008@opindex mno-symrename
161d7b59 6009This option only applies to RISC iX@. Do not run the assembler
74291a4b
MM
6010post-processor, @samp{symrename}, after code has been assembled.
6011Normally it is necessary to modify some of the standard symbols in
6012preparation for linking with the RISC iX C library; this option
6013suppresses this pass. The post-processor is never run when the
6014compiler is built for cross-compilation.
157a620e 6015
cd3bb277
JM
6016@item -mcpu=@var{name}
6017@opindex mcpu
157a620e 6018This specifies the name of the target ARM processor. GCC uses this name
247f8561 6019to determine what kind of instructions it can emit when generating
aee96fe9
JM
6020assembly code. Permissible names are: @samp{arm2}, @samp{arm250},
6021@samp{arm3}, @samp{arm6}, @samp{arm60}, @samp{arm600}, @samp{arm610},
6022@samp{arm620}, @samp{arm7}, @samp{arm7m}, @samp{arm7d}, @samp{arm7dm},
6023@samp{arm7di}, @samp{arm7dmi}, @samp{arm70}, @samp{arm700},
6024@samp{arm700i}, @samp{arm710}, @samp{arm710c}, @samp{arm7100},
6025@samp{arm7500}, @samp{arm7500fe}, @samp{arm7tdmi}, @samp{arm8},
6026@samp{strongarm}, @samp{strongarm110}, @samp{strongarm1100},
6027@samp{arm8}, @samp{arm810}, @samp{arm9}, @samp{arm9e}, @samp{arm920},
6028@samp{arm920t}, @samp{arm940t}, @samp{arm9tdmi}, @samp{arm10tdmi},
6029@samp{arm1020t}, @samp{xscale}.
62b10bbc 6030
cd3bb277
JM
6031@itemx -mtune=@var{name}
6032@opindex mtune
630d3d5a 6033This option is very similar to the @option{-mcpu=} option, except that
62b10bbc
NC
6034instead of specifying the actual target processor type, and hence
6035restricting which instructions can be used, it specifies that GCC should
6036tune the performance of the code as if the target were of the type
6037specified in this option, but still choosing the instructions that it
630d3d5a 6038will generate based on the cpu specified by a @option{-mcpu=} option.
247f8561 6039For some ARM implementations better performance can be obtained by using
62b10bbc 6040this option.
157a620e 6041
cd3bb277
JM
6042@item -march=@var{name}
6043@opindex march
157a620e 6044This specifies the name of the target ARM architecture. GCC uses this
247f8561 6045name to determine what kind of instructions it can emit when generating
157a620e 6046assembly code. This option can be used in conjunction with or instead
aee96fe9
JM
6047of the @option{-mcpu=} option. Permissible names are: @samp{armv2},
6048@samp{armv2a}, @samp{armv3}, @samp{armv3m}, @samp{armv4}, @samp{armv4t},
6049@samp{armv5}, @samp{armv5t}, @samp{armv5te}.
157a620e 6050
cd3bb277
JM
6051@item -mfpe=@var{number}
6052@itemx -mfp=@var{number}
6053@opindex mfpe
6054@opindex mfp
b192711e 6055This specifies the version of the floating point emulation available on
630d3d5a 6056the target. Permissible values are 2 and 3. @option{-mfp=} is a synonym
161d7b59 6057for @option{-mfpe=}, for compatibility with older versions of GCC@.
157a620e 6058
cd3bb277
JM
6059@item -mstructure-size-boundary=@var{n}
6060@opindex mstructure-size-boundary
157a620e 6061The size of all structures and unions will be rounded up to a multiple
ed0e6530 6062of the number of bits set by this option. Permissible values are 8 and
157a620e
NC
606332. The default value varies for different toolchains. For the COFF
6064targeted toolchain the default value is 8. Specifying the larger number
ed0e6530 6065can produce faster, more efficient code, but can also increase the size
157a620e
NC
6066of the program. The two values are potentially incompatible. Code
6067compiled with one value cannot necessarily expect to work with code or
6068libraries compiled with the other value, if they exchange information
247f8561 6069using structures or unions.
157a620e 6070
f5a1b0d2 6071@item -mabort-on-noreturn
cd3bb277 6072@opindex mabort-on-noreturn
247f8561
PB
6073Generate a call to the function @code{abort} at the end of a
6074@code{noreturn} function. It will be executed if the function tries to
6075return.
f5a1b0d2 6076
c27ba912
DM
6077@item -mlong-calls
6078@itemx -mno-long-calls
cd3bb277
JM
6079@opindex mlong-calls
6080@opindex mno-long-calls
c27ba912
DM
6081Tells the compiler to perform function calls by first loading the
6082address of the function into a register and then performing a subroutine
6083call on this register. This switch is needed if the target function
6084will lie outside of the 64 megabyte addressing range of the offset based
02f52e19 6085version of subroutine call instruction.
c27ba912
DM
6086
6087Even if this switch is enabled, not all function calls will be turned
6088into long calls. The heuristic is that static functions, functions
6089which have the @samp{short-call} attribute, functions that are inside
6090the scope of a @samp{#pragma no_long_calls} directive and functions whose
6091definitions have already been compiled within the current compilation
6092unit, will not be turned into long calls. The exception to this rule is
b192711e 6093that weak function definitions, functions with the @samp{long-call}
c27ba912
DM
6094attribute or the @samp{section} attribute, and functions that are within
6095the scope of a @samp{#pragma long_calls} directive, will always be
6096turned into long calls.
6097
6098This feature is not enabled by default. Specifying
c21cd8b1 6099@option{-mno-long-calls} will restore the default behavior, as will
c27ba912
DM
6100placing the function calls within the scope of a @samp{#pragma
6101long_calls_off} directive. Note these switches have no effect on how
6102the compiler generates code to handle function calls via function
02f52e19 6103pointers.
c27ba912 6104
62b10bbc 6105@item -mnop-fun-dllimport
cd3bb277 6106@opindex mnop-fun-dllimport
aee96fe9 6107Disable support for the @code{dllimport} attribute.
62b10bbc 6108
ed0e6530 6109@item -msingle-pic-base
cd3bb277 6110@opindex msingle-pic-base
ed0e6530
PB
6111Treat the register used for PIC addressing as read-only, rather than
6112loading it in the prologue for each function. The run-time system is
c21cd8b1 6113responsible for initializing this register with an appropriate value
ed0e6530
PB
6114before execution begins.
6115
cd3bb277
JM
6116@item -mpic-register=@var{reg}
6117@opindex mpic-register
ed0e6530
PB
6118Specify the register to be used for PIC addressing. The default is R10
6119unless stack-checking is enabled, when R9 is used.
6120
247f8561 6121@item -mpoke-function-name
cd3bb277 6122@opindex mpoke-function-name
247f8561
PB
6123Write the name of each function into the text section, directly
6124preceding the function prologue. The generated code is similar to this:
74291a4b 6125
247f8561
PB
6126@smallexample
6127 t0
6128 .ascii "arm_poke_function_name", 0
6129 .align
6130 t1
6131 .word 0xff000000 + (t1 - t0)
6132 arm_poke_function_name
6133 mov ip, sp
6134 stmfd sp!, @{fp, ip, lr, pc@}
6135 sub fp, ip, #4
6136@end smallexample
157a620e 6137
247f8561
PB
6138When performing a stack backtrace, code can inspect the value of
6139@code{pc} stored at @code{fp + 0}. If the trace function then looks at
6140location @code{pc - 12} and the top 8 bits are set, then we know that
6141there is a function name embedded immediately preceding this location
6142and has length @code{((pc[-3]) & 0xff000000)}.
157a620e 6143
247f8561 6144@item -mthumb
cd3bb277 6145@opindex mthumb
247f8561
PB
6146Generate code for the 16-bit Thumb instruction set. The default is to
6147use the 32-bit ARM instruction set.
157a620e
NC
6148
6149@item -mtpcs-frame
cd3bb277 6150@opindex mtpcs-frame
157a620e
NC
6151Generate a stack frame that is compliant with the Thumb Procedure Call
6152Standard for all non-leaf functions. (A leaf function is one that does
630d3d5a 6153not call any other functions.) The default is @option{-mno-tpcs-frame}.
157a620e
NC
6154
6155@item -mtpcs-leaf-frame
cd3bb277 6156@opindex mtpcs-leaf-frame
157a620e
NC
6157Generate a stack frame that is compliant with the Thumb Procedure Call
6158Standard for all leaf functions. (A leaf function is one that does
630d3d5a 6159not call any other functions.) The default is @option{-mno-apcs-leaf-frame}.
62b10bbc
NC
6160
6161@item -mcallee-super-interworking
cd3bb277 6162@opindex mcallee-super-interworking
62b10bbc
NC
6163Gives all externally visible functions in the file being compiled an ARM
6164instruction set header which switches to Thumb mode before executing the
6165rest of the function. This allows these functions to be called from
6166non-interworking code.
6167
6168@item -mcaller-super-interworking
cd3bb277 6169@opindex mcaller-super-interworking
62b10bbc
NC
6170Allows calls via function pointers (including virtual functions) to
6171execute correctly regardless of whether the target code has been
6172compiled for interworking or not. There is a small overhead in the cost
4bdc1ac7
PB
6173of executing a function pointer if this option is enabled.
6174
157a620e
NC
6175@end table
6176
ecff22ab
JL
6177@node MN10200 Options
6178@subsection MN10200 Options
6179@cindex MN10200 options
630d3d5a 6180These @option{-m} options are defined for Matsushita MN10200 architectures:
2642624b 6181@table @gcctabopt
ecff22ab
JL
6182
6183@item -mrelax
cd3bb277 6184@opindex mrelax
ecff22ab
JL
6185Indicate to the linker that it should perform a relaxation optimization pass
6186to shorten branches, calls and absolute memory addresses. This option only
6187has an effect when used on the command line for the final link step.
6188
02f52e19 6189This option makes symbolic debugging impossible.
ecff22ab 6190@end table
157a620e 6191
6d6d0fa0
JL
6192@node MN10300 Options
6193@subsection MN10300 Options
6194@cindex MN10300 options
630d3d5a 6195These @option{-m} options are defined for Matsushita MN10300 architectures:
6d6d0fa0 6196
2642624b 6197@table @gcctabopt
6d6d0fa0 6198@item -mmult-bug
cd3bb277 6199@opindex mmult-bug
6d6d0fa0
JL
6200Generate code to avoid bugs in the multiply instructions for the MN10300
6201processors. This is the default.
6202
6203@item -mno-mult-bug
cd3bb277 6204@opindex mno-mult-bug
6d6d0fa0
JL
6205Do not generate code to avoid bugs in the multiply instructions for the
6206MN10300 processors.
ecff22ab 6207
705ac34f 6208@item -mam33
cd3bb277 6209@opindex mam33
705ac34f
JL
6210Generate code which uses features specific to the AM33 processor.
6211
6212@item -mno-am33
cd3bb277 6213@opindex mno-am33
705ac34f
JL
6214Do not generate code which uses features specific to the AM33 processor. This
6215is the default.
6216
c474f76b
AO
6217@item -mno-crt0
6218@opindex mno-crt0
6219Do not link in the C run-time initialization object file.
6220
ecff22ab 6221@item -mrelax
cd3bb277 6222@opindex mrelax
ecff22ab
JL
6223Indicate to the linker that it should perform a relaxation optimization pass
6224to shorten branches, calls and absolute memory addresses. This option only
6225has an effect when used on the command line for the final link step.
6226
02f52e19 6227This option makes symbolic debugging impossible.
6d6d0fa0
JL
6228@end table
6229
ecff22ab 6230
861bb6c1
JL
6231@node M32R/D Options
6232@subsection M32R/D Options
6233@cindex M32R/D options
6234
630d3d5a 6235These @option{-m} options are defined for Mitsubishi M32R/D architectures:
861bb6c1 6236
2642624b 6237@table @gcctabopt
98180123
NC
6238@item -m32rx
6239@opindex m32rx
0bf93a51 6240Generate code for the M32R/X@.
98180123
NC
6241
6242@item -m32r
6243@opindex m32r
0bf93a51 6244Generate code for the M32R@. This is the default.
de41e41c 6245
861bb6c1 6246@item -mcode-model=small
cd3bb277 6247@opindex mcode-model=small
861bb6c1
JL
6248Assume all objects live in the lower 16MB of memory (so that their addresses
6249can be loaded with the @code{ld24} instruction), and assume all subroutines
6250are reachable with the @code{bl} instruction.
6251This is the default.
6252
6253The addressability of a particular object can be set with the
6254@code{model} attribute.
6255
6256@item -mcode-model=medium
cd3bb277 6257@opindex mcode-model=medium
02f52e19 6258Assume objects may be anywhere in the 32-bit address space (the compiler
861bb6c1
JL
6259will generate @code{seth/add3} instructions to load their addresses), and
6260assume all subroutines are reachable with the @code{bl} instruction.
6261
6262@item -mcode-model=large
cd3bb277 6263@opindex mcode-model=large
02f52e19 6264Assume objects may be anywhere in the 32-bit address space (the compiler
861bb6c1
JL
6265will generate @code{seth/add3} instructions to load their addresses), and
6266assume subroutines may not be reachable with the @code{bl} instruction
6267(the compiler will generate the much slower @code{seth/add3/jl}
6268instruction sequence).
6269
6270@item -msdata=none
cd3bb277 6271@opindex msdata=none
861bb6c1
JL
6272Disable use of the small data area. Variables will be put into
6273one of @samp{.data}, @samp{bss}, or @samp{.rodata} (unless the
6274@code{section} attribute has been specified).
6275This is the default.
6276
6277The small data area consists of sections @samp{.sdata} and @samp{.sbss}.
6278Objects may be explicitly put in the small data area with the
6279@code{section} attribute using one of these sections.
6280
6281@item -msdata=sdata
cd3bb277 6282@opindex msdata=sdata
861bb6c1
JL
6283Put small global and static data in the small data area, but do not
6284generate special code to reference them.
6285
6286@item -msdata=use
cd3bb277 6287@opindex msdata=use
861bb6c1
JL
6288Put small global and static data in the small data area, and generate
6289special instructions to reference them.
6290
6291@item -G @var{num}
cd3bb277 6292@opindex G
861bb6c1
JL
6293@cindex smaller data references
6294Put global and static objects less than or equal to @var{num} bytes
6295into the small data or bss sections instead of the normal data or bss
6296sections. The default value of @var{num} is 8.
630d3d5a 6297The @option{-msdata} option must be set to one of @samp{sdata} or @samp{use}
861bb6c1
JL
6298for this option to have any effect.
6299
630d3d5a 6300All modules should be compiled with the same @option{-G @var{num}} value.
861bb6c1 6301Compiling with different values of @var{num} may or may not work; if it
695ac33f 6302doesn't the linker will give an error message---incorrect code will not be
861bb6c1
JL
6303generated.
6304
6305@end table
6306
74291a4b
MM
6307@node M88K Options
6308@subsection M88K Options
6309@cindex M88k options
6310
6311These @samp{-m} options are defined for Motorola 88k architectures:
6312
2642624b 6313@table @gcctabopt
74291a4b 6314@item -m88000
cd3bb277 6315@opindex m88000
74291a4b
MM
6316Generate code that works well on both the m88100 and the
6317m88110.
6318
6319@item -m88100
cd3bb277 6320@opindex m88100
74291a4b
MM
6321Generate code that works best for the m88100, but that also
6322runs on the m88110.
6323
6324@item -m88110
cd3bb277 6325@opindex m88110
74291a4b
MM
6326Generate code that works best for the m88110, and may not run
6327on the m88100.
6328
6329@item -mbig-pic
cd3bb277 6330@opindex mbig-pic
74291a4b 6331Obsolete option to be removed from the next revision.
630d3d5a 6332Use @option{-fPIC}.
74291a4b
MM
6333
6334@item -midentify-revision
cd3bb277 6335@opindex midentify-revision
74291a4b
MM
6336@cindex identifying source, compiler (88k)
6337Include an @code{ident} directive in the assembler output recording the
6338source file name, compiler name and version, timestamp, and compilation
6339flags used.
6340
6341@item -mno-underscores
cd3bb277 6342@opindex mno-underscores
74291a4b
MM
6343@cindex underscores, avoiding (88k)
6344In assembler output, emit symbol names without adding an underscore
6345character at the beginning of each name. The default is to use an
6346underscore as prefix on each name.
6347
6348@item -mocs-debug-info
6349@itemx -mno-ocs-debug-info
cd3bb277
JM
6350@opindex mocs-debug-info
6351@opindex mno-ocs-debug-info
74291a4b
MM
6352@cindex OCS (88k)
6353@cindex debugging, 88k OCS
6354Include (or omit) additional debugging information (about registers used
6355in each stack frame) as specified in the 88open Object Compatibility
161d7b59 6356Standard, ``OCS''@. This extra information allows debugging of code that
74291a4b
MM
6357has had the frame pointer eliminated. The default for DG/UX, SVr4, and
6358Delta 88 SVr3.2 is to include this information; other 88k configurations
6359omit this information by default.
6360
6361@item -mocs-frame-position
cd3bb277 6362@opindex mocs-frame-position
74291a4b
MM
6363@cindex register positions in frame (88k)
6364When emitting COFF debugging information for automatic variables and
6365parameters stored on the stack, use the offset from the canonical frame
6366address, which is the stack pointer (register 31) on entry to the
6367function. The DG/UX, SVr4, Delta88 SVr3.2, and BCS configurations use
630d3d5a
JM
6368@option{-mocs-frame-position}; other 88k configurations have the default
6369@option{-mno-ocs-frame-position}.
74291a4b
MM
6370
6371@item -mno-ocs-frame-position
cd3bb277 6372@opindex mno-ocs-frame-position
74291a4b
MM
6373@cindex register positions in frame (88k)
6374When emitting COFF debugging information for automatic variables and
6375parameters stored on the stack, use the offset from the frame pointer
6376register (register 30). When this option is in effect, the frame
6377pointer is not eliminated when debugging information is selected by the
6378-g switch.
6379
6380@item -moptimize-arg-area
cd3bb277 6381@opindex moptimize-arg-area
74291a4b 6382@cindex arguments in frame (88k)
9c34dbbf
ZW
6383Save space by reorganizing the stack frame. This option generates code
6384that does not agree with the 88open specifications, but uses less
6385memory.
6386
6387@itemx -mno-optimize-arg-area
6388@opindex mno-optimize-arg-area
6389Do not reorganize the stack frame to save space. This is the default.
6390The generated conforms to the specification, but uses more memory.
74291a4b
MM
6391
6392@item -mshort-data-@var{num}
cd3bb277 6393@opindex mshort-data
74291a4b
MM
6394@cindex smaller data references (88k)
6395@cindex r0-relative references (88k)
6396Generate smaller data references by making them relative to @code{r0},
6397which allows loading a value using a single instruction (rather than the
6398usual two). You control which data references are affected by
6399specifying @var{num} with this option. For example, if you specify
630d3d5a 6400@option{-mshort-data-512}, then the data references affected are those
74291a4b 6401involving displacements of less than 512 bytes.
630d3d5a 6402@option{-mshort-data-@var{num}} is not effective for @var{num} greater
74291a4b
MM
6403than 64k.
6404
6405@item -mserialize-volatile
cd3bb277 6406@opindex mserialize-volatile
74291a4b 6407@itemx -mno-serialize-volatile
cd3bb277 6408@opindex mno-serialize-volatile
74291a4b
MM
6409@cindex sequential consistency on 88k
6410Do, or don't, generate code to guarantee sequential consistency
6411of volatile memory references. By default, consistency is
6412guaranteed.
6413
6414The order of memory references made by the MC88110 processor does
6415not always match the order of the instructions requesting those
6416references. In particular, a load instruction may execute before
6417a preceding store instruction. Such reordering violates
6418sequential consistency of volatile memory references, when there
6419are multiple processors. When consistency must be guaranteed,
f0523f02 6420GCC generates special instructions, as needed, to force
74291a4b
MM
6421execution in the proper order.
6422
6423The MC88100 processor does not reorder memory references and so
f0523f02
JM
6424always provides sequential consistency. However, by default, GCC
6425generates the special instructions to guarantee consistency
630d3d5a 6426even when you use @option{-m88100}, so that the code may be run on an
74291a4b 6427MC88110 processor. If you intend to run your code only on the
630d3d5a 6428MC88100 processor, you may use @option{-mno-serialize-volatile}.
74291a4b
MM
6429
6430The extra code generated to guarantee consistency may affect the
6431performance of your application. If you know that you can safely
630d3d5a 6432forgo this guarantee, you may use @option{-mno-serialize-volatile}.
74291a4b
MM
6433
6434@item -msvr4
6435@itemx -msvr3
cd3bb277
JM
6436@opindex msvr4
6437@opindex msvr3
74291a4b
MM
6438@cindex assembler syntax, 88k
6439@cindex SVr4
630d3d5a 6440Turn on (@option{-msvr4}) or off (@option{-msvr3}) compiler extensions
74291a4b
MM
6441related to System V release 4 (SVr4). This controls the following:
6442
6443@enumerate
6444@item
6445Which variant of the assembler syntax to emit.
6446@item
630d3d5a 6447@option{-msvr4} makes the C preprocessor recognize @samp{#pragma weak}
74291a4b
MM
6448that is used on System V release 4.
6449@item
630d3d5a 6450@option{-msvr4} makes GCC issue additional declaration directives used in
74291a4b
MM
6451SVr4.
6452@end enumerate
6453
630d3d5a 6454@option{-msvr4} is the default for the m88k-motorola-sysv4 and
767094dd 6455m88k-dg-dgux m88k configurations. @option{-msvr3} is the default for all
74291a4b
MM
6456other m88k configurations.
6457
6458@item -mversion-03.00
cd3bb277 6459@opindex mversion-03.00
74291a4b
MM
6460This option is obsolete, and is ignored.
6461@c ??? which asm syntax better for GAS? option there too?
6462
6463@item -mno-check-zero-division
6464@itemx -mcheck-zero-division
cd3bb277
JM
6465@opindex mno-check-zero-division
6466@opindex mcheck-zero-division
74291a4b
MM
6467@cindex zero division on 88k
6468Do, or don't, generate code to guarantee that integer division by
6469zero will be detected. By default, detection is guaranteed.
6470
6471Some models of the MC88100 processor fail to trap upon integer
6472division by zero under certain conditions. By default, when
f0523f02 6473compiling code that might be run on such a processor, GCC
74291a4b
MM
6474generates code that explicitly checks for zero-valued divisors
6475and traps with exception number 503 when one is detected. Use of
9c34dbbf 6476@option{-mno-check-zero-division} suppresses such checking for code
74291a4b
MM
6477generated to run on an MC88100 processor.
6478
9c34dbbf
ZW
6479GCC assumes that the MC88110 processor correctly detects all instances
6480of integer division by zero. When @option{-m88110} is specified, no
6481explicit checks for zero-valued divisors are generated, and both
6482@option{-mcheck-zero-division} and @option{-mno-check-zero-division} are
6483ignored.
74291a4b
MM
6484
6485@item -muse-div-instruction
cd3bb277 6486@opindex muse-div-instruction
74291a4b
MM
6487@cindex divide instruction, 88k
6488Use the div instruction for signed integer division on the
6489MC88100 processor. By default, the div instruction is not used.
6490
6491On the MC88100 processor the signed integer division instruction
6492div) traps to the operating system on a negative operand. The
6493operating system transparently completes the operation, but at a
6494large cost in execution time. By default, when compiling code
f0523f02 6495that might be run on an MC88100 processor, GCC emulates signed
74291a4b
MM
6496integer division using the unsigned integer division instruction
6497divu), thereby avoiding the large penalty of a trap to the
6498operating system. Such emulation has its own, smaller, execution
6499cost in both time and space. To the extent that your code's
6500important signed integer division operations are performed on two
6501nonnegative operands, it may be desirable to use the div
6502instruction directly.
6503
6504On the MC88110 processor the div instruction (also known as the
6505divs instruction) processes negative operands without trapping to
630d3d5a
JM
6506the operating system. When @option{-m88110} is specified,
6507@option{-muse-div-instruction} is ignored, and the div instruction is used
74291a4b
MM
6508for signed integer division.
6509
630d3d5a 6510Note that the result of dividing @code{INT_MIN} by @minus{}1 is undefined. In
74291a4b 6511particular, the behavior of such a division with and without
630d3d5a 6512@option{-muse-div-instruction} may differ.
74291a4b
MM
6513
6514@item -mtrap-large-shift
6515@itemx -mhandle-large-shift
cd3bb277
JM
6516@opindex mtrap-large-shift
6517@opindex mhandle-large-shift
74291a4b
MM
6518@cindex bit shift overflow (88k)
6519@cindex large bit shifts (88k)
6520Include code to detect bit-shifts of more than 31 bits; respectively,
0c2d1a2a 6521trap such shifts or emit code to handle them properly. By default GCC
74291a4b
MM
6522makes no special provision for large bit shifts.
6523
6524@item -mwarn-passed-structs
cd3bb277 6525@opindex mwarn-passed-structs
74291a4b
MM
6526@cindex structure passing (88k)
6527Warn when a function passes a struct as an argument or result.
6528Structure-passing conventions have changed during the evolution of the C
6529language, and are often the source of portability problems. By default,
0c2d1a2a 6530GCC issues no such warning.
74291a4b
MM
6531@end table
6532
9c34dbbf
ZW
6533@c break page here to avoid unsightly interparagraph stretch.
6534@c -zw, 2001-8-17
6535@page
6536
74291a4b
MM
6537@node RS/6000 and PowerPC Options
6538@subsection IBM RS/6000 and PowerPC Options
6539@cindex RS/6000 and PowerPC Options
6540@cindex IBM RS/6000 and PowerPC Options
6541
6542These @samp{-m} options are defined for the IBM RS/6000 and PowerPC:
2642624b 6543@table @gcctabopt
74291a4b
MM
6544@item -mpower
6545@itemx -mno-power
6546@itemx -mpower2
6547@itemx -mno-power2
6548@itemx -mpowerpc
6549@itemx -mno-powerpc
6550@itemx -mpowerpc-gpopt
6551@itemx -mno-powerpc-gpopt
6552@itemx -mpowerpc-gfxopt
6553@itemx -mno-powerpc-gfxopt
7fe90e7b
DE
6554@itemx -mpowerpc64
6555@itemx -mno-powerpc64
cd3bb277
JM
6556@opindex mpower
6557@opindex mno-power
6558@opindex mpower2
6559@opindex mno-power2
6560@opindex mpowerpc
6561@opindex mno-powerpc
6562@opindex mpowerpc-gpopt
6563@opindex mno-powerpc-gpopt
6564@opindex mpowerpc-gfxopt
6565@opindex mno-powerpc-gfxopt
6566@opindex mpowerpc64
6567@opindex mno-powerpc64
0c2d1a2a 6568GCC supports two related instruction set architectures for the
161d7b59 6569RS/6000 and PowerPC@. The @dfn{POWER} instruction set are those
74291a4b
MM
6570instructions supported by the @samp{rios} chip set used in the original
6571RS/6000 systems and the @dfn{PowerPC} instruction set is the
6572architecture of the Motorola MPC5xx, MPC6xx, MPC8xx microprocessors, and
861bb6c1 6573the IBM 4xx microprocessors.
74291a4b
MM
6574
6575Neither architecture is a subset of the other. However there is a
6576large common subset of instructions supported by both. An MQ
6577register is included in processors supporting the POWER architecture.
6578
6579You use these options to specify which instructions are available on the
6580processor you are using. The default value of these options is
161d7b59 6581determined when configuring GCC@. Specifying the
630d3d5a
JM
6582@option{-mcpu=@var{cpu_type}} overrides the specification of these
6583options. We recommend you use the @option{-mcpu=@var{cpu_type}} option
74291a4b
MM
6584rather than the options listed above.
6585
630d3d5a 6586The @option{-mpower} option allows GCC to generate instructions that
74291a4b 6587are found only in the POWER architecture and to use the MQ register.
630d3d5a 6588Specifying @option{-mpower2} implies @option{-power} and also allows GCC
74291a4b
MM
6589to generate instructions that are present in the POWER2 architecture but
6590not the original POWER architecture.
6591
630d3d5a 6592The @option{-mpowerpc} option allows GCC to generate instructions that
74291a4b 6593are found only in the 32-bit subset of the PowerPC architecture.
630d3d5a 6594Specifying @option{-mpowerpc-gpopt} implies @option{-mpowerpc} and also allows
0c2d1a2a 6595GCC to use the optional PowerPC architecture instructions in the
74291a4b 6596General Purpose group, including floating-point square root. Specifying
630d3d5a 6597@option{-mpowerpc-gfxopt} implies @option{-mpowerpc} and also allows GCC to
74291a4b
MM
6598use the optional PowerPC architecture instructions in the Graphics
6599group, including floating-point select.
6600
630d3d5a 6601The @option{-mpowerpc64} option allows GCC to generate the additional
7fe90e7b 660264-bit instructions that are found in the full PowerPC64 architecture
0c2d1a2a 6603and to treat GPRs as 64-bit, doubleword quantities. GCC defaults to
630d3d5a 6604@option{-mno-powerpc64}.
7fe90e7b 6605
630d3d5a 6606If you specify both @option{-mno-power} and @option{-mno-powerpc}, GCC
74291a4b
MM
6607will use only the instructions in the common subset of both
6608architectures plus some special AIX common-mode calls, and will not use
630d3d5a 6609the MQ register. Specifying both @option{-mpower} and @option{-mpowerpc}
0c2d1a2a 6610permits GCC to use any instruction from either architecture and to
74291a4b
MM
6611allow use of the MQ register; specify this for the Motorola MPC601.
6612
6613@item -mnew-mnemonics
6614@itemx -mold-mnemonics
cd3bb277
JM
6615@opindex mnew-mnemonics
6616@opindex mold-mnemonics
9c34dbbf
ZW
6617Select which mnemonics to use in the generated assembler code. With
6618@option{-mnew-mnemonics}, GCC uses the assembler mnemonics defined for
6619the PowerPC architecture. With @option{-mold-mnemonics} it uses the
6620assembler mnemonics defined for the POWER architecture. Instructions
6621defined in only one architecture have only one mnemonic; GCC uses that
6622mnemonic irrespective of which of these options is specified.
74291a4b 6623
0c2d1a2a 6624GCC defaults to the mnemonics appropriate for the architecture in
630d3d5a 6625use. Specifying @option{-mcpu=@var{cpu_type}} sometimes overrides the
7fe90e7b 6626value of these option. Unless you are building a cross-compiler, you
630d3d5a
JM
6627should normally not specify either @option{-mnew-mnemonics} or
6628@option{-mold-mnemonics}, but should instead accept the default.
74291a4b
MM
6629
6630@item -mcpu=@var{cpu_type}
cd3bb277 6631@opindex mcpu
74291a4b
MM
6632Set architecture type, register usage, choice of mnemonics, and
6633instruction scheduling parameters for machine type @var{cpu_type}.
5f59ecb7
DE
6634Supported values for @var{cpu_type} are @samp{rios}, @samp{rios1},
6635@samp{rsc}, @samp{rios2}, @samp{rs64a}, @samp{601}, @samp{602},
6636@samp{603}, @samp{603e}, @samp{604}, @samp{604e}, @samp{620},
ed947a96
DJ
6637@samp{630}, @samp{740}, @samp{7400}, @samp{7450}, @samp{750},
6638@samp{power}, @samp{power2}, @samp{powerpc}, @samp{403}, @samp{505},
6639@samp{801}, @samp{821}, @samp{823}, and @samp{860} and @samp{common}.
9c34dbbf
ZW
6640
6641@option{-mcpu=common} selects a completely generic processor. Code
6642generated under this option will run on any POWER or PowerPC processor.
6643GCC will use only the instructions in the common subset of both
6644architectures, and will not use the MQ register. GCC assumes a generic
74291a4b
MM
6645processor model for scheduling purposes.
6646
9c34dbbf
ZW
6647@option{-mcpu=power}, @option{-mcpu=power2}, @option{-mcpu=powerpc}, and
6648@option{-mcpu=powerpc64} specify generic POWER, POWER2, pure 32-bit
6649PowerPC (i.e., not MPC601), and 64-bit PowerPC architecture machine
6650types, with an appropriate, generic processor model assumed for
6651scheduling purposes.
74291a4b 6652
9c34dbbf
ZW
6653The other options specify a specific processor. Code generated under
6654those options will run best on that processor, and may not run at all on
6655others.
6656
6657The @option{-mcpu} options automatically enable or disable other
6658@option{-m} options as follows:
6659
6660@table @samp
6661@item common
6662@option{-mno-power}, @option{-mno-powerc}
6663
6664@item power
6665@itemx power2
6666@itemx rios1
6667@itemx rios2
6668@itemx rsc
6669@option{-mpower}, @option{-mno-powerpc}, @option{-mno-new-mnemonics}
6670
6671@item powerpc
6672@itemx rs64a
6673@itemx 602
6674@itemx 603
6675@itemx 603e
6676@itemx 604
6677@itemx 620
6678@itemx 630
6679@itemx 740
ed947a96
DJ
6680@itemx 7400
6681@itemx 7450
9c34dbbf
ZW
6682@itemx 750
6683@itemx 505
6684@option{-mno-power}, @option{-mpowerpc}, @option{-mnew-mnemonics}
6685
6686@item 601
6687@option{-mpower}, @option{-mpowerpc}, @option{-mnew-mnemonics}
6688
6689@item 403
6690@itemx 821
6691@itemx 860
6692@option{-mno-power}, @option{-mpowerpc}, @option{-mnew-mnemonics}, @option{-msoft-float}
6693@end table
74291a4b
MM
6694
6695@item -mtune=@var{cpu_type}
cd3bb277 6696@opindex mtune
74291a4b 6697Set the instruction scheduling parameters for machine type
9c34dbbf
ZW
6698@var{cpu_type}, but do not set the architecture type, register usage, or
6699choice of mnemonics, as @option{-mcpu=@var{cpu_type}} would. The same
6700values for @var{cpu_type} are used for @option{-mtune} as for
6701@option{-mcpu}. If both are specified, the code generated will use the
6702architecture, registers, and mnemonics set by @option{-mcpu}, but the
6703scheduling parameters set by @option{-mtune}.
74291a4b 6704
0ac081f6
AH
6705@item -maltivec
6706@itemx -mno-altivec
6707@opindex maltivec
6708@opindex mno-altivec
6709These switches enable or disable the use of built-in functions that
6710allow access to the AltiVec instruction set. You may also need to set
6711@option{-mabi=altivec} to adjust the current ABI with AltiVec ABI
6712enhancements.
6713
74291a4b
MM
6714@item -mfull-toc
6715@itemx -mno-fp-in-toc
6716@itemx -mno-sum-in-toc
6717@itemx -mminimal-toc
cd3bb277
JM
6718@opindex mfull-toc
6719@opindex mno-fp-in-toc
6720@opindex mno-sum-in-toc
6721@opindex mminimal-toc
74291a4b 6722Modify generation of the TOC (Table Of Contents), which is created for
630d3d5a 6723every executable file. The @option{-mfull-toc} option is selected by
0c2d1a2a
JB
6724default. In that case, GCC will allocate at least one TOC entry for
6725each unique non-automatic variable reference in your program. GCC
161d7b59
JM
6726will also place floating-point constants in the TOC@. However, only
672716,384 entries are available in the TOC@.
74291a4b
MM
6728
6729If you receive a linker error message that saying you have overflowed
6730the available TOC space, you can reduce the amount of TOC space used
630d3d5a
JM
6731with the @option{-mno-fp-in-toc} and @option{-mno-sum-in-toc} options.
6732@option{-mno-fp-in-toc} prevents GCC from putting floating-point
6733constants in the TOC and @option{-mno-sum-in-toc} forces GCC to
74291a4b 6734generate code to calculate the sum of an address and a constant at
161d7b59 6735run-time instead of putting that sum into the TOC@. You may specify one
0c2d1a2a 6736or both of these options. Each causes GCC to produce very slightly
74291a4b
MM
6737slower and larger code at the expense of conserving TOC space.
6738
6739If you still run out of space in the TOC even when you specify both of
630d3d5a 6740these options, specify @option{-mminimal-toc} instead. This option causes
0c2d1a2a
JB
6741GCC to make only one TOC entry for every file. When you specify this
6742option, GCC will produce code that is slower and larger but which
74291a4b 6743uses extremely little TOC space. You may wish to use this option
bd819a4a 6744only on files that contain less frequently executed code.
74291a4b 6745
fa06229f
GK
6746@item -maix64
6747@itemx -maix32
cd3bb277
JM
6748@opindex maix64
6749@opindex maix32
fa06229f 6750Enable 64-bit AIX ABI and calling convention: 64-bit pointers, 64-bit
7fe90e7b 6751@code{long} type, and the infrastructure needed to support them.
630d3d5a
JM
6752Specifying @option{-maix64} implies @option{-mpowerpc64} and
6753@option{-mpowerpc}, while @option{-maix32} disables the 64-bit ABI and
6754implies @option{-mno-powerpc64}. GCC defaults to @option{-maix32}.
7fe90e7b 6755
74291a4b
MM
6756@item -mxl-call
6757@itemx -mno-xl-call
cd3bb277
JM
6758@opindex mxl-call
6759@opindex mno-xl-call
74291a4b
MM
6760On AIX, pass floating-point arguments to prototyped functions beyond the
6761register save area (RSA) on the stack in addition to argument FPRs. The
6762AIX calling convention was extended but not initially documented to
6763handle an obscure K&R C case of calling a function that takes the
6764address of its arguments with fewer arguments than declared. AIX XL
7fe90e7b
DE
6765compilers access floating point arguments which do not fit in the
6766RSA from the stack when a subroutine is compiled without
74291a4b
MM
6767optimization. Because always storing floating-point arguments on the
6768stack is inefficient and rarely needed, this option is not enabled by
6769default and only is necessary when calling subroutines compiled by AIX
6770XL compilers without optimization.
6771
861bb6c1 6772@item -mpe
cd3bb277 6773@opindex mpe
161d7b59 6774Support @dfn{IBM RS/6000 SP} @dfn{Parallel Environment} (PE)@. Link an
861bb6c1
JL
6775application written to use message passing with special startup code to
6776enable the application to run. The system must have PE installed in the
6777standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
630d3d5a 6778must be overridden with the @option{-specs=} option to specify the
861bb6c1 6779appropriate directory location. The Parallel Environment does not
0a379b7a 6780support threads, so the @option{-mpe} option and the @option{-pthread}
861bb6c1
JL
6781option are incompatible.
6782
74291a4b
MM
6783@item -msoft-float
6784@itemx -mhard-float
cd3bb277
JM
6785@opindex msoft-float
6786@opindex mhard-float
74291a4b
MM
6787Generate code that does not use (uses) the floating-point register set.
6788Software floating point emulation is provided if you use the
630d3d5a 6789@option{-msoft-float} option, and pass the option to GCC when linking.
74291a4b
MM
6790
6791@item -mmultiple
6792@itemx -mno-multiple
cd3bb277
JM
6793@opindex mmultiple
6794@opindex mno-multiple
74291a4b
MM
6795Generate code that uses (does not use) the load multiple word
6796instructions and the store multiple word instructions. These
6797instructions are generated by default on POWER systems, and not
630d3d5a 6798generated on PowerPC systems. Do not use @option{-mmultiple} on little
74291a4b 6799endian PowerPC systems, since those instructions do not work when the
bef84347
VM
6800processor is in little endian mode. The exceptions are PPC740 and
6801PPC750 which permit the instructions usage in little endian mode.
74291a4b
MM
6802
6803@item -mstring
6804@itemx -mno-string
cd3bb277
JM
6805@opindex mstring
6806@opindex mno-string
bef84347
VM
6807Generate code that uses (does not use) the load string instructions
6808and the store string word instructions to save multiple registers and
6809do small block moves. These instructions are generated by default on
6810POWER systems, and not generated on PowerPC systems. Do not use
630d3d5a 6811@option{-mstring} on little endian PowerPC systems, since those
bef84347
VM
6812instructions do not work when the processor is in little endian mode.
6813The exceptions are PPC740 and PPC750 which permit the instructions
6814usage in little endian mode.
74291a4b 6815
861bb6c1
JL
6816@item -mupdate
6817@itemx -mno-update
cd3bb277
JM
6818@opindex mupdate
6819@opindex mno-update
861bb6c1
JL
6820Generate code that uses (does not use) the load or store instructions
6821that update the base register to the address of the calculated memory
6822location. These instructions are generated by default. If you use
630d3d5a 6823@option{-mno-update}, there is a small window between the time that the
861bb6c1
JL
6824stack pointer is updated and the address of the previous frame is
6825stored, which means code that walks the stack frame across interrupts or
6826signals may get corrupted data.
6827
6828@item -mfused-madd
6829@itemx -mno-fused-madd
cd3bb277
JM
6830@opindex mfused-madd
6831@opindex mno-fused-madd
861bb6c1
JL
6832Generate code that uses (does not use) the floating point multiply and
6833accumulate instructions. These instructions are generated by default if
6834hardware floating is used.
6835
74291a4b
MM
6836@item -mno-bit-align
6837@itemx -mbit-align
cd3bb277
JM
6838@opindex mno-bit-align
6839@opindex mbit-align
74291a4b 6840On System V.4 and embedded PowerPC systems do not (do) force structures
c771326b
JM
6841and unions that contain bit-fields to be aligned to the base type of the
6842bit-field.
74291a4b
MM
6843
6844For example, by default a structure containing nothing but 8
c771326b 6845@code{unsigned} bit-fields of length 1 would be aligned to a 4 byte
630d3d5a 6846boundary and have a size of 4 bytes. By using @option{-mno-bit-align},
74291a4b
MM
6847the structure would be aligned to a 1 byte boundary and be one byte in
6848size.
6849
6850@item -mno-strict-align
6851@itemx -mstrict-align
cd3bb277
JM
6852@opindex mno-strict-align
6853@opindex mstrict-align
74291a4b
MM
6854On System V.4 and embedded PowerPC systems do not (do) assume that
6855unaligned memory references will be handled by the system.
6856
6857@item -mrelocatable
6858@itemx -mno-relocatable
cd3bb277
JM
6859@opindex mrelocatable
6860@opindex mno-relocatable
74291a4b
MM
6861On embedded PowerPC systems generate code that allows (does not allow)
6862the program to be relocated to a different address at runtime. If you
630d3d5a
JM
6863use @option{-mrelocatable} on any module, all objects linked together must
6864be compiled with @option{-mrelocatable} or @option{-mrelocatable-lib}.
74291a4b
MM
6865
6866@item -mrelocatable-lib
6867@itemx -mno-relocatable-lib
cd3bb277
JM
6868@opindex mrelocatable-lib
6869@opindex mno-relocatable-lib
74291a4b
MM
6870On embedded PowerPC systems generate code that allows (does not allow)
6871the program to be relocated to a different address at runtime. Modules
630d3d5a
JM
6872compiled with @option{-mrelocatable-lib} can be linked with either modules
6873compiled without @option{-mrelocatable} and @option{-mrelocatable-lib} or
6874with modules compiled with the @option{-mrelocatable} options.
74291a4b
MM
6875
6876@item -mno-toc
6877@itemx -mtoc
cd3bb277
JM
6878@opindex mno-toc
6879@opindex mtoc
74291a4b
MM
6880On System V.4 and embedded PowerPC systems do not (do) assume that
6881register 2 contains a pointer to a global area pointing to the addresses
6882used in the program.
6883
74291a4b
MM
6884@item -mlittle
6885@itemx -mlittle-endian
cd3bb277
JM
6886@opindex mlittle
6887@opindex mlittle-endian
74291a4b 6888On System V.4 and embedded PowerPC systems compile code for the
630d3d5a
JM
6889processor in little endian mode. The @option{-mlittle-endian} option is
6890the same as @option{-mlittle}.
74291a4b
MM
6891
6892@item -mbig
6893@itemx -mbig-endian
cd3bb277
JM
6894@opindex mbig
6895@opindex mbig-endian
74291a4b 6896On System V.4 and embedded PowerPC systems compile code for the
630d3d5a
JM
6897processor in big endian mode. The @option{-mbig-endian} option is
6898the same as @option{-mbig}.
74291a4b
MM
6899
6900@item -mcall-sysv
cd3bb277 6901@opindex mcall-sysv
74291a4b
MM
6902On System V.4 and embedded PowerPC systems compile code using calling
6903conventions that adheres to the March 1995 draft of the System V
6904Application Binary Interface, PowerPC processor supplement. This is the
6905default unless you configured GCC using @samp{powerpc-*-eabiaix}.
6906
6907@item -mcall-sysv-eabi
cd3bb277 6908@opindex mcall-sysv-eabi
630d3d5a 6909Specify both @option{-mcall-sysv} and @option{-meabi} options.
74291a4b
MM
6910
6911@item -mcall-sysv-noeabi
cd3bb277 6912@opindex mcall-sysv-noeabi
630d3d5a 6913Specify both @option{-mcall-sysv} and @option{-mno-eabi} options.
74291a4b
MM
6914
6915@item -mcall-aix
cd3bb277 6916@opindex mcall-aix
74291a4b 6917On System V.4 and embedded PowerPC systems compile code using calling
161d7b59 6918conventions that are similar to those used on AIX@. This is the
74291a4b
MM
6919default if you configured GCC using @samp{powerpc-*-eabiaix}.
6920
6921@item -mcall-solaris
cd3bb277 6922@opindex mcall-solaris
74291a4b
MM
6923On System V.4 and embedded PowerPC systems compile code for the Solaris
6924operating system.
6925
6926@item -mcall-linux
cd3bb277 6927@opindex mcall-linux
861bb6c1
JL
6928On System V.4 and embedded PowerPC systems compile code for the
6929Linux-based GNU system.
74291a4b 6930
48180d68
RM
6931@item -mcall-gnu
6932@opindex mcall-gnu
6933On System V.4 and embedded PowerPC systems compile code for the
6934Hurd-based GNU system.
6935
edf1b3f3
AC
6936@item -mcall-netbsd
6937@opindex mcall-netbsd
6938On System V.4 and embedded PowerPC systems compile code for the
6939NetBSD operating system.
6940
9904592e
ZW
6941@item -maix-struct-return
6942@opindex maix-struct-return
6943Return all structures in memory (as specified by the AIX ABI)@.
6944
6945@item -msvr4-struct-return
6946@opindex msvr4-struct-return
6947Return structures smaller than 8 bytes in registers (as specified by the
6948SVR4 ABI)@.
6949
0ac081f6
AH
6950@item -mabi=altivec
6951@opindex mabi=altivec
6952Extend the current ABI with AltiVec ABI extensions. This does not
6953change the default ABI, instead it adds the AltiVec ABI extensions to
6954the current ABI@.
6955
74291a4b 6956@item -mprototype
e9a25f70 6957@itemx -mno-prototype
cd3bb277
JM
6958@opindex mprototype
6959@opindex mno-prototype
74291a4b
MM
6960On System V.4 and embedded PowerPC systems assume that all calls to
6961variable argument functions are properly prototyped. Otherwise, the
6962compiler must insert an instruction before every non prototyped call to
6963set or clear bit 6 of the condition code register (@var{CR}) to
6964indicate whether floating point values were passed in the floating point
6965registers in case the function takes a variable arguments. With
630d3d5a 6966@option{-mprototype}, only calls to prototyped variable argument functions
74291a4b
MM
6967will set or clear the bit.
6968
6969@item -msim
cd3bb277 6970@opindex msim
74291a4b
MM
6971On embedded PowerPC systems, assume that the startup module is called
6972@file{sim-crt0.o} and that the standard C libraries are @file{libsim.a} and
6973@file{libc.a}. This is the default for @samp{powerpc-*-eabisim}.
6974configurations.
6975
6976@item -mmvme
cd3bb277 6977@opindex mmvme
74291a4b 6978On embedded PowerPC systems, assume that the startup module is called
e9a25f70
JL
6979@file{crt0.o} and the standard C libraries are @file{libmvme.a} and
6980@file{libc.a}.
6981
6982@item -mads
cd3bb277 6983@opindex mads
e9a25f70
JL
6984On embedded PowerPC systems, assume that the startup module is called
6985@file{crt0.o} and the standard C libraries are @file{libads.a} and
6986@file{libc.a}.
6987
6988@item -myellowknife
cd3bb277 6989@opindex myellowknife
e9a25f70
JL
6990On embedded PowerPC systems, assume that the startup module is called
6991@file{crt0.o} and the standard C libraries are @file{libyk.a} and
74291a4b
MM
6992@file{libc.a}.
6993
bff46771 6994@item -mvxworks
cd3bb277 6995@opindex mvxworks
bff46771
GK
6996On System V.4 and embedded PowerPC systems, specify that you are
6997compiling for a VxWorks system.
6998
74291a4b 6999@item -memb
cd3bb277 7000@opindex memb
74291a4b
MM
7001On embedded PowerPC systems, set the @var{PPC_EMB} bit in the ELF flags
7002header to indicate that @samp{eabi} extended relocations are used.
7003
7004@item -meabi
7005@itemx -mno-eabi
cd3bb277
JM
7006@opindex meabi
7007@opindex mno-eabi
74291a4b
MM
7008On System V.4 and embedded PowerPC systems do (do not) adhere to the
7009Embedded Applications Binary Interface (eabi) which is a set of
bedc7537 7010modifications to the System V.4 specifications. Selecting @option{-meabi}
74291a4b
MM
7011means that the stack is aligned to an 8 byte boundary, a function
7012@code{__eabi} is called to from @code{main} to set up the eabi
630d3d5a 7013environment, and the @option{-msdata} option can use both @code{r2} and
74291a4b 7014@code{r13} to point to two separate small data areas. Selecting
bedc7537 7015@option{-mno-eabi} means that the stack is aligned to a 16 byte boundary,
74291a4b 7016do not call an initialization function from @code{main}, and the
630d3d5a
JM
7017@option{-msdata} option will only use @code{r13} to point to a single
7018small data area. The @option{-meabi} option is on by default if you
74291a4b
MM
7019configured GCC using one of the @samp{powerpc*-*-eabi*} options.
7020
7021@item -msdata=eabi
cd3bb277 7022@opindex msdata=eabi
74291a4b
MM
7023On System V.4 and embedded PowerPC systems, put small initialized
7024@code{const} global and static data in the @samp{.sdata2} section, which
7025is pointed to by register @code{r2}. Put small initialized
7026non-@code{const} global and static data in the @samp{.sdata} section,
7027which is pointed to by register @code{r13}. Put small uninitialized
7028global and static data in the @samp{.sbss} section, which is adjacent to
630d3d5a
JM
7029the @samp{.sdata} section. The @option{-msdata=eabi} option is
7030incompatible with the @option{-mrelocatable} option. The
7031@option{-msdata=eabi} option also sets the @option{-memb} option.
74291a4b
MM
7032
7033@item -msdata=sysv
cd3bb277 7034@opindex msdata=sysv
74291a4b
MM
7035On System V.4 and embedded PowerPC systems, put small global and static
7036data in the @samp{.sdata} section, which is pointed to by register
7037@code{r13}. Put small uninitialized global and static data in the
7038@samp{.sbss} section, which is adjacent to the @samp{.sdata} section.
630d3d5a
JM
7039The @option{-msdata=sysv} option is incompatible with the
7040@option{-mrelocatable} option.
74291a4b
MM
7041
7042@item -msdata=default
7043@itemx -msdata
cd3bb277
JM
7044@opindex msdata=default
7045@opindex msdata
630d3d5a
JM
7046On System V.4 and embedded PowerPC systems, if @option{-meabi} is used,
7047compile code the same as @option{-msdata=eabi}, otherwise compile code the
7048same as @option{-msdata=sysv}.
74291a4b
MM
7049
7050@item -msdata-data
cd3bb277 7051@opindex msdata-data
74291a4b
MM
7052On System V.4 and embedded PowerPC systems, put small global and static
7053data in the @samp{.sdata} section. Put small uninitialized global and
7054static data in the @samp{.sbss} section. Do not use register @code{r13}
7055to address small data however. This is the default behavior unless
630d3d5a 7056other @option{-msdata} options are used.
74291a4b
MM
7057
7058@item -msdata=none
7059@itemx -mno-sdata
cd3bb277
JM
7060@opindex msdata=none
7061@opindex mno-sdata
74291a4b
MM
7062On embedded PowerPC systems, put all initialized global and static data
7063in the @samp{.data} section, and all uninitialized data in the
7064@samp{.bss} section.
7065
7066@item -G @var{num}
cd3bb277 7067@opindex G
74291a4b
MM
7068@cindex smaller data references (PowerPC)
7069@cindex .sdata/.sdata2 references (PowerPC)
956d6950 7070On embedded PowerPC systems, put global and static items less than or
74291a4b
MM
7071equal to @var{num} bytes into the small data or bss sections instead of
7072the normal data or bss section. By default, @var{num} is 8. The
630d3d5a
JM
7073@option{-G @var{num}} switch is also passed to the linker.
7074All modules should be compiled with the same @option{-G @var{num}} value.
74291a4b
MM
7075
7076@item -mregnames
7077@itemx -mno-regnames
cd3bb277
JM
7078@opindex mregnames
7079@opindex mno-regnames
74291a4b
MM
7080On System V.4 and embedded PowerPC systems do (do not) emit register
7081names in the assembly language output using symbolic forms.
f5a1b0d2 7082
0a379b7a
CR
7083@item -pthread
7084@opindex pthread
7085Adds support for multithreading with the @dfn{pthreads} library.
7086This option sets flags for both the preprocessor and linker.
7087
74291a4b 7088@end table
f5a1b0d2 7089
74291a4b
MM
7090@node RT Options
7091@subsection IBM RT Options
7092@cindex RT options
7093@cindex IBM RT options
7094
7095These @samp{-m} options are defined for the IBM RT PC:
7096
2642624b 7097@table @gcctabopt
74291a4b 7098@item -min-line-mul
cd3bb277 7099@opindex min-line-mul
74291a4b
MM
7100Use an in-line code sequence for integer multiplies. This is the
7101default.
7102
7103@item -mcall-lib-mul
cd3bb277 7104@opindex mcall-lib-mul
74291a4b
MM
7105Call @code{lmul$$} for integer multiples.
7106
7107@item -mfull-fp-blocks
cd3bb277 7108@opindex mfull-fp-blocks
74291a4b 7109Generate full-size floating point data blocks, including the minimum
161d7b59 7110amount of scratch space recommended by IBM@. This is the default.
74291a4b
MM
7111
7112@item -mminimum-fp-blocks
cd3bb277 7113@opindex mminimum-fp-blocks
74291a4b
MM
7114Do not include extra scratch space in floating point data blocks. This
7115results in smaller code, but slower execution, since scratch space must
7116be allocated dynamically.
7117
7118@cindex @file{varargs.h} and RT PC
7119@cindex @file{stdarg.h} and RT PC
7120@item -mfp-arg-in-fpregs
cd3bb277 7121@opindex mfp-arg-in-fpregs
74291a4b
MM
7122Use a calling sequence incompatible with the IBM calling convention in
7123which floating point arguments are passed in floating point registers.
c771326b 7124Note that @code{varargs.h} and @code{stdarg.h} will not work with
74291a4b
MM
7125floating point operands if this option is specified.
7126
7127@item -mfp-arg-in-gregs
cd3bb277 7128@opindex mfp-arg-in-gregs
74291a4b
MM
7129Use the normal calling convention for floating point arguments. This is
7130the default.
7131
7132@item -mhc-struct-return
cd3bb277 7133@opindex mhc-struct-return
74291a4b
MM
7134Return structures of more than one word in memory, rather than in a
7135register. This provides compatibility with the MetaWare HighC (hc)
630d3d5a 7136compiler. Use the option @option{-fpcc-struct-return} for compatibility
74291a4b
MM
7137with the Portable C Compiler (pcc).
7138
7139@item -mnohc-struct-return
cd3bb277 7140@opindex mnohc-struct-return
74291a4b
MM
7141Return some structures of more than one word in registers, when
7142convenient. This is the default. For compatibility with the
630d3d5a
JM
7143IBM-supplied compilers, use the option @option{-fpcc-struct-return} or the
7144option @option{-mhc-struct-return}.
74291a4b
MM
7145@end table
7146
7147@node MIPS Options
7148@subsection MIPS Options
7149@cindex MIPS options
7150
7151These @samp{-m} options are defined for the MIPS family of computers:
7152
2642624b 7153@table @gcctabopt
7dac2f89
EC
7154
7155@item -march=@var{cpu-type}
7156@opindex march
7157Assume the defaults for the machine type @var{cpu-type} when generating
7158instructions. The choices for @var{cpu-type} are @samp{r2000}, @samp{r3000},
7159@samp{r3900}, @samp{r4000}, @samp{r4100}, @samp{r4300}, @samp{r4400},
7160@samp{r4600}, @samp{r4650}, @samp{r5000}, @samp{r6000}, @samp{r8000},
7161and @samp{orion}. Additionally, the @samp{r2000}, @samp{r3000},
7162@samp{r4000}, @samp{r5000}, and @samp{r6000} can be abbreviated as
7163@samp{r2k} (or @samp{r2K}), @samp{r3k}, etc.
7164
7165@item -mtune=@var{cpu-type}
7166@opindex mtune
630d3d5a
JM
7167Assume the defaults for the machine type @var{cpu-type} when scheduling
7168instructions. The choices for @var{cpu-type} are @samp{r2000}, @samp{r3000},
8b9243df
JJ
7169@samp{r3900}, @samp{r4000}, @samp{r4100}, @samp{r4300}, @samp{r4400},
7170@samp{r4600}, @samp{r4650}, @samp{r5000}, @samp{r6000}, @samp{r8000},
7171and @samp{orion}. Additionally, the @samp{r2000}, @samp{r3000},
7172@samp{r4000}, @samp{r5000}, and @samp{r6000} can be abbreviated as
7173@samp{r2k} (or @samp{r2K}), @samp{r3k}, etc. While picking a specific
630d3d5a 7174@var{cpu-type} will schedule things appropriately for that particular
8b9243df 7175chip, the compiler will not generate any code that does not meet level 1
630d3d5a
JM
7176of the MIPS ISA (instruction set architecture) without a @option{-mipsX}
7177or @option{-mabi} switch being used.
74291a4b 7178
7dac2f89
EC
7179@item -mcpu=@var{cpu-type}
7180@opindex mcpu
7181This is identical to specifying both @option{-march} and @option{-mtune}.
7182
74291a4b 7183@item -mips1
cd3bb277 7184@opindex mips1
161d7b59 7185Issue instructions from level 1 of the MIPS ISA@. This is the default.
630d3d5a 7186@samp{r3000} is the default @var{cpu-type} at this ISA level.
74291a4b
MM
7187
7188@item -mips2
cd3bb277 7189@opindex mips2
74291a4b 7190Issue instructions from level 2 of the MIPS ISA (branch likely, square
630d3d5a 7191root instructions). @samp{r6000} is the default @var{cpu-type} at this
74291a4b
MM
7192ISA level.
7193
7194@item -mips3
cd3bb277 7195@opindex mips3
02f52e19 7196Issue instructions from level 3 of the MIPS ISA (64-bit instructions).
630d3d5a 7197@samp{r4000} is the default @var{cpu-type} at this ISA level.
74291a4b 7198
3398f47f 7199@item -mips4
cd3bb277 7200@opindex mips4
8b9243df
JJ
7201Issue instructions from level 4 of the MIPS ISA (conditional move,
7202prefetch, enhanced FPU instructions). @samp{r8000} is the default
630d3d5a 7203@var{cpu-type} at this ISA level.
3398f47f 7204
74291a4b 7205@item -mfp32
cd3bb277 7206@opindex mfp32
74291a4b
MM
7207Assume that 32 32-bit floating point registers are available. This is
7208the default.
7209
7210@item -mfp64
cd3bb277 7211@opindex mfp64
74291a4b 7212Assume that 32 64-bit floating point registers are available. This is
630d3d5a 7213the default when the @option{-mips3} option is used.
74291a4b 7214
13fac94a
GK
7215@item -mfused-madd
7216@itemx -mno-fused-madd
7217@opindex mfused-madd
7218@opindex mno-fused-madd
7219Generate code that uses (does not use) the floating point multiply and
7220accumulate instructions, when they are available. These instructions
7221are generated by default if they are available, but this may be
7222undesirable if the extra precision causes problems or on certain chips
7223in the mode where denormals are rounded to zero where denormals
7224generated by multiply and accumulate instructions cause exceptions
7225anyway.
7226
74291a4b 7227@item -mgp32
cd3bb277 7228@opindex mgp32
74291a4b
MM
7229Assume that 32 32-bit general purpose registers are available. This is
7230the default.
7231
7232@item -mgp64
cd3bb277 7233@opindex mgp64
74291a4b 7234Assume that 32 64-bit general purpose registers are available. This is
630d3d5a 7235the default when the @option{-mips3} option is used.
74291a4b
MM
7236
7237@item -mint64
cd3bb277 7238@opindex mint64
630d3d5a 7239Force int and long types to be 64 bits wide. See @option{-mlong32} for an
3ce1ba83 7240explanation of the default, and the width of pointers.
74291a4b
MM
7241
7242@item -mlong64
cd3bb277 7243@opindex mlong64
630d3d5a 7244Force long types to be 64 bits wide. See @option{-mlong32} for an
3ce1ba83 7245explanation of the default, and the width of pointers.
fb1bf66d 7246
3ce1ba83 7247@item -mlong32
cd3bb277 7248@opindex mlong32
3ce1ba83
GRK
7249Force long, int, and pointer types to be 32 bits wide.
7250
630d3d5a 7251If none of @option{-mlong32}, @option{-mlong64}, or @option{-mint64} are set,
b192711e 7252the size of ints, longs, and pointers depends on the ABI and ISA chosen.
630d3d5a
JM
7253For @option{-mabi=32}, and @option{-mabi=n32}, ints and longs are 32 bits
7254wide. For @option{-mabi=64}, ints are 32 bits, and longs are 64 bits wide.
7255For @option{-mabi=eabi} and either @option{-mips1} or @option{-mips2}, ints
7256and longs are 32 bits wide. For @option{-mabi=eabi} and higher ISAs, ints
3ce1ba83
GRK
7257are 32 bits, and longs are 64 bits wide. The width of pointer types is
7258the smaller of the width of longs or the width of general purpose
161d7b59 7259registers (which in turn depends on the ISA)@.
74291a4b 7260
62a1403d 7261@item -mabi=32
8b9243df 7262@itemx -mabi=o64
3398f47f
MM
7263@itemx -mabi=n32
7264@itemx -mabi=64
7265@itemx -mabi=eabi
cd3bb277
JM
7266@opindex mabi=32
7267@opindex mabi=o64
7268@opindex mabi=n32
7269@opindex mabi=64
7270@opindex mabi=eabi
161d7b59 7271Generate code for the indicated ABI@. The default instruction level is
630d3d5a
JM
7272@option{-mips1} for @samp{32}, @option{-mips3} for @samp{n32}, and
7273@option{-mips4} otherwise. Conversely, with @option{-mips1} or
7274@option{-mips2}, the default ABI is @samp{32}; otherwise, the default ABI
8b9243df 7275is @samp{64}.
3398f47f 7276
74291a4b 7277@item -mmips-as
cd3bb277 7278@opindex mmips-as
74291a4b
MM
7279Generate code for the MIPS assembler, and invoke @file{mips-tfile} to
7280add normal debug information. This is the default for all
7281platforms except for the OSF/1 reference platform, using the OSF/rose
630d3d5a 7282object format. If the either of the @option{-gstabs} or @option{-gstabs+}
74291a4b 7283switches are used, the @file{mips-tfile} program will encapsulate the
161d7b59 7284stabs within MIPS ECOFF@.
74291a4b
MM
7285
7286@item -mgas
cd3bb277 7287@opindex mgas
74291a4b 7288Generate code for the GNU assembler. This is the default on the OSF/1
861bb6c1 7289reference platform, using the OSF/rose object format. Also, this is
630d3d5a 7290the default if the configure option @option{--with-gnu-as} is used.
861bb6c1
JL
7291
7292@item -msplit-addresses
7293@itemx -mno-split-addresses
cd3bb277
JM
7294@opindex msplit-addresses
7295@opindex mno-split-addresses
861bb6c1 7296Generate code to load the high and low parts of address constants separately.
aee96fe9 7297This allows GCC to optimize away redundant loads of the high order
861bb6c1
JL
7298bits of addresses. This optimization requires GNU as and GNU ld.
7299This optimization is enabled by default for some embedded targets where
7300GNU as and GNU ld are standard.
74291a4b
MM
7301
7302@item -mrnames
7303@itemx -mno-rnames
cd3bb277
JM
7304@opindex mrnames
7305@opindex mno-rnames
630d3d5a 7306The @option{-mrnames} switch says to output code using the MIPS software
74291a4b
MM
7307names for the registers, instead of the hardware names (ie, @var{a0}
7308instead of @var{$4}). The only known assembler that supports this option
7309is the Algorithmics assembler.
7310
7311@item -mgpopt
7312@itemx -mno-gpopt
cd3bb277
JM
7313@opindex mgpopt
7314@opindex mno-gpopt
630d3d5a 7315The @option{-mgpopt} switch says to write all of the data declarations
74291a4b
MM
7316before the instructions in the text section, this allows the MIPS
7317assembler to generate one word memory references instead of using two
7318words for short global or static data items. This is on by default if
7319optimization is selected.
7320
7321@item -mstats
7322@itemx -mno-stats
cd3bb277
JM
7323@opindex mstats
7324@opindex mno-stats
630d3d5a 7325For each non-inline function processed, the @option{-mstats} switch
74291a4b
MM
7326causes the compiler to emit one line to the standard error file to
7327print statistics about the program (number of registers saved, stack
7328size, etc.).
7329
7330@item -mmemcpy
7331@itemx -mno-memcpy
cd3bb277
JM
7332@opindex mmemcpy
7333@opindex mno-memcpy
630d3d5a 7334The @option{-mmemcpy} switch makes all block moves call the appropriate
74291a4b
MM
7335string function (@samp{memcpy} or @samp{bcopy}) instead of possibly
7336generating inline code.
7337
7338@item -mmips-tfile
7339@itemx -mno-mips-tfile
cd3bb277
JM
7340@opindex mmips-tfile
7341@opindex mno-mips-tfile
630d3d5a 7342The @option{-mno-mips-tfile} switch causes the compiler not
74291a4b
MM
7343postprocess the object file with the @file{mips-tfile} program,
7344after the MIPS assembler has generated it to add debug support. If
7345@file{mips-tfile} is not run, then no local variables will be
7346available to the debugger. In addition, @file{stage2} and
7347@file{stage3} objects will have the temporary file names passed to the
7348assembler embedded in the object file, which means the objects will
630d3d5a 7349not compare the same. The @option{-mno-mips-tfile} switch should only
74291a4b
MM
7350be used when there are bugs in the @file{mips-tfile} program that
7351prevents compilation.
7352
7353@item -msoft-float
cd3bb277 7354@opindex msoft-float
74291a4b 7355Generate output containing library calls for floating point.
161d7b59 7356@strong{Warning:} the requisite libraries are not part of GCC@.
74291a4b
MM
7357Normally the facilities of the machine's usual C compiler are used, but
7358this can't be done directly in cross-compilation. You must make your
7359own arrangements to provide suitable library functions for
7360cross-compilation.
7361
7362@item -mhard-float
cd3bb277 7363@opindex mhard-float
74291a4b
MM
7364Generate output containing floating point instructions. This is the
7365default if you use the unmodified sources.
7366
7367@item -mabicalls
7368@itemx -mno-abicalls
cd3bb277
JM
7369@opindex mabicalls
7370@opindex mno-abicalls
74291a4b
MM
7371Emit (or do not emit) the pseudo operations @samp{.abicalls},
7372@samp{.cpload}, and @samp{.cprestore} that some System V.4 ports use for
7373position independent code.
7374
7375@item -mlong-calls
7376@itemx -mno-long-calls
cd3bb277
JM
7377@opindex mlong-calls
7378@opindex mno-long-calls
74291a4b
MM
7379Do all calls with the @samp{JALR} instruction, which requires
7380loading up a function's address into a register before the call.
7381You need to use this switch, if you call outside of the current
7382512 megabyte segment to functions that are not through pointers.
7383
7384@item -mhalf-pic
7385@itemx -mno-half-pic
cd3bb277
JM
7386@opindex mhalf-pic
7387@opindex mno-half-pic
74291a4b
MM
7388Put pointers to extern references into the data section and load them
7389up, rather than put the references in the text section.
7390
7391@item -membedded-pic
7392@itemx -mno-embedded-pic
cd3bb277
JM
7393@opindex membedded-pic
7394@opindex mno-embedded-pic
69fa83cf
JW
7395Generate PIC code suitable for some embedded systems. All calls are
7396made using PC relative address, and all data is addressed using the $gp
7397register. No more than 65536 bytes of global data may be used. This
7398requires GNU as and GNU ld which do most of the work. This currently
161d7b59 7399only works on targets which use ECOFF; it does not work with ELF@.
74291a4b
MM
7400
7401@item -membedded-data
7402@itemx -mno-embedded-data
cd3bb277
JM
7403@opindex membedded-data
7404@opindex mno-embedded-data
74291a4b
MM
7405Allocate variables to the read-only data section first if possible, then
7406next in the small data section if possible, otherwise in data. This gives
7407slightly slower code than the default, but reduces the amount of RAM required
7408when executing, and thus may be preferred for some embedded systems.
7409
919509ce
DN
7410@item -muninit-const-in-rodata
7411@itemx -mno-uninit-const-in-rodata
cd3bb277
JM
7412@opindex muninit-const-in-rodata
7413@opindex mno-uninit-const-in-rodata
695ac33f 7414When used together with @option{-membedded-data}, it will always store uninitialized
919509ce 7415const variables in the read-only data section.
02f52e19 7416
74291a4b
MM
7417@item -msingle-float
7418@itemx -mdouble-float
cd3bb277
JM
7419@opindex msingle-float
7420@opindex mdouble-float
630d3d5a 7421The @option{-msingle-float} switch tells gcc to assume that the floating
74291a4b 7422point coprocessor only supports single precision operations, as on the
630d3d5a 7423@samp{r4650} chip. The @option{-mdouble-float} switch permits gcc to use
74291a4b
MM
7424double precision operations. This is the default.
7425
7426@item -mmad
7427@itemx -mno-mad
cd3bb277
JM
7428@opindex mmad
7429@opindex mno-mad
74291a4b
MM
7430Permit use of the @samp{mad}, @samp{madu} and @samp{mul} instructions,
7431as on the @samp{r4650} chip.
7432
7433@item -m4650
cd3bb277 7434@opindex m4650
630d3d5a
JM
7435Turns on @option{-msingle-float}, @option{-mmad}, and, at least for now,
7436@option{-mcpu=r4650}.
74291a4b 7437
8b9243df
JJ
7438@item -mips16
7439@itemx -mno-mips16
cd3bb277
JM
7440@opindex mips16
7441@opindex mno-mips16
8b9243df
JJ
7442Enable 16-bit instructions.
7443
7444@item -mentry
cd3bb277 7445@opindex mentry
8b9243df 7446Use the entry and exit pseudo ops. This option can only be used with
630d3d5a 7447@option{-mips16}.
8b9243df 7448
74291a4b 7449@item -EL
cd3bb277 7450@opindex EL
74291a4b
MM
7451Compile code for the processor in little endian mode.
7452The requisite libraries are assumed to exist.
7453
7454@item -EB
cd3bb277 7455@opindex EB
74291a4b
MM
7456Compile code for the processor in big endian mode.
7457The requisite libraries are assumed to exist.
7458
7459@item -G @var{num}
cd3bb277 7460@opindex G
74291a4b
MM
7461@cindex smaller data references (MIPS)
7462@cindex gp-relative references (MIPS)
7463Put global and static items less than or equal to @var{num} bytes into
7464the small data or bss sections instead of the normal data or bss
7465section. This allows the assembler to emit one word memory reference
7466instructions based on the global pointer (@var{gp} or @var{$28}),
7467instead of the normal two words used. By default, @var{num} is 8 when
7468the MIPS assembler is used, and 0 when the GNU assembler is used. The
630d3d5a
JM
7469@option{-G @var{num}} switch is also passed to the assembler and linker.
7470All modules should be compiled with the same @option{-G @var{num}}
74291a4b
MM
7471value.
7472
7473@item -nocpp
cd3bb277 7474@opindex nocpp
9ec36da5 7475Tell the MIPS assembler to not run its preprocessor over user
74291a4b 7476assembler files (with a @samp{.s} suffix) when assembling them.
63357d93 7477
1e387156 7478@item -mfix7000
cd3bb277 7479@opindex mfix7000
1e387156
CM
7480Pass an option to gas which will cause nops to be inserted if
7481the read of the destination register of an mfhi or mflo instruction
7482occurs in the following two instructions.
7483
63357d93 7484@item -no-crt0
cd3bb277 7485@opindex no-crt0
63357d93 7486Do not include the default crt0.
d490e8ad
DD
7487
7488@item -mflush-func=@var{func}
7489@itemx -mno-flush-func
7490@opindex mflush-func
7491Specifies the function to call to flush the I and D caches, or to not
7492call any such function. If called, the function must take the same
7493arguments as the common @code{_flush_func()}, that is, the address of the
7494memory range for which the cache is being flushed, the size of the
7495memory range, and the number 3 (to flush both caches). The default
7496depends on the target gcc was configured for, but commonly is either
7497@samp{_flush_func} or @samp{__cpu_flush}.
74291a4b
MM
7498@end table
7499
74291a4b
MM
7500These options are defined by the macro
7501@code{TARGET_SWITCHES} in the machine description. The default for the
7502options is also defined by that macro, which enables you to change the
7503defaults.
74291a4b 7504
14f73b5a
JH
7505@node i386 and x86-64 Options
7506@subsection Intel 386 and AMD x86-64 Options
74291a4b 7507@cindex i386 Options
14f73b5a 7508@cindex x86-64 Options
74291a4b 7509@cindex Intel 386 Options
14f73b5a 7510@cindex AMD x86-64 Options
74291a4b 7511
14f73b5a
JH
7512These @samp{-m} options are defined for the i386 and x86-64 family of
7513computers:
74291a4b 7514
2642624b 7515@table @gcctabopt
630d3d5a 7516@item -mcpu=@var{cpu-type}
cd3bb277 7517@opindex mcpu
0dd0e980
JH
7518Tune to @var{cpu-type} everything applicable about the generated code, except
7519for the ABI and the set of available instructions. The choices for
7520@var{cpu-type} are @samp{i386}, @samp{i486}, @samp{i586}, @samp{i686},
7521@samp{pentium}, @samp{pentium-mmx}, @samp{pentiumpro}, @samp{pentium2},
7522@samp{pentium3}, @samp{pentium4}, @samp{k6}, @samp{k6-2}, @samp{k6-3},
7523@samp{athlon}, @samp{athlon-tbird}, @samp{athlon-4}, @samp{athlon-xp}
7524and @samp{athlon-mp}.
6f670fde 7525
630d3d5a 7526While picking a specific @var{cpu-type} will schedule things appropriately
6f670fde 7527for that particular chip, the compiler will not generate any code that
630d3d5a 7528does not run on the i386 without the @option{-march=@var{cpu-type}} option
7001ee2d 7529being used. @samp{i586} is equivalent to @samp{pentium} and @samp{i686}
6ca3ad1b 7530is equivalent to @samp{pentiumpro}. @samp{k6} and @samp{athlon} are the
b4e89e2d 7531AMD chips as opposed to the Intel ones.
a9f3e1a4 7532
630d3d5a 7533@item -march=@var{cpu-type}
cd3bb277 7534@opindex march
630d3d5a
JM
7535Generate instructions for the machine type @var{cpu-type}. The choices
7536for @var{cpu-type} are the same as for @option{-mcpu}. Moreover,
7537specifying @option{-march=@var{cpu-type}} implies @option{-mcpu=@var{cpu-type}}.
a9f3e1a4
JL
7538
7539@item -m386
7540@itemx -m486
7541@itemx -mpentium
7542@itemx -mpentiumpro
cd3bb277
JM
7543@opindex m386
7544@opindex m486
7545@opindex mpentium
7546@opindex mpentiumpro
9c34dbbf
ZW
7547These options are synonyms for @option{-mcpu=i386}, @option{-mcpu=i486},
7548@option{-mcpu=pentium}, and @option{-mcpu=pentiumpro} respectively.
7549These synonyms are deprecated.
74291a4b 7550
965f5423
JH
7551@item -mfpmath=@var{unit}
7552@opindex march
7553generate floating point arithmetics for selected unit @var{unit}. the choices
7554for @var{unit} are:
7555
7556@table @samp
7557@item 387
7558Use the standard 387 floating point coprocessor present majority of chips and
7559emulated otherwise. Code compiled with this option will run almost everywhere.
7560The temporary results are computed in 80bit precesion instead of precision
7561specified by the type resulting in slightly different results compared to most
7562of other chips. See @option{-ffloat-store} for more detailed description.
7563
7564This is the default choice for i386 compiler.
7565
7566@item sse
7567Use scalar floating point instructions present in the SSE instruction set.
7568This instruction set is supported by Pentium3 and newer chips, in the AMD line
7569by Athlon-4, Athlon-xp and Athlon-mp chips. The earlier version of SSE
7570instruction set supports only single precision arithmetics, thus the double and
7571extended precision arithmetics is still done using 387. Later version, present
7572only in Pentium4 and the future AMD x86-64 chips supports double precision
7573arithmetics too.
7574
7575For i387 you need to use @option{-march=@var{cpu-type}}, @option{-msse} or
7576@option{-msse2} switches to enable SSE extensions and make this option
7577effective. For x86-64 compiler, these extensions are enabled by default.
7578
7579The resulting code should be considerably faster in majority of cases and avoid
7580the numerical instability problems of 387 code, but may break some existing
7581code that expects temporaries to be 80bit.
7582
7583This is the default choice for x86-64 compiler.
7584
7585@item sse,387
7586Attempt to utilize both instruction sets at once. This effectivly double the
7587amount of available registers and on chips with separate execution units for
7588387 and SSE the execution resources too. Use this option with care, as it is
7589still experimental, because gcc register allocator does not model separate
7590functional units well resulting in instable performance.
7591@end table
7592
c93e80a5
JH
7593@item -masm=@var{dialect}
7594@opindex masm=@var{dialect}
7595Output asm instructions using selected @var{dialect}. Supported choices are
7596@samp{intel} or @samp{att} (the default one).
04e149ab 7597
74291a4b
MM
7598@item -mieee-fp
7599@itemx -mno-ieee-fp
cd3bb277
JM
7600@opindex mieee-fp
7601@opindex mno-ieee-fp
74291a4b
MM
7602Control whether or not the compiler uses IEEE floating point
7603comparisons. These handle correctly the case where the result of a
7604comparison is unordered.
7605
7606@item -msoft-float
cd3bb277 7607@opindex msoft-float
74291a4b 7608Generate output containing library calls for floating point.
161d7b59 7609@strong{Warning:} the requisite libraries are not part of GCC@.
74291a4b
MM
7610Normally the facilities of the machine's usual C compiler are used, but
7611this can't be done directly in cross-compilation. You must make your
7612own arrangements to provide suitable library functions for
7613cross-compilation.
7614
7615On machines where a function returns floating point results in the 80387
7616register stack, some floating point opcodes may be emitted even if
630d3d5a 7617@option{-msoft-float} is used.
74291a4b
MM
7618
7619@item -mno-fp-ret-in-387
cd3bb277 7620@opindex mno-fp-ret-in-387
74291a4b
MM
7621Do not use the FPU registers for return values of functions.
7622
7623The usual calling convention has functions return values of types
7624@code{float} and @code{double} in an FPU register, even if there
161d7b59
JM
7625is no FPU@. The idea is that the operating system should emulate
7626an FPU@.
74291a4b 7627
630d3d5a 7628The option @option{-mno-fp-ret-in-387} causes such values to be returned
74291a4b
MM
7629in ordinary CPU registers instead.
7630
7631@item -mno-fancy-math-387
cd3bb277 7632@opindex mno-fancy-math-387
74291a4b
MM
7633Some 387 emulators do not support the @code{sin}, @code{cos} and
7634@code{sqrt} instructions for the 387. Specify this option to avoid
161d7b59 7635generating those instructions. This option is the default on FreeBSD@.
74291a4b 7636As of revision 2.6.1, these instructions are not generated unless you
630d3d5a 7637also use the @option{-funsafe-math-optimizations} switch.
74291a4b
MM
7638
7639@item -malign-double
7640@itemx -mno-align-double
cd3bb277
JM
7641@opindex malign-double
7642@opindex mno-align-double
0c2d1a2a 7643Control whether GCC aligns @code{double}, @code{long double}, and
74291a4b
MM
7644@code{long long} variables on a two word boundary or a one word
7645boundary. Aligning @code{double} variables on a two word boundary will
7646produce code that runs somewhat faster on a @samp{Pentium} at the
7647expense of more memory.
7648
2b589241 7649@item -m128bit-long-double
cd3bb277 7650@opindex m128bit-long-double
2b589241
JH
7651Control the size of @code{long double} type. i386 application binary interface
7652specify the size to be 12 bytes, while modern architectures (Pentium and newer)
c771326b 7653prefer @code{long double} aligned to 8 or 16 byte boundary. This is
2b589241
JH
7654impossible to reach with 12 byte long doubles in the array accesses.
7655
630d3d5a 7656@strong{Warning:} if you use the @option{-m128bit-long-double} switch, the
2b589241
JH
7657structures and arrays containing @code{long double} will change their size as
7658well as function calling convention for function taking @code{long double}
02f52e19 7659will be modified.
2b589241
JH
7660
7661@item -m96bit-long-double
cd3bb277 7662@opindex m96bit-long-double
0a75e5c3 7663Set the size of @code{long double} to 96 bits as required by the i386
2b589241 7664application binary interface. This is the default.
74291a4b
MM
7665
7666@item -msvr3-shlib
7667@itemx -mno-svr3-shlib
cd3bb277
JM
7668@opindex msvr3-shlib
7669@opindex mno-svr3-shlib
9c34dbbf
ZW
7670Control whether GCC places uninitialized local variables into the
7671@code{bss} or @code{data} segments. @option{-msvr3-shlib} places them
7672into @code{bss}. These options are meaningful only on System V Release 3.
74291a4b 7673
74291a4b 7674@item -mrtd
cd3bb277 7675@opindex mrtd
74291a4b
MM
7676Use a different function-calling convention, in which functions that
7677take a fixed number of arguments return with the @code{ret} @var{num}
7678instruction, which pops their arguments while returning. This saves one
7679instruction in the caller since there is no need to pop the arguments
7680there.
7681
7682You can specify that an individual function is called with this calling
7683sequence with the function attribute @samp{stdcall}. You can also
630d3d5a 7684override the @option{-mrtd} option by using the function attribute
0b433de6 7685@samp{cdecl}. @xref{Function Attributes}.
74291a4b
MM
7686
7687@strong{Warning:} this calling convention is incompatible with the one
7688normally used on Unix, so you cannot use it if you need to call
7689libraries compiled with the Unix compiler.
7690
7691Also, you must provide function prototypes for all functions that
7692take variable numbers of arguments (including @code{printf});
7693otherwise incorrect code will be generated for calls to those
7694functions.
7695
7696In addition, seriously incorrect code will result if you call a
7697function with too many arguments. (Normally, extra arguments are
7698harmlessly ignored.)
7699
74291a4b 7700@item -mregparm=@var{num}
cd3bb277 7701@opindex mregparm
74291a4b
MM
7702Control how many registers are used to pass integer arguments. By
7703default, no registers are used to pass arguments, and at most 3
7704registers can be used. You can control this behavior for a specific
0b433de6
JL
7705function by using the function attribute @samp{regparm}.
7706@xref{Function Attributes}.
74291a4b
MM
7707
7708@strong{Warning:} if you use this switch, and
7709@var{num} is nonzero, then you must build all modules with the same
7710value, including any libraries. This includes the system libraries and
7711startup modules.
7712
3af4bd89 7713@item -mpreferred-stack-boundary=@var{num}
cd3bb277 7714@opindex mpreferred-stack-boundary
3af4bd89 7715Attempt to keep the stack boundary aligned to a 2 raised to @var{num}
630d3d5a 7716byte boundary. If @option{-mpreferred-stack-boundary} is not specified,
fbb83b43
AO
7717the default is 4 (16 bytes or 128 bits), except when optimizing for code
7718size (@option{-Os}), in which case the default is the minimum correct
7719alignment (4 bytes for x86, and 8 bytes for x86-64).
3af4bd89 7720
fbb83b43
AO
7721On Pentium and PentiumPro, @code{double} and @code{long double} values
7722should be aligned to an 8 byte boundary (see @option{-malign-double}) or
7723suffer significant run time performance penalties. On Pentium III, the
b192711e 7724Streaming SIMD Extension (SSE) data type @code{__m128} suffers similar
3af4bd89
JH
7725penalties if it is not 16 byte aligned.
7726
7727To ensure proper alignment of this values on the stack, the stack boundary
02f52e19 7728must be as aligned as that required by any value stored on the stack.
3af4bd89
JH
7729Further, every function must be generated such that it keeps the stack
7730aligned. Thus calling a function compiled with a higher preferred
7731stack boundary from a function compiled with a lower preferred stack
7732boundary will most likely misalign the stack. It is recommended that
7733libraries that use callbacks always use the default setting.
7734
fbb83b43
AO
7735This extra alignment does consume extra stack space, and generally
7736increases code size. Code that is sensitive to stack space usage, such
7737as embedded systems and operating system kernels, may want to reduce the
7738preferred alignment to @option{-mpreferred-stack-boundary=2}.
f22a97d2 7739
1255c85c
BS
7740@item -mmmx
7741@itemx -mno-mmx
7742@item -msse
7743@itemx -mno-sse
965f5423
JH
7744@item -msse2
7745@itemx -mno-sse2
1255c85c
BS
7746@item -m3dnow
7747@itemx -mno-3dnow
7748@opindex mmmx
7749@opindex mno-mmx
7750@opindex msse
7751@opindex mno-sse
7752@opindex m3dnow
7753@opindex mno-3dnow
7754These switches enable or disable the use of built-in functions that allow
7755direct access to the MMX, SSE and 3Dnow extensions of the instruction set.
7756
0975678f
JM
7757@xref{X86 Built-in Functions}, for details of the functions enabled
7758and disabled by these switches.
1255c85c 7759
f73ad30e 7760@item -mpush-args
a7939b1d 7761@itemx -mno-push-args
cd3bb277 7762@opindex mpush-args
a7939b1d 7763@opindex mno-push-args
767094dd 7764Use PUSH operations to store outgoing parameters. This method is shorter
f73ad30e 7765and usually equally fast as method using SUB/MOV operations and is enabled
767094dd 7766by default. In some cases disabling it may improve performance because of
f73ad30e
JH
7767improved scheduling and reduced dependencies.
7768
7769@item -maccumulate-outgoing-args
cd3bb277 7770@opindex maccumulate-outgoing-args
f73ad30e 7771If enabled, the maximum amount of space required for outgoing arguments will be
a7939b1d 7772computed in the function prologue. This is faster on most modern CPUs
b192711e 7773because of reduced dependencies, improved scheduling and reduced stack usage
f73ad30e 7774when preferred stack boundary is not equal to 2. The drawback is a notable
767094dd 7775increase in code size. This switch implies @option{-mno-push-args}.
f73ad30e 7776
f22a97d2 7777@item -mthreads
cd3bb277 7778@opindex mthreads
767094dd 7779Support thread-safe exception handling on @samp{Mingw32}. Code that relies
02f52e19 7780on thread-safe exception handling must compile and link all code with the
767094dd 7781@option{-mthreads} option. When compiling, @option{-mthreads} defines
630d3d5a
JM
7782@option{-D_MT}; when linking, it links in a special thread helper library
7783@option{-lmingwthrd} which cleans up per thread exception handling data.
79f05c19
JH
7784
7785@item -mno-align-stringops
cd3bb277 7786@opindex mno-align-stringops
767094dd 7787Do not align destination of inlined string operations. This switch reduces
79f05c19
JH
7788code size and improves performance in case the destination is already aligned,
7789but gcc don't know about it.
7790
7791@item -minline-all-stringops
cd3bb277 7792@opindex minline-all-stringops
79f05c19 7793By default GCC inlines string operations only when destination is known to be
767094dd 7794aligned at least to 4 byte boundary. This enables more inlining, increase code
79f05c19
JH
7795size, but may improve performance of code that depends on fast memcpy, strlen
7796and memset for short lengths.
762e166b
AJ
7797
7798@item -momit-leaf-frame-pointer
cd3bb277 7799@opindex momit-leaf-frame-pointer
762e166b
AJ
7800Don't keep the frame pointer in a register for leaf functions. This
7801avoids the instructions to save, set up and restore frame pointers and
7802makes an extra register available in leaf functions. The option
630d3d5a 7803@option{-fomit-frame-pointer} removes the frame pointer for all functions
762e166b 7804which might make debugging harder.
3af4bd89
JH
7805@end table
7806
14f73b5a
JH
7807These @samp{-m} switches are supported in addition to the above
7808on AMD x86-64 processors in 64-bit environments.
7809
7810@table @gcctabopt
7811@item -m32
7812@itemx -m64
7813@opindex m32
7814@opindex m64
7815Generate code for a 32-bit or 64-bit environment.
7816The 32-bit environment sets int, long and pointer to 32 bits and
7817generates code that runs on any i386 system.
7818The 64-bit environment sets int to 32 bits and long and pointer
7819to 64 bits and generates code for AMD's x86-64 architecture.
7820
7821@item -mno-red-zone
7822@opindex no-red-zone
7823Do not use a so called red zone for x86-64 code. The red zone is mandated
7824by the x86-64 ABI, it is a 128-byte area beyond the location of the
7825stack pointer that will not be modified by signal or interrupt handlers
7826and therefore can be used for temporary data without adjusting the stack
7827pointer. The flag @option{-mno-red-zone} disables this red zone.
7828@end table
7829
74291a4b
MM
7830@node HPPA Options
7831@subsection HPPA Options
7832@cindex HPPA Options
7833
7834These @samp{-m} options are defined for the HPPA family of computers:
7835
2642624b 7836@table @gcctabopt
630d3d5a 7837@item -march=@var{architecture-type}
cd3bb277 7838@opindex march
ea3bfbfe 7839Generate code for the specified architecture. The choices for
630d3d5a 7840@var{architecture-type} are @samp{1.0} for PA 1.0, @samp{1.1} for PA
ea3bfbfe
JQ
78411.1, and @samp{2.0} for PA 2.0 processors. Refer to
7842@file{/usr/lib/sched.models} on an HP-UX system to determine the proper
7843architecture option for your machine. Code compiled for lower numbered
7844architectures will run on higher numbered architectures, but not the
7845other way around.
7846
7847PA 2.0 support currently requires gas snapshot 19990413 or later. The
7848next release of binutils (current is 2.9.1) will probably contain PA 2.0
02f52e19 7849support.
74291a4b 7850
ea3bfbfe 7851@item -mpa-risc-1-0
62a1403d
AS
7852@itemx -mpa-risc-1-1
7853@itemx -mpa-risc-2-0
cd3bb277
JM
7854@opindex mpa-risc-1-0
7855@opindex mpa-risc-1-1
7856@opindex mpa-risc-2-0
695ac33f 7857Synonyms for @option{-march=1.0}, @option{-march=1.1}, and @option{-march=2.0} respectively.
74291a4b 7858
861bb6c1 7859@item -mbig-switch
cd3bb277 7860@opindex mbig-switch
861bb6c1
JL
7861Generate code suitable for big switch tables. Use this option only if
7862the assembler/linker complain about out of range branches within a switch
7863table.
7864
74291a4b 7865@item -mjump-in-delay
cd3bb277 7866@opindex mjump-in-delay
74291a4b
MM
7867Fill delay slots of function calls with unconditional jump instructions
7868by modifying the return pointer for the function call to be the target
7869of the conditional jump.
7870
7871@item -mdisable-fpregs
cd3bb277 7872@opindex mdisable-fpregs
74291a4b
MM
7873Prevent floating point registers from being used in any manner. This is
7874necessary for compiling kernels which perform lazy context switching of
7875floating point registers. If you use this option and attempt to perform
7876floating point operations, the compiler will abort.
7877
7878@item -mdisable-indexing
cd3bb277 7879@opindex mdisable-indexing
74291a4b 7880Prevent the compiler from using indexing address modes. This avoids some
161d7b59 7881rather obscure problems when compiling MIG generated code under MACH@.
74291a4b
MM
7882
7883@item -mno-space-regs
cd3bb277 7884@opindex mno-space-regs
74291a4b
MM
7885Generate code that assumes the target has no space registers. This allows
7886GCC to generate faster indirect calls and use unscaled index address modes.
7887
7888Such code is suitable for level 0 PA systems and kernels.
7889
7890@item -mfast-indirect-calls
cd3bb277 7891@opindex mfast-indirect-calls
74291a4b
MM
7892Generate code that assumes calls never cross space boundaries. This
7893allows GCC to emit code which performs faster indirect calls.
7894
b192711e 7895This option will not work in the presence of shared libraries or nested
74291a4b
MM
7896functions.
7897
74291a4b 7898@item -mlong-load-store
cd3bb277 7899@opindex mlong-load-store
74291a4b
MM
7900Generate 3-instruction load and store sequences as sometimes required by
7901the HP-UX 10 linker. This is equivalent to the @samp{+k} option to
7902the HP compilers.
7903
7904@item -mportable-runtime
cd3bb277 7905@opindex mportable-runtime
74291a4b
MM
7906Use the portable calling conventions proposed by HP for ELF systems.
7907
7908@item -mgas
cd3bb277 7909@opindex mgas
74291a4b
MM
7910Enable the use of assembler directives only GAS understands.
7911
630d3d5a 7912@item -mschedule=@var{cpu-type}
cd3bb277 7913@opindex mschedule
74291a4b 7914Schedule code according to the constraints for the machine type
630d3d5a 7915@var{cpu-type}. The choices for @var{cpu-type} are @samp{700}
02f52e19 7916@samp{7100}, @samp{7100LC}, @samp{7200}, and @samp{8000}. Refer to
732135bf
JL
7917@file{/usr/lib/sched.models} on an HP-UX system to determine the
7918proper scheduling option for your machine.
74291a4b
MM
7919
7920@item -mlinker-opt
cd3bb277 7921@opindex mlinker-opt
74291a4b
MM
7922Enable the optimization pass in the HPUX linker. Note this makes symbolic
7923debugging impossible. It also triggers a bug in the HPUX 8 and HPUX 9 linkers
7924in which they give bogus error messages when linking some programs.
7925
7926@item -msoft-float
cd3bb277 7927@opindex msoft-float
74291a4b
MM
7928Generate output containing library calls for floating point.
7929@strong{Warning:} the requisite libraries are not available for all HPPA
7930targets. Normally the facilities of the machine's usual C compiler are
7931used, but this cannot be done directly in cross-compilation. You must make
7932your own arrangements to provide suitable library functions for
7933cross-compilation. The embedded target @samp{hppa1.1-*-pro}
7934does provide software floating point support.
7935
630d3d5a 7936@option{-msoft-float} changes the calling convention in the output file;
74291a4b
MM
7937therefore, it is only useful if you compile @emph{all} of a program with
7938this option. In particular, you need to compile @file{libgcc.a}, the
630d3d5a 7939library that comes with GCC, with @option{-msoft-float} in order for
74291a4b
MM
7940this to work.
7941@end table
7942
7943@node Intel 960 Options
7944@subsection Intel 960 Options
7945
7946These @samp{-m} options are defined for the Intel 960 implementations:
7947
2642624b 7948@table @gcctabopt
cd3bb277
JM
7949@item -m@var{cpu-type}
7950@opindex mka
7951@opindex mkb
7952@opindex mmc
7953@opindex mca
7954@opindex mcf
7955@opindex msa
7956@opindex msb
7957Assume the defaults for the machine type @var{cpu-type} for some of
74291a4b 7958the other options, including instruction scheduling, floating point
cd3bb277 7959support, and addressing modes. The choices for @var{cpu-type} are
74291a4b
MM
7960@samp{ka}, @samp{kb}, @samp{mc}, @samp{ca}, @samp{cf},
7961@samp{sa}, and @samp{sb}.
7962The default is
7963@samp{kb}.
7964
7965@item -mnumerics
7966@itemx -msoft-float
cd3bb277
JM
7967@opindex mnumerics
7968@opindex msoft-float
630d3d5a
JM
7969The @option{-mnumerics} option indicates that the processor does support
7970floating-point instructions. The @option{-msoft-float} option indicates
74291a4b
MM
7971that floating-point support should not be assumed.
7972
7973@item -mleaf-procedures
7974@itemx -mno-leaf-procedures
cd3bb277
JM
7975@opindex mleaf-procedures
7976@opindex mno-leaf-procedures
74291a4b
MM
7977Do (or do not) attempt to alter leaf procedures to be callable with the
7978@code{bal} instruction as well as @code{call}. This will result in more
7979efficient code for explicit calls when the @code{bal} instruction can be
7980substituted by the assembler or linker, but less efficient code in other
7981cases, such as calls via function pointers, or using a linker that doesn't
7982support this optimization.
7983
7984@item -mtail-call
7985@itemx -mno-tail-call
cd3bb277
JM
7986@opindex mtail-call
7987@opindex mno-tail-call
74291a4b
MM
7988Do (or do not) make additional attempts (beyond those of the
7989machine-independent portions of the compiler) to optimize tail-recursive
7990calls into branches. You may not want to do this because the detection of
7991cases where this is not valid is not totally complete. The default is
630d3d5a 7992@option{-mno-tail-call}.
74291a4b
MM
7993
7994@item -mcomplex-addr
7995@itemx -mno-complex-addr
cd3bb277
JM
7996@opindex mcomplex-addr
7997@opindex mno-complex-addr
74291a4b
MM
7998Assume (or do not assume) that the use of a complex addressing mode is a
7999win on this implementation of the i960. Complex addressing modes may not
8000be worthwhile on the K-series, but they definitely are on the C-series.
630d3d5a 8001The default is currently @option{-mcomplex-addr} for all processors except
161d7b59 8002the CB and CC@.
74291a4b
MM
8003
8004@item -mcode-align
8005@itemx -mno-code-align
cd3bb277
JM
8006@opindex mcode-align
8007@opindex mno-code-align
74291a4b
MM
8008Align code to 8-byte boundaries for faster fetching (or don't bother).
8009Currently turned on by default for C-series implementations only.
8010
8011@ignore
8012@item -mclean-linkage
8013@itemx -mno-clean-linkage
cd3bb277
JM
8014@opindex mclean-linkage
8015@opindex mno-clean-linkage
74291a4b
MM
8016These options are not fully implemented.
8017@end ignore
8018
8019@item -mic-compat
8020@itemx -mic2.0-compat
8021@itemx -mic3.0-compat
cd3bb277
JM
8022@opindex mic-compat
8023@opindex mic2.0-compat
8024@opindex mic3.0-compat
74291a4b
MM
8025Enable compatibility with iC960 v2.0 or v3.0.
8026
8027@item -masm-compat
8028@itemx -mintel-asm
cd3bb277
JM
8029@opindex masm-compat
8030@opindex mintel-asm
74291a4b
MM
8031Enable compatibility with the iC960 assembler.
8032
8033@item -mstrict-align
8034@itemx -mno-strict-align
cd3bb277
JM
8035@opindex mstrict-align
8036@opindex mno-strict-align
74291a4b
MM
8037Do not permit (do permit) unaligned accesses.
8038
8039@item -mold-align
cd3bb277 8040@opindex mold-align
74291a4b 8041Enable structure-alignment compatibility with Intel's gcc release version
630d3d5a 80421.3 (based on gcc 1.37). This option implies @option{-mstrict-align}.
eaa4b44c
VM
8043
8044@item -mlong-double-64
cd3bb277 8045@opindex mlong-double-64
eaa4b44c
VM
8046Implement type @samp{long double} as 64-bit floating point numbers.
8047Without the option @samp{long double} is implemented by 80-bit
8048floating point numbers. The only reason we have it because there is
8049no 128-bit @samp{long double} support in @samp{fp-bit.c} yet. So it
8050is only useful for people using soft-float targets. Otherwise, we
8051should recommend against use of it.
8052
74291a4b
MM
8053@end table
8054
8055@node DEC Alpha Options
8056@subsection DEC Alpha Options
8057
8058These @samp{-m} options are defined for the DEC Alpha implementations:
8059
2642624b 8060@table @gcctabopt
74291a4b
MM
8061@item -mno-soft-float
8062@itemx -msoft-float
cd3bb277
JM
8063@opindex mno-soft-float
8064@opindex msoft-float
74291a4b 8065Use (do not use) the hardware floating-point instructions for
bedc7537 8066floating-point operations. When @option{-msoft-float} is specified,
7857f134 8067functions in @file{libgcc.a} will be used to perform floating-point
74291a4b
MM
8068operations. Unless they are replaced by routines that emulate the
8069floating-point operations, or compiled in such a way as to call such
8070emulations routines, these routines will issue floating-point
8071operations. If you are compiling for an Alpha without floating-point
8072operations, you must ensure that the library is built so as not to call
8073them.
8074
8075Note that Alpha implementations without floating-point operations are
8076required to have floating-point registers.
8077
8078@item -mfp-reg
8079@itemx -mno-fp-regs
cd3bb277
JM
8080@opindex mfp-reg
8081@opindex mno-fp-regs
74291a4b 8082Generate code that uses (does not use) the floating-point register set.
bedc7537 8083@option{-mno-fp-regs} implies @option{-msoft-float}. If the floating-point
74291a4b
MM
8084register set is not used, floating point operands are passed in integer
8085registers as if they were integers and floating-point results are passed
58605ba0
RH
8086in @code{$0} instead of @code{$f0}. This is a non-standard calling sequence,
8087so any function with a floating-point argument or return value called by code
bedc7537 8088compiled with @option{-mno-fp-regs} must also be compiled with that
74291a4b
MM
8089option.
8090
8091A typical use of this option is building a kernel that does not use,
8092and hence need not save and restore, any floating-point registers.
8093
8094@item -mieee
cd3bb277 8095@opindex mieee
74291a4b
MM
8096The Alpha architecture implements floating-point hardware optimized for
8097maximum performance. It is mostly compliant with the IEEE floating
8098point standard. However, for full compliance, software assistance is
8099required. This option generates code fully IEEE compliant code
630d3d5a 8100@emph{except} that the @var{inexact-flag} is not maintained (see below).
9c34dbbf
ZW
8101If this option is turned on, the preprocessor macro @code{_IEEE_FP} is
8102defined during compilation. The resulting code is less efficient but is
8103able to correctly support denormalized numbers and exceptional IEEE
8104values such as not-a-number and plus/minus infinity. Other Alpha
8105compilers call this option @option{-ieee_with_no_inexact}.
74291a4b
MM
8106
8107@item -mieee-with-inexact
cd3bb277 8108@opindex mieee-with-inexact
9c34dbbf
ZW
8109This is like @option{-mieee} except the generated code also maintains
8110the IEEE @var{inexact-flag}. Turning on this option causes the
8111generated code to implement fully-compliant IEEE math. In addition to
8112@code{_IEEE_FP}, @code{_IEEE_FP_EXACT} is defined as a preprocessor
8113macro. On some Alpha implementations the resulting code may execute
8114significantly slower than the code generated by default. Since there is
8115very little code that depends on the @var{inexact-flag}, you should
74291a4b 8116normally not specify this option. Other Alpha compilers call this
630d3d5a 8117option @option{-ieee_with_inexact}.
74291a4b 8118
630d3d5a 8119@item -mfp-trap-mode=@var{trap-mode}
cd3bb277 8120@opindex mfp-trap-mode
74291a4b 8121This option controls what floating-point related traps are enabled.
630d3d5a 8122Other Alpha compilers call this option @option{-fptm @var{trap-mode}}.
74291a4b
MM
8123The trap mode can be set to one of four values:
8124
8125@table @samp
8126@item n
8127This is the default (normal) setting. The only traps that are enabled
8128are the ones that cannot be disabled in software (e.g., division by zero
8129trap).
8130
8131@item u
8132In addition to the traps enabled by @samp{n}, underflow traps are enabled
8133as well.
8134
8135@item su
8136Like @samp{su}, but the instructions are marked to be safe for software
8137completion (see Alpha architecture manual for details).
8138
8139@item sui
8140Like @samp{su}, but inexact traps are enabled as well.
8141@end table
8142
630d3d5a 8143@item -mfp-rounding-mode=@var{rounding-mode}
cd3bb277 8144@opindex mfp-rounding-mode
74291a4b 8145Selects the IEEE rounding mode. Other Alpha compilers call this option
630d3d5a 8146@option{-fprm @var{rounding-mode}}. The @var{rounding-mode} can be one
74291a4b
MM
8147of:
8148
8149@table @samp
8150@item n
8151Normal IEEE rounding mode. Floating point numbers are rounded towards
8152the nearest machine number or towards the even machine number in case
8153of a tie.
8154
8155@item m
8156Round towards minus infinity.
8157
8158@item c
8159Chopped rounding mode. Floating point numbers are rounded towards zero.
8160
8161@item d
8162Dynamic rounding mode. A field in the floating point control register
8163(@var{fpcr}, see Alpha architecture reference manual) controls the
8164rounding mode in effect. The C library initializes this register for
8165rounding towards plus infinity. Thus, unless your program modifies the
ec4b2ecb
CB
8166@var{fpcr}, @samp{d} corresponds to round towards plus infinity.
8167@end table
74291a4b 8168
630d3d5a 8169@item -mtrap-precision=@var{trap-precision}
cd3bb277 8170@opindex mtrap-precision
74291a4b
MM
8171In the Alpha architecture, floating point traps are imprecise. This
8172means without software assistance it is impossible to recover from a
8173floating trap and program execution normally needs to be terminated.
0c2d1a2a 8174GCC can generate code that can assist operating system trap handlers
74291a4b
MM
8175in determining the exact location that caused a floating point trap.
8176Depending on the requirements of an application, different levels of
8177precisions can be selected:
8178
8179@table @samp
8180@item p
8181Program precision. This option is the default and means a trap handler
8182can only identify which program caused a floating point exception.
8183
8184@item f
8185Function precision. The trap handler can determine the function that
8186caused a floating point exception.
8187
8188@item i
8189Instruction precision. The trap handler can determine the exact
8190instruction that caused a floating point exception.
8191@end table
8192
8193Other Alpha compilers provide the equivalent options called
630d3d5a 8194@option{-scope_safe} and @option{-resumption_safe}.
74291a4b
MM
8195
8196@item -mieee-conformant
cd3bb277 8197@opindex mieee-conformant
74291a4b 8198This option marks the generated code as IEEE conformant. You must not
630d3d5a
JM
8199use this option unless you also specify @option{-mtrap-precision=i} and either
8200@option{-mfp-trap-mode=su} or @option{-mfp-trap-mode=sui}. Its only effect
74291a4b
MM
8201is to emit the line @samp{.eflag 48} in the function prologue of the
8202generated assembly file. Under DEC Unix, this has the effect that
8203IEEE-conformant math library routines will be linked in.
8204
8205@item -mbuild-constants
cd3bb277 8206@opindex mbuild-constants
0c2d1a2a 8207Normally GCC examines a 32- or 64-bit integer constant to
74291a4b
MM
8208see if it can construct it from smaller constants in two or three
8209instructions. If it cannot, it will output the constant as a literal and
956d6950 8210generate code to load it from the data segment at runtime.
74291a4b 8211
0c2d1a2a 8212Use this option to require GCC to construct @emph{all} integer constants
74291a4b
MM
8213using code, even if it takes more instructions (the maximum is six).
8214
8215You would typically use this option to build a shared library dynamic
8216loader. Itself a shared library, it must relocate itself in memory
8217before it can find the variables and constants in its own data segment.
956d6950
JL
8218
8219@item -malpha-as
8220@itemx -mgas
cd3bb277
JM
8221@opindex malpha-as
8222@opindex mgas
956d6950 8223Select whether to generate code to be assembled by the vendor-supplied
630d3d5a 8224assembler (@option{-malpha-as}) or by the GNU assembler @option{-mgas}.
956d6950
JL
8225
8226@item -mbwx
8227@itemx -mno-bwx
8228@itemx -mcix
8229@itemx -mno-cix
58605ba0
RH
8230@itemx -mfix
8231@itemx -mno-fix
956d6950
JL
8232@itemx -mmax
8233@itemx -mno-max
cd3bb277
JM
8234@opindex mbwx
8235@opindex mno-bwx
8236@opindex mcix
8237@opindex mno-cix
58605ba0
RH
8238@opindex mfix
8239@opindex mno-fix
cd3bb277
JM
8240@opindex mmax
8241@opindex mno-max
0c2d1a2a 8242Indicate whether GCC should generate code to use the optional BWX,
58605ba0
RH
8243CIX, FIX and MAX instruction sets. The default is to use the instruction
8244sets supported by the CPU type specified via @option{-mcpu=} option or that
0c2d1a2a 8245of the CPU on which GCC was built if none was specified.
956d6950 8246
58605ba0
RH
8247@item -mfloat-vax
8248@itemx -mfloat-ieee
8249@opindex mfloat-vax
8250@opindex mfloat-ieee
8251Generate code that uses (does not use) VAX F and G floating point
8252arithmetic instead of IEEE single and double precision.
8253
8254@item -mexplicit-relocs
8255@itemx -mno-explicit-relocs
8256@opindex mexplicit-relocs
8257@opindex mno-explicit-relocs
8258Older Alpha assemblers provided no way to generate symbol relocations
f282ffb3 8259except via assembler macros. Use of these macros does not allow
58605ba0
RH
8260optimial instruction scheduling. GNU binutils as of version 2.12
8261supports a new syntax that allows the compiler to explicitly mark
8262which relocations should apply to which instructions. This option
8263is mostly useful for debugging, as GCC detects the capabilities of
8264the assembler when it is built and sets the default accordingly.
8265
8266@item -msmall-data
8267@itemx -mlarge-data
8268@opindex msmall-data
8269@opindex mlarge-data
f282ffb3 8270When @option{-mexplicit-relocs} is in effect, static data is
58605ba0
RH
8271accessed via @dfn{gp-relative} relocations. When @option{-msmall-data}
8272is used, objects 8 bytes long or smaller are placed in a @dfn{small data area}
8273(the @code{.sdata} and @code{.sbss} sections) and are accessed via
827416-bit relocations off of the @code{$gp} register. This limits the
8275size of the small data area to 64KB, but allows the variables to be
8276directly accessed via a single instruction.
8277
8278The default is @option{-mlarge-data}. With this option the data area
8279is limited to just below 2GB. Programs that require more than 2GB of
8280data must use @code{malloc} or @code{mmap} to allocate the data in the
8281heap instead of in the program's data segment.
8282
8283When generating code for shared libraries, @option{-fpic} implies
8284@option{-msmall-data} and @option{-fPIC} implies @option{-mlarge-data}.
8285
956d6950 8286@item -mcpu=@var{cpu_type}
cd3bb277 8287@opindex mcpu
58605ba0
RH
8288Set the instruction set and instruction scheduling parameters for
8289machine type @var{cpu_type}. You can specify either the @samp{EV}
8290style name or the corresponding chip number. GCC supports scheduling
8291parameters for the EV4, EV5 and EV6 family of processors and will
8292choose the default values for the instruction set from the processor
8293you specify. If you do not specify a processor type, GCC will default
8294to the processor on which the compiler was built.
956d6950
JL
8295
8296Supported values for @var{cpu_type} are
8297
8298@table @samp
8299@item ev4
58605ba0 8300@item ev45
956d6950
JL
8301@itemx 21064
8302Schedules as an EV4 and has no instruction set extensions.
8303
8304@item ev5
8305@itemx 21164
8306Schedules as an EV5 and has no instruction set extensions.
8307
8308@item ev56
8309@itemx 21164a
8310Schedules as an EV5 and supports the BWX extension.
8311
8312@item pca56
4f69985c 8313@itemx 21164pc
956d6950
JL
8314@itemx 21164PC
8315Schedules as an EV5 and supports the BWX and MAX extensions.
8316
8317@item ev6
8318@itemx 21264
58605ba0
RH
8319Schedules as an EV6 and supports the BWX, FIX, and MAX extensions.
8320
8321@item ev67
8322@item 21264a
8323Schedules as an EV6 and supports the BWX, CIX, FIX, and MAX extensions.
4f69985c
RH
8324@end table
8325
58605ba0
RH
8326@item -mtune=@var{cpu_type}
8327@opindex mtune
8328Set only the instruction scheduling parameters for machine type
8329@var{cpu_type}. The instruction set is not changed.
8330
4f69985c 8331@item -mmemory-latency=@var{time}
cd3bb277 8332@opindex mmemory-latency
4f69985c
RH
8333Sets the latency the scheduler should assume for typical memory
8334references as seen by the application. This number is highly
b192711e 8335dependent on the memory access patterns used by the application
4f69985c
RH
8336and the size of the external cache on the machine.
8337
8338Valid options for @var{time} are
8339
8340@table @samp
8341@item @var{number}
8342A decimal number representing clock cycles.
8343
8344@item L1
8345@itemx L2
8346@itemx L3
8347@itemx main
8348The compiler contains estimates of the number of clock cycles for
8349``typical'' EV4 & EV5 hardware for the Level 1, 2 & 3 caches
8350(also called Dcache, Scache, and Bcache), as well as to main memory.
8351Note that L3 is only valid for EV5.
8352
956d6950 8353@end table
74291a4b
MM
8354@end table
8355
d7c23cdc
DR
8356@node DEC Alpha/VMS Options
8357@subsection DEC Alpha/VMS Options
8358
8359These @samp{-m} options are defined for the DEC Alpha/VMS implementations:
8360
8361@table @gcctabopt
8362@item -mvms-return-codes
8363@opindex mvms-return-codes
bf6cfc5e
RK
8364Return VMS condition codes from main. The default is to return POSIX
8365style condition (e.g.@ error) codes.
d7c23cdc
DR
8366@end table
8367
74291a4b
MM
8368@node Clipper Options
8369@subsection Clipper Options
8370
8371These @samp{-m} options are defined for the Clipper implementations:
8372
2642624b 8373@table @gcctabopt
74291a4b 8374@item -mc300
cd3bb277 8375@opindex mc300
767094dd 8376Produce code for a C300 Clipper processor. This is the default.
74291a4b 8377
62a1403d 8378@item -mc400
cd3bb277 8379@opindex mc400
9c34dbbf
ZW
8380Produce code for a C400 Clipper processor, i.e.@: use floating point
8381registers f8--f15.
74291a4b
MM
8382@end table
8383
8384@node H8/300 Options
8385@subsection H8/300 Options
8386
8387These @samp{-m} options are defined for the H8/300 implementations:
8388
2642624b 8389@table @gcctabopt
74291a4b 8390@item -mrelax
cd3bb277 8391@opindex mrelax
74291a4b 8392Shorten some address references at link time, when possible; uses the
630d3d5a 8393linker option @option{-relax}. @xref{H8/300,, @code{ld} and the H8/300,
74291a4b
MM
8394ld.info, Using ld}, for a fuller description.
8395
8396@item -mh
cd3bb277 8397@opindex mh
161d7b59 8398Generate code for the H8/300H@.
74291a4b 8399
dcb9d1f0 8400@item -ms
cd3bb277 8401@opindex ms
161d7b59 8402Generate code for the H8/S@.
dcb9d1f0 8403
17f0f8fa 8404@item -ms2600
cd3bb277 8405@opindex ms2600
695ac33f 8406Generate code for the H8/S2600. This switch must be used with @option{-ms}.
17f0f8fa 8407
74291a4b 8408@item -mint32
cd3bb277 8409@opindex mint32
74291a4b
MM
8410Make @code{int} data 32 bits by default.
8411
8412@item -malign-300
cd3bb277 8413@opindex malign-300
2c54abce
KH
8414On the H8/300H and H8/S, use the same alignment rules as for the H8/300.
8415The default for the H8/300H and H8/S is to align longs and floats on 4
8416byte boundaries.
630d3d5a 8417@option{-malign-300} causes them to be aligned on 2 byte boundaries.
2c54abce 8418This option has no effect on the H8/300.
74291a4b
MM
8419@end table
8420
8421@node SH Options
8422@subsection SH Options
8423
8424These @samp{-m} options are defined for the SH implementations:
8425
2642624b 8426@table @gcctabopt
74291a4b 8427@item -m1
cd3bb277 8428@opindex m1
74291a4b
MM
8429Generate code for the SH1.
8430
8431@item -m2
cd3bb277 8432@opindex m2
74291a4b
MM
8433Generate code for the SH2.
8434
8435@item -m3
cd3bb277 8436@opindex m3
74291a4b
MM
8437Generate code for the SH3.
8438
8439@item -m3e
cd3bb277 8440@opindex m3e
74291a4b
MM
8441Generate code for the SH3e.
8442
3cadd778 8443@item -m4-nofpu
cd3bb277 8444@opindex m4-nofpu
3cadd778
AO
8445Generate code for the SH4 without a floating-point unit.
8446
8447@item -m4-single-only
cd3bb277 8448@opindex m4-single-only
3cadd778 8449Generate code for the SH4 with a floating-point unit that only
c771326b 8450supports single-precision arithmetic.
3cadd778
AO
8451
8452@item -m4-single
cd3bb277 8453@opindex m4-single
3cadd778
AO
8454Generate code for the SH4 assuming the floating-point unit is in
8455single-precision mode by default.
8456
8457@item -m4
cd3bb277 8458@opindex m4
3cadd778
AO
8459Generate code for the SH4.
8460
74291a4b 8461@item -mb
cd3bb277 8462@opindex mb
74291a4b
MM
8463Compile code for the processor in big endian mode.
8464
8465@item -ml
cd3bb277 8466@opindex ml
74291a4b
MM
8467Compile code for the processor in little endian mode.
8468
3d5a0820 8469@item -mdalign
cd3bb277 8470@opindex mdalign
02f52e19 8471Align doubles at 64-bit boundaries. Note that this changes the calling
3d5a0820 8472conventions, and thus some functions from the standard C library will
695ac33f 8473not work unless you recompile it first with @option{-mdalign}.
3d5a0820 8474
74291a4b 8475@item -mrelax
cd3bb277 8476@opindex mrelax
74291a4b 8477Shorten some address references at link time, when possible; uses the
630d3d5a 8478linker option @option{-relax}.
3cadd778
AO
8479
8480@item -mbigtable
cd3bb277 8481@opindex mbigtable
3cadd778
AO
8482Use 32-bit offsets in @code{switch} tables. The default is to use
848316-bit offsets.
8484
8485@item -mfmovd
cd3bb277 8486@opindex mfmovd
3cadd778
AO
8487Enable the use of the instruction @code{fmovd}.
8488
8489@item -mhitachi
cd3bb277 8490@opindex mhitachi
3cadd778
AO
8491Comply with the calling conventions defined by Hitachi.
8492
8493@item -mnomacsave
cd3bb277 8494@opindex mnomacsave
3cadd778 8495Mark the @code{MAC} register as call-clobbered, even if
bedc7537 8496@option{-mhitachi} is given.
3cadd778 8497
c474f76b
AO
8498@item -mieee
8499@opindex mieee
8500Increase IEEE-compliance of floating-point code.
8501
3cadd778 8502@item -misize
cd3bb277 8503@opindex misize
3cadd778
AO
8504Dump instruction size and location in the assembly code.
8505
8506@item -mpadstruct
cd3bb277 8507@opindex mpadstruct
3cadd778 8508This option is deprecated. It pads structures to multiple of 4 bytes,
161d7b59 8509which is incompatible with the SH ABI@.
3cadd778
AO
8510
8511@item -mspace
cd3bb277 8512@opindex mspace
bedc7537 8513Optimize for space instead of speed. Implied by @option{-Os}.
1a66cd67
AO
8514
8515@item -mprefergot
cd3bb277 8516@opindex mprefergot
1a66cd67
AO
8517When generating position-independent code, emit function calls using
8518the Global Offset Table instead of the Procedure Linkage Table.
93ca1662
NY
8519
8520@item -musermode
cd3bb277 8521@opindex musermode
93ca1662
NY
8522Generate a library function call to invalidate instruction cache
8523entries, after fixing up a trampoline. This library function call
8524doesn't assume it can write to the whole memory address space. This
8525is the default when the target is @code{sh-*-linux*}.
74291a4b
MM
8526@end table
8527
8528@node System V Options
8529@subsection Options for System V
8530
8531These additional options are available on System V Release 4 for
8532compatibility with other compilers on those systems:
8533
2642624b 8534@table @gcctabopt
74291a4b 8535@item -G
cd3bb277 8536@opindex G
74291a4b 8537Create a shared object.
630d3d5a 8538It is recommended that @option{-symbolic} or @option{-shared} be used instead.
74291a4b
MM
8539
8540@item -Qy
cd3bb277 8541@opindex Qy
74291a4b
MM
8542Identify the versions of each tool used by the compiler, in a
8543@code{.ident} assembler directive in the output.
8544
8545@item -Qn
cd3bb277 8546@opindex Qn
74291a4b
MM
8547Refrain from adding @code{.ident} directives to the output file (this is
8548the default).
8549
aee96fe9 8550@item -YP,@var{dirs}
cd3bb277 8551@opindex YP
74291a4b 8552Search the directories @var{dirs}, and no others, for libraries
630d3d5a 8553specified with @option{-l}.
74291a4b 8554
aee96fe9 8555@item -Ym,@var{dir}
cd3bb277 8556@opindex Ym
bedc7537 8557Look in the directory @var{dir} to find the M4 preprocessor.
74291a4b
MM
8558The assembler uses this option.
8559@c This is supposed to go with a -Yd for predefined M4 macro files, but
8560@c the generic assembler that comes with Solaris takes just -Ym.
8561@end table
8562
282a61e6
MH
8563@node TMS320C3x/C4x Options
8564@subsection TMS320C3x/C4x Options
8565@cindex TMS320C3x/C4x Options
8566
8567These @samp{-m} options are defined for TMS320C3x/C4x implementations:
8568
2642624b 8569@table @gcctabopt
282a61e6
MH
8570
8571@item -mcpu=@var{cpu_type}
cd3bb277 8572@opindex mcpu
282a61e6
MH
8573Set the instruction set, register set, and instruction scheduling
8574parameters for machine type @var{cpu_type}. Supported values for
8575@var{cpu_type} are @samp{c30}, @samp{c31}, @samp{c32}, @samp{c40}, and
8576@samp{c44}. The default is @samp{c40} to generate code for the
8577TMS320C40.
8578
8579@item -mbig-memory
8580@item -mbig
8581@itemx -msmall-memory
8582@itemx -msmall
cd3bb277
JM
8583@opindex mbig-memory
8584@opindex mbig
8585@opindex msmall-memory
8586@opindex msmall
282a61e6
MH
8587Generates code for the big or small memory model. The small memory
8588model assumed that all data fits into one 64K word page. At run-time
8589the data page (DP) register must be set to point to the 64K page
8590containing the .bss and .data program sections. The big memory model is
8591the default and requires reloading of the DP register for every direct
8592memory access.
8593
8594@item -mbk
8595@itemx -mno-bk
cd3bb277
JM
8596@opindex mbk
8597@opindex mno-bk
282a61e6 8598Allow (disallow) allocation of general integer operands into the block
161d7b59 8599count register BK@.
282a61e6
MH
8600
8601@item -mdb
8602@itemx -mno-db
cd3bb277
JM
8603@opindex mdb
8604@opindex mno-db
282a61e6
MH
8605Enable (disable) generation of code using decrement and branch,
8606DBcond(D), instructions. This is enabled by default for the C4x. To be
8607on the safe side, this is disabled for the C3x, since the maximum
aee96fe9
JM
8608iteration count on the C3x is @math{2^23 + 1} (but who iterates loops more than
8609@math{2^23} times on the C3x?). Note that GCC will try to reverse a loop so
282a61e6
MH
8610that it can utilise the decrement and branch instruction, but will give
8611up if there is more than one memory reference in the loop. Thus a loop
8612where the loop counter is decremented can generate slightly more
8613efficient code, in cases where the RPTB instruction cannot be utilised.
8614
8615@item -mdp-isr-reload
8616@itemx -mparanoid
cd3bb277
JM
8617@opindex mdp-isr-reload
8618@opindex mparanoid
282a61e6
MH
8619Force the DP register to be saved on entry to an interrupt service
8620routine (ISR), reloaded to point to the data section, and restored on
161d7b59 8621exit from the ISR@. This should not be required unless someone has
282a61e6
MH
8622violated the small memory model by modifying the DP register, say within
8623an object library.
8624
8625@item -mmpyi
8626@itemx -mno-mpyi
cd3bb277
JM
8627@opindex mmpyi
8628@opindex mno-mpyi
282a61e6
MH
8629For the C3x use the 24-bit MPYI instruction for integer multiplies
8630instead of a library call to guarantee 32-bit results. Note that if one
8631of the operands is a constant, then the multiplication will be performed
695ac33f 8632using shifts and adds. If the @option{-mmpyi} option is not specified for the C3x,
282a61e6
MH
8633then squaring operations are performed inline instead of a library call.
8634
8635@item -mfast-fix
8636@itemx -mno-fast-fix
cd3bb277
JM
8637@opindex mfast-fix
8638@opindex mno-fast-fix
282a61e6
MH
8639The C3x/C4x FIX instruction to convert a floating point value to an
8640integer value chooses the nearest integer less than or equal to the
8641floating point value rather than to the nearest integer. Thus if the
8642floating point number is negative, the result will be incorrectly
8643truncated an additional code is necessary to detect and correct this
8644case. This option can be used to disable generation of the additional
8645code required to correct the result.
8646
8647@item -mrptb
8648@itemx -mno-rptb
cd3bb277
JM
8649@opindex mrptb
8650@opindex mno-rptb
282a61e6
MH
8651Enable (disable) generation of repeat block sequences using the RPTB
8652instruction for zero overhead looping. The RPTB construct is only used
8653for innermost loops that do not call functions or jump across the loop
8654boundaries. There is no advantage having nested RPTB loops due to the
8655overhead required to save and restore the RC, RS, and RE registers.
695ac33f 8656This is enabled by default with @option{-O2}.
282a61e6
MH
8657
8658@item -mrpts=@var{count}
8659@itemx -mno-rpts
cd3bb277
JM
8660@opindex mrpts
8661@opindex mno-rpts
282a61e6 8662Enable (disable) the use of the single instruction repeat instruction
161d7b59 8663RPTS@. If a repeat block contains a single instruction, and the loop
282a61e6 8664count can be guaranteed to be less than the value @var{count}, GCC will
161d7b59 8665emit a RPTS instruction instead of a RPTB@. If no value is specified,
282a61e6
MH
8666then a RPTS will be emitted even if the loop count cannot be determined
8667at compile time. Note that the repeated instruction following RPTS does
8668not have to be reloaded from memory each iteration, thus freeing up the
b192711e 8669CPU buses for operands. However, since interrupts are blocked by this
282a61e6
MH
8670instruction, it is disabled by default.
8671
8672@item -mloop-unsigned
8673@itemx -mno-loop-unsigned
cd3bb277
JM
8674@opindex mloop-unsigned
8675@opindex mno-loop-unsigned
282a61e6 8676The maximum iteration count when using RPTS and RPTB (and DB on the C40)
aee96fe9 8677is @math{2^31 + 1} since these instructions test if the iteration count is
282a61e6 8678negative to terminate the loop. If the iteration count is unsigned
aee96fe9 8679there is a possibility than the @math{2^31 + 1} maximum iteration count may be
282a61e6
MH
8680exceeded. This switch allows an unsigned iteration count.
8681
8682@item -mti
cd3bb277 8683@opindex mti
282a61e6
MH
8684Try to emit an assembler syntax that the TI assembler (asm30) is happy
8685with. This also enforces compatibility with the API employed by the TI
8686C3x C compiler. For example, long doubles are passed as structures
8687rather than in floating point registers.
8688
8689@item -mregparm
8690@itemx -mmemparm
cd3bb277
JM
8691@opindex mregparm
8692@opindex mmemparm
282a61e6
MH
8693Generate code that uses registers (stack) for passing arguments to functions.
8694By default, arguments are passed in registers where possible rather
8695than by pushing arguments on to the stack.
8696
8697@item -mparallel-insns
8698@itemx -mno-parallel-insns
cd3bb277
JM
8699@opindex mparallel-insns
8700@opindex mno-parallel-insns
282a61e6 8701Allow the generation of parallel instructions. This is enabled by
695ac33f 8702default with @option{-O2}.
282a61e6
MH
8703
8704@item -mparallel-mpy
8705@itemx -mno-parallel-mpy
cd3bb277
JM
8706@opindex mparallel-mpy
8707@opindex mno-parallel-mpy
282a61e6 8708Allow the generation of MPY||ADD and MPY||SUB parallel instructions,
695ac33f 8709provided @option{-mparallel-insns} is also specified. These instructions have
282a61e6
MH
8710tight register constraints which can pessimize the code generation
8711of large functions.
8712
8713@end table
8714
f84271d9
JL
8715@node V850 Options
8716@subsection V850 Options
8717@cindex V850 Options
8718
8719These @samp{-m} options are defined for V850 implementations:
8720
2642624b 8721@table @gcctabopt
f84271d9
JL
8722@item -mlong-calls
8723@itemx -mno-long-calls
cd3bb277
JM
8724@opindex mlong-calls
8725@opindex mno-long-calls
f84271d9
JL
8726Treat all calls as being far away (near). If calls are assumed to be
8727far away, the compiler will always load the functions address up into a
8728register, and call indirect through the pointer.
8729
8730@item -mno-ep
bd762873 8731@itemx -mep
cd3bb277
JM
8732@opindex mno-ep
8733@opindex mep
f84271d9
JL
8734Do not optimize (do optimize) basic blocks that use the same index
8735pointer 4 or more times to copy pointer into the @code{ep} register, and
630d3d5a 8736use the shorter @code{sld} and @code{sst} instructions. The @option{-mep}
f84271d9
JL
8737option is on by default if you optimize.
8738
8739@item -mno-prolog-function
8740@itemx -mprolog-function
cd3bb277
JM
8741@opindex mno-prolog-function
8742@opindex mprolog-function
f84271d9
JL
8743Do not use (do use) external functions to save and restore registers at
8744the prolog and epilog of a function. The external functions are slower,
8745but use less code space if more than one function saves the same number
630d3d5a 8746of registers. The @option{-mprolog-function} option is on by default if
f84271d9
JL
8747you optimize.
8748
8749@item -mspace
cd3bb277 8750@opindex mspace
f84271d9 8751Try to make the code as small as possible. At present, this just turns
630d3d5a 8752on the @option{-mep} and @option{-mprolog-function} options.
f84271d9
JL
8753
8754@item -mtda=@var{n}
cd3bb277 8755@opindex mtda
f84271d9
JL
8756Put static or global variables whose size is @var{n} bytes or less into
8757the tiny data area that register @code{ep} points to. The tiny data
8758area can hold up to 256 bytes in total (128 bytes for byte references).
8759
8760@item -msda=@var{n}
cd3bb277 8761@opindex msda
f84271d9
JL
8762Put static or global variables whose size is @var{n} bytes or less into
8763the small data area that register @code{gp} points to. The small data
8764area can hold up to 64 kilobytes.
8765
8766@item -mzda=@var{n}
cd3bb277 8767@opindex mzda
f84271d9
JL
8768Put static or global variables whose size is @var{n} bytes or less into
8769the first 32 kilobytes of memory.
02f52e19 8770
48f0be1b 8771@item -mv850
cd3bb277 8772@opindex mv850
48f0be1b
SC
8773Specify that the target processor is the V850.
8774
e9a25f70 8775@item -mbig-switch
cd3bb277 8776@opindex mbig-switch
e9a25f70
JL
8777Generate code suitable for big switch tables. Use this option only if
8778the assembler/linker complain about out of range branches within a switch
8779table.
f84271d9
JL
8780@end table
8781
56b2d7a7
JL
8782@node ARC Options
8783@subsection ARC Options
8784@cindex ARC Options
8785
8786These options are defined for ARC implementations:
8787
2642624b 8788@table @gcctabopt
56b2d7a7 8789@item -EL
cd3bb277 8790@opindex EL
56b2d7a7
JL
8791Compile code for little endian mode. This is the default.
8792
8793@item -EB
cd3bb277 8794@opindex EB
56b2d7a7
JL
8795Compile code for big endian mode.
8796
8797@item -mmangle-cpu
cd3bb277 8798@opindex mmangle-cpu
56b2d7a7
JL
8799Prepend the name of the cpu to all public symbol names.
8800In multiple-processor systems, there are many ARC variants with different
8801instruction and register set characteristics. This flag prevents code
8802compiled for one cpu to be linked with code compiled for another.
695ac33f 8803No facility exists for handling variants that are ``almost identical''.
56b2d7a7
JL
8804This is an all or nothing option.
8805
8806@item -mcpu=@var{cpu}
cd3bb277 8807@opindex mcpu
56b2d7a7
JL
8808Compile code for ARC variant @var{cpu}.
8809Which variants are supported depend on the configuration.
630d3d5a 8810All variants support @option{-mcpu=base}, this is the default.
56b2d7a7 8811
630d3d5a
JM
8812@item -mtext=@var{text-section}
8813@itemx -mdata=@var{data-section}
8814@itemx -mrodata=@var{readonly-data-section}
cd3bb277
JM
8815@opindex mtext
8816@opindex mdata
8817@opindex mrodata
630d3d5a
JM
8818Put functions, data, and readonly data in @var{text-section},
8819@var{data-section}, and @var{readonly-data-section} respectively
56b2d7a7 8820by default. This can be overridden with the @code{section} attribute.
0b433de6 8821@xref{Variable Attributes}.
56b2d7a7
JL
8822
8823@end table
8824
83575957
ID
8825@node NS32K Options
8826@subsection NS32K Options
8827@cindex NS32K options
8828
8829These are the @samp{-m} options defined for the 32000 series. The default
8830values for these options depends on which style of 32000 was selected when
8831the compiler was configured; the defaults for the most common choices are
8832given below.
8833
2642624b 8834@table @gcctabopt
83575957
ID
8835@item -m32032
8836@itemx -m32032
cd3bb277
JM
8837@opindex m32032
8838@opindex m32032
83575957
ID
8839Generate output for a 32032. This is the default
8840when the compiler is configured for 32032 and 32016 based systems.
8841
8842@item -m32332
8843@itemx -m32332
cd3bb277
JM
8844@opindex m32332
8845@opindex m32332
83575957
ID
8846Generate output for a 32332. This is the default
8847when the compiler is configured for 32332-based systems.
8848
8849@item -m32532
8850@itemx -m32532
cd3bb277
JM
8851@opindex m32532
8852@opindex m32532
83575957
ID
8853Generate output for a 32532. This is the default
8854when the compiler is configured for 32532-based systems.
8855
8856@item -m32081
cd3bb277 8857@opindex m32081
83575957
ID
8858Generate output containing 32081 instructions for floating point.
8859This is the default for all systems.
8860
8861@item -m32381
cd3bb277 8862@opindex m32381
83575957 8863Generate output containing 32381 instructions for floating point. This
767094dd
JM
8864also implies @option{-m32081}. The 32381 is only compatible with the 32332
8865and 32532 cpus. This is the default for the pc532-netbsd configuration.
83575957
ID
8866
8867@item -mmulti-add
cd3bb277 8868@opindex mmulti-add
83575957 8869Try and generate multiply-add floating point instructions @code{polyF}
767094dd 8870and @code{dotF}. This option is only available if the @option{-m32381}
14976c58 8871option is in effect. Using these instructions requires changes to
83575957
ID
8872register allocation which generally has a negative impact on
8873performance. This option should only be enabled when compiling code
8874particularly likely to make heavy use of multiply-add instructions.
8875
8876@item -mnomulti-add
cd3bb277 8877@opindex mnomulti-add
83575957 8878Do not try and generate multiply-add floating point instructions
767094dd 8879@code{polyF} and @code{dotF}. This is the default on all platforms.
83575957
ID
8880
8881@item -msoft-float
cd3bb277 8882@opindex msoft-float
83575957
ID
8883Generate output containing library calls for floating point.
8884@strong{Warning:} the requisite libraries may not be available.
8885
8886@item -mnobitfield
cd3bb277 8887@opindex mnobitfield
767094dd
JM
8888Do not use the bit-field instructions. On some machines it is faster to
8889use shifting and masking operations. This is the default for the pc532.
83575957
ID
8890
8891@item -mbitfield
cd3bb277 8892@opindex mbitfield
767094dd 8893Do use the bit-field instructions. This is the default for all platforms
83575957
ID
8894except the pc532.
8895
8896@item -mrtd
cd3bb277 8897@opindex mrtd
83575957
ID
8898Use a different function-calling convention, in which functions
8899that take a fixed number of arguments return pop their
8900arguments on return with the @code{ret} instruction.
8901
8902This calling convention is incompatible with the one normally
8903used on Unix, so you cannot use it if you need to call libraries
8904compiled with the Unix compiler.
8905
8906Also, you must provide function prototypes for all functions that
8907take variable numbers of arguments (including @code{printf});
8908otherwise incorrect code will be generated for calls to those
8909functions.
8910
8911In addition, seriously incorrect code will result if you call a
8912function with too many arguments. (Normally, extra arguments are
8913harmlessly ignored.)
8914
8915This option takes its name from the 680x0 @code{rtd} instruction.
8916
8917
8918@item -mregparam
cd3bb277 8919@opindex mregparam
83575957
ID
8920Use a different function-calling convention where the first two arguments
8921are passed in registers.
8922
8923This calling convention is incompatible with the one normally
8924used on Unix, so you cannot use it if you need to call libraries
8925compiled with the Unix compiler.
8926
8927@item -mnoregparam
cd3bb277 8928@opindex mnoregparam
767094dd 8929Do not pass any arguments in registers. This is the default for all
83575957
ID
8930targets.
8931
8932@item -msb
cd3bb277 8933@opindex msb
83575957 8934It is OK to use the sb as an index register which is always loaded with
767094dd 8935zero. This is the default for the pc532-netbsd target.
83575957
ID
8936
8937@item -mnosb
cd3bb277 8938@opindex mnosb
83575957 8939The sb register is not available for use or has not been initialized to
767094dd
JM
8940zero by the run time system. This is the default for all targets except
8941the pc532-netbsd. It is also implied whenever @option{-mhimem} or
630d3d5a 8942@option{-fpic} is set.
83575957
ID
8943
8944@item -mhimem
cd3bb277 8945@opindex mhimem
161d7b59 8946Many ns32000 series addressing modes use displacements of up to 512MB@.
83575957 8947If an address is above 512MB then displacements from zero can not be used.
161d7b59 8948This option causes code to be generated which can be loaded above 512MB@.
83575957
ID
8949This may be useful for operating systems or ROM code.
8950
8951@item -mnohimem
cd3bb277 8952@opindex mnohimem
83575957
ID
8953Assume code will be loaded in the first 512MB of virtual address space.
8954This is the default for all platforms.
8955
8956
8957@end table
8958
052a4b28
DC
8959@node AVR Options
8960@subsection AVR Options
8961@cindex AVR Options
8962
8963These options are defined for AVR implementations:
8964
2642624b 8965@table @gcctabopt
052a4b28 8966@item -mmcu=@var{mcu}
cd3bb277 8967@opindex mmcu
3a69a7d5
MM
8968Specify ATMEL AVR instruction set or MCU type.
8969
8970Instruction set avr1 is for the minimal AVR core, not supported by the C
8971compiler, only for assembler programs (MCU types: at90s1200, attiny10,
8972attiny11, attiny12, attiny15, attiny28).
8973
8974Instruction set avr2 (default) is for the classic AVR core with up to
89758K program memory space (MCU types: at90s2313, at90s2323, attiny22,
8976at90s2333, at90s2343, at90s4414, at90s4433, at90s4434, at90s8515,
8977at90c8534, at90s8535).
8978
8979Instruction set avr3 is for the classic AVR core with up to 128K program
c7f3e0b0 8980memory space (MCU types: atmega103, atmega603, at43usb320, at76c711).
3a69a7d5
MM
8981
8982Instruction set avr4 is for the enhanced AVR core with up to 8K program
c7f3e0b0 8983memory space (MCU types: atmega8, atmega83, atmega85).
3a69a7d5
MM
8984
8985Instruction set avr5 is for the enhanced AVR core with up to 128K program
c7f3e0b0
MM
8986memory space (MCU types: atmega16, atmega161, atmega163, atmega32, atmega323,
8987atmega64, atmega128, at43usb355, at94k).
052a4b28
DC
8988
8989@item -msize
cd3bb277 8990@opindex msize
3a69a7d5 8991Output instruction sizes to the asm file.
052a4b28
DC
8992
8993@item -minit-stack=@var{N}
cd3bb277 8994@opindex minit-stack
3a69a7d5 8995Specify the initial stack address, which may be a symbol or numeric value,
aee96fe9 8996@samp{__stack} is the default.
052a4b28
DC
8997
8998@item -mno-interrupts
cd3bb277 8999@opindex mno-interrupts
052a4b28
DC
9000Generated code is not compatible with hardware interrupts.
9001Code size will be smaller.
9002
9003@item -mcall-prologues
cd3bb277 9004@opindex mcall-prologues
052a4b28 9005Functions prologues/epilogues expanded as call to appropriate
767094dd 9006subroutines. Code size will be smaller.
3a69a7d5
MM
9007
9008@item -mno-tablejump
cd3bb277 9009@opindex mno-tablejump
3a69a7d5
MM
9010Do not generate tablejump insns which sometimes increase code size.
9011
9012@item -mtiny-stack
cd3bb277 9013@opindex mtiny-stack
3a69a7d5 9014Change only the low 8 bits of the stack pointer.
052a4b28
DC
9015@end table
9016
789a3090
NC
9017@node MCore Options
9018@subsection MCore Options
9019@cindex MCore options
9020
9021These are the @samp{-m} options defined for the Motorola M*Core
02f52e19 9022processors.
789a3090 9023
2642624b 9024@table @gcctabopt
789a3090
NC
9025
9026@item -mhardlit
9027@itemx -mhardlit
9028@itemx -mno-hardlit
cd3bb277
JM
9029@opindex mhardlit
9030@opindex mhardlit
9031@opindex mno-hardlit
789a3090
NC
9032Inline constants into the code stream if it can be done in two
9033instructions or less.
9034
9035@item -mdiv
9036@itemx -mdiv
9037@itemx -mno-div
cd3bb277
JM
9038@opindex mdiv
9039@opindex mdiv
9040@opindex mno-div
789a3090
NC
9041Use the divide instruction. (Enabled by default).
9042
9043@item -mrelax-immediate
9044@itemx -mrelax-immediate
9045@itemx -mno-relax-immediate
cd3bb277
JM
9046@opindex mrelax-immediate
9047@opindex mrelax-immediate
9048@opindex mno-relax-immediate
b192711e 9049Allow arbitrary sized immediates in bit operations.
789a3090
NC
9050
9051@item -mwide-bitfields
9052@itemx -mwide-bitfields
9053@itemx -mno-wide-bitfields
cd3bb277
JM
9054@opindex mwide-bitfields
9055@opindex mwide-bitfields
9056@opindex mno-wide-bitfields
c771326b 9057Always treat bit-fields as int-sized.
789a3090
NC
9058
9059@item -m4byte-functions
9060@itemx -m4byte-functions
9061@itemx -mno-4byte-functions
cd3bb277
JM
9062@opindex m4byte-functions
9063@opindex m4byte-functions
9064@opindex mno-4byte-functions
b192711e 9065Force all functions to be aligned to a four byte boundary.
789a3090
NC
9066
9067@item -mcallgraph-data
9068@itemx -mcallgraph-data
9069@itemx -mno-callgraph-data
cd3bb277
JM
9070@opindex mcallgraph-data
9071@opindex mcallgraph-data
9072@opindex mno-callgraph-data
789a3090
NC
9073Emit callgraph information.
9074
9075@item -mslow-bytes
9076@itemx -mslow-bytes
9077@itemx -mno-slow-bytes
cd3bb277
JM
9078@opindex mslow-bytes
9079@opindex mslow-bytes
9080@opindex mno-slow-bytes
789a3090
NC
9081Prefer word access when reading byte quantities.
9082
9083@item -mlittle-endian
9084@itemx -mlittle-endian
9085@itemx -mbig-endian
cd3bb277
JM
9086@opindex mlittle-endian
9087@opindex mlittle-endian
9088@opindex mbig-endian
b192711e 9089Generate code for a little endian target.
789a3090
NC
9090
9091@item -m210
9092@itemx -m210
9093@itemx -m340
cd3bb277
JM
9094@opindex m210
9095@opindex m210
9096@opindex m340
789a3090 9097Generate code for the 210 processor.
789a3090 9098@end table
83575957 9099
df6194d4
JW
9100@node IA-64 Options
9101@subsection IA-64 Options
9102@cindex IA-64 Options
9103
9104These are the @samp{-m} options defined for the Intel IA-64 architecture.
9105
9106@table @gcctabopt
9107@item -mbig-endian
cd3bb277 9108@opindex mbig-endian
161d7b59 9109Generate code for a big endian target. This is the default for HPUX@.
df6194d4
JW
9110
9111@item -mlittle-endian
cd3bb277 9112@opindex mlittle-endian
df6194d4
JW
9113Generate code for a little endian target. This is the default for AIX5
9114and Linux.
9115
9116@item -mgnu-as
9117@itemx -mno-gnu-as
cd3bb277
JM
9118@opindex mgnu-as
9119@opindex mno-gnu-as
15d3a111 9120Generate (or don't) code for the GNU assembler. This is the default.
630d3d5a 9121@c Also, this is the default if the configure option @option{--with-gnu-as}
15d3a111 9122@c is used.
df6194d4
JW
9123
9124@item -mgnu-ld
9125@itemx -mno-gnu-ld
cd3bb277
JM
9126@opindex mgnu-ld
9127@opindex mno-gnu-ld
15d3a111 9128Generate (or don't) code for the GNU linker. This is the default.
630d3d5a 9129@c Also, this is the default if the configure option @option{--with-gnu-ld}
15d3a111 9130@c is used.
df6194d4
JW
9131
9132@item -mno-pic
cd3bb277 9133@opindex mno-pic
15d3a111 9134Generate code that does not use a global pointer register. The result
161d7b59 9135is not position independent code, and violates the IA-64 ABI@.
df6194d4
JW
9136
9137@item -mvolatile-asm-stop
9138@itemx -mno-volatile-asm-stop
cd3bb277
JM
9139@opindex mvolatile-asm-stop
9140@opindex mno-volatile-asm-stop
15d3a111
JW
9141Generate (or don't) a stop bit immediately before and after volatile asm
9142statements.
df6194d4
JW
9143
9144@item -mb-step
cd3bb277 9145@opindex mb-step
df6194d4
JW
9146Generate code that works around Itanium B step errata.
9147
9148@item -mregister-names
9149@itemx -mno-register-names
cd3bb277
JM
9150@opindex mregister-names
9151@opindex mno-register-names
15d3a111
JW
9152Generate (or don't) @samp{in}, @samp{loc}, and @samp{out} register names for
9153the stacked registers. This may make assembler output more readable.
df6194d4
JW
9154
9155@item -mno-sdata
9156@itemx -msdata
cd3bb277
JM
9157@opindex mno-sdata
9158@opindex msdata
15d3a111
JW
9159Disable (or enable) optimizations that use the small data section. This may
9160be useful for working around optimizer bugs.
df6194d4
JW
9161
9162@item -mconstant-gp
cd3bb277 9163@opindex mconstant-gp
df6194d4
JW
9164Generate code that uses a single constant global pointer value. This is
9165useful when compiling kernel code.
9166
9167@item -mauto-pic
cd3bb277 9168@opindex mauto-pic
630d3d5a 9169Generate code that is self-relocatable. This implies @option{-mconstant-gp}.
df6194d4
JW
9170This is useful when compiling firmware code.
9171
9172@item -minline-divide-min-latency
cd3bb277 9173@opindex minline-divide-min-latency
df6194d4
JW
9174Generate code for inline divides using the minimum latency algorithm.
9175
9176@item -minline-divide-max-throughput
cd3bb277 9177@opindex minline-divide-max-throughput
df6194d4
JW
9178Generate code for inline divides using the maximum throughput algorithm.
9179
9180@item -mno-dwarf2-asm
9181@itemx -mdwarf2-asm
cd3bb277
JM
9182@opindex mno-dwarf2-asm
9183@opindex mdwarf2-asm
15d3a111
JW
9184Don't (or do) generate assembler code for the DWARF2 line number debugging
9185info. This may be useful when not using the GNU assembler.
df6194d4 9186
630d3d5a 9187@item -mfixed-range=@var{register-range}
cd3bb277 9188@opindex mfixed-range
df6194d4
JW
9189Generate code treating the given register range as fixed registers.
9190A fixed register is one that the register allocator can not use. This is
9191useful when compiling kernel code. A register range is specified as
9192two registers separated by a dash. Multiple register ranges can be
9193specified separated by a comma.
9194@end table
9195
e8ad90e5
MM
9196@node D30V Options
9197@subsection D30V Options
9198@cindex D30V Options
9199
9200These @samp{-m} options are defined for D30V implementations:
9201
2642624b 9202@table @gcctabopt
e8ad90e5 9203@item -mextmem
cd3bb277 9204@opindex mextmem
e8ad90e5
MM
9205Link the @samp{.text}, @samp{.data}, @samp{.bss}, @samp{.strings},
9206@samp{.rodata}, @samp{.rodata1}, @samp{.data1} sections into external
9207memory, which starts at location @code{0x80000000}.
9208
9209@item -mextmemory
cd3bb277 9210@opindex mextmemory
630d3d5a 9211Same as the @option{-mextmem} switch.
e8ad90e5
MM
9212
9213@item -monchip
cd3bb277 9214@opindex monchip
e8ad90e5
MM
9215Link the @samp{.text} section into onchip text memory, which starts at
9216location @code{0x0}. Also link @samp{.data}, @samp{.bss},
9217@samp{.strings}, @samp{.rodata}, @samp{.rodata1}, @samp{.data1} sections
9218into onchip data memory, which starts at location @code{0x20000000}.
9219
9220@item -mno-asm-optimize
9221@itemx -masm-optimize
cd3bb277
JM
9222@opindex mno-asm-optimize
9223@opindex masm-optimize
630d3d5a
JM
9224Disable (enable) passing @option{-O} to the assembler when optimizing.
9225The assembler uses the @option{-O} option to automatically parallelize
e8ad90e5
MM
9226adjacent short instructions where possible.
9227
9228@item -mbranch-cost=@var{n}
cd3bb277 9229@opindex mbranch-cost
e8ad90e5
MM
9230Increase the internal costs of branches to @var{n}. Higher costs means
9231that the compiler will issue more instructions to avoid doing a branch.
9232The default is 2.
9233
9234@item -mcond-exec=@var{n}
cd3bb277 9235@opindex mcond-exec
e8ad90e5
MM
9236Specify the maximum number of conditionally executed instructions that
9237replace a branch. The default is 4.
9238@end table
56b2d7a7 9239
91abf72d
HP
9240@node S/390 and zSeries Options
9241@subsection S/390 and zSeries Options
9242@cindex S/390 and zSeries Options
9243
9244These are the @samp{-m} options defined for the S/390 and zSeries architecture.
9245
9246@table @gcctabopt
9247@item -mhard-float
9248@itemx -msoft-float
9249@opindex mhard-float
9250@opindex msoft-float
9251Use (do not use) the hardware floating-point instructions and registers
9252for floating-point operations. When @option{-msoft-float} is specified,
9253functions in @file{libgcc.a} will be used to perform floating-point
9254operations. When @option{-mhard-float} is specified, the compiler
9255generates IEEE floating-point instructions. This is the default.
9256
9257@item -mbackchain
9258@itemx -mno-backchain
9259@opindex mbackchain
9260@opindex mno-backchain
f282ffb3 9261Generate (or do not generate) code which maintains an explicit
91abf72d
HP
9262backchain within the stack frame that points to the caller's frame.
9263This is currently needed to allow debugging. The default is to
9264generate the backchain.
9265
9266@item -msmall-exec
9267@itemx -mno-small-exec
9268@opindex msmall-exec
9269@opindex mno-small-exec
f282ffb3
JM
9270Generate (or do not generate) code using the @code{bras} instruction
9271to do subroutine calls.
91abf72d
HP
9272This only works reliably if the total executable size does not
9273exceed 64k. The default is to use the @code{basr} instruction instead,
9274which does not have this limitation.
9275
9276@item -m64
9277@itemx -m31
9278@opindex m64
9279@opindex m31
9280When @option{-m31} is specified, generate code compliant to the
9281Linux for S/390 ABI@. When @option{-m64} is specified, generate
9282code compliant to the Linux for zSeries ABI@. This allows GCC in
9283particular to generate 64-bit instructions. For the @samp{s390}
f282ffb3 9284targets, the default is @option{-m31}, while the @samp{s390x}
91abf72d
HP
9285targets default to @option{-m64}.
9286
9287@item -mmvcle
9288@itemx -mno-mvcle
9289@opindex mmvcle
9290@opindex mno-mvcle
f282ffb3 9291Generate (or do not generate) code using the @code{mvcle} instruction
91abf72d
HP
9292to perform block moves. When @option{-mno-mvcle} is specifed,
9293use a @code{mvc} loop instead. This is the default.
9294
9295@item -mdebug
9296@itemx -mno-debug
9297@opindex mdebug
9298@opindex mno-debug
9299Print (or do not print) additional debug information when compiling.
9300The default is to not print debug information.
9301
9302@end table
9303
0b85d816
HPN
9304@node CRIS Options
9305@subsection CRIS Options
9306@cindex CRIS Options
9307
9308These options are defined specifically for the CRIS ports.
9309
9310@table @gcctabopt
9311@item -march=@var{architecture-type}
9312@itemx -mcpu=@var{architecture-type}
9313@opindex march
9314@opindex mcpu
9315Generate code for the specified architecture. The choices for
9316@var{architecture-type} are @samp{v3}, @samp{v8} and @samp{v10} for
9317respectively ETRAX@w{ }4, ETRAX@w{ }100, and ETRAX@w{ }100@w{ }LX.
9318Default is @samp{v0} except for cris-axis-linux-gnu, where the default is
9319@samp{v10}.
9320
9321@item -mtune=@var{architecture-type}
9322@opindex mtune
9323Tune to @var{architecture-type} everything applicable about the generated
9324code, except for the ABI and the set of available instructions. The
9325choices for @var{architecture-type} are the same as for
9326@option{-march=@var{architecture-type}}.
9327
9328@item -mmax-stack-frame=@var{n}
9329@opindex mmax-stack-frame
9330Warn when the stack frame of a function exceeds @var{n} bytes.
9331
9332@item -melinux-stacksize=@var{n}
9333@opindex melinux-stacksize
9334Only available with the @samp{cris-axis-aout} target. Arranges for
9335indications in the program to the kernel loader that the stack of the
9336program should be set to @var{n} bytes.
9337
9338@item -metrax4
9339@itemx -metrax100
9340@opindex metrax4
9341@opindex metrax100
9342The options @option{-metrax4} and @option{-metrax100} are synonyms for
9343@option{-march=v3} and @option{-march=v8} respectively.
9344
9345@item -mpdebug
9346@opindex mpdebug
9347Enable CRIS-specific verbose debug-related information in the assembly
9348code. This option also has the effect to turn off the @samp{#NO_APP}
9349formatted-code indicator to the assembler at the beginning of the
9350assembly file.
9351
9352@item -mcc-init
9353@opindex mcc-init
9354Do not use condition-code results from previous instruction; always emit
9355compare and test instructions before use of condition codes.
9356
9357@item -mno-side-effects
9358@opindex mno-side-effects
9359Do not emit instructions with side-effects in addressing modes other than
9360post-increment.
9361
9362@item -mstack-align
9363@itemx -mno-stack-align
9364@itemx -mdata-align
9365@itemx -mno-data-align
9366@itemx -mconst-align
9367@itemx -mno-const-align
9368@opindex mstack-align
9369@opindex mno-stack-align
9370@opindex mdata-align
9371@opindex mno-data-align
9372@opindex mconst-align
9373@opindex mno-const-align
9374These options (no-options) arranges (eliminate arrangements) for the
9375stack-frame, individual data and constants to be aligned for the maximum
9376single data access size for the chosen CPU model. The default is to
9377arrange for 32-bit alignment. ABI details such as structure layout are
9378not affected by these options.
9379
9380@item -m32-bit
9381@itemx -m16-bit
9382@itemx -m8-bit
9383@opindex m32-bit
9384@opindex m16-bit
9385@opindex m8-bit
9386Similar to the stack- data- and const-align options above, these options
9387arrange for stack-frame, writable data and constants to all be 32-bit,
938816-bit or 8-bit aligned. The default is 32-bit alignment.
9389
9390@item -mno-prologue-epilogue
9391@itemx -mprologue-epilogue
9392@opindex mno-prologue-epilogue
9393@opindex mprologue-epilogue
9394With @option{-mno-prologue-epilogue}, the normal function prologue and
9395epilogue that sets up the stack-frame are omitted and no return
9396instructions or return sequences are generated in the code. Use this
9397option only together with visual inspection of the compiled code: no
9398warnings or errors are generated when call-saved registers must be saved,
9399or storage for local variable needs to be allocated.
9400
9401@item -mno-gotplt
9402@itemx -mgotplt
9403@opindex mno-gotplt
9404@opindex mgotplt
9405With @option{-fpic} and @option{-fPIC}, don't generate (do generate)
9406instruction sequences that load addresses for functions from the PLT part
9407of the GOT rather than (traditional on other architectures) calls to the
9408PLT. The default is @option{-mgotplt}.
9409
9410@item -maout
9411@opindex maout
9412Legacy no-op option only recognized with the cris-axis-aout target.
9413
9414@item -melf
9415@opindex melf
9416Legacy no-op option only recognized with the cris-axis-elf and
9417cris-axis-linux-gnu targets.
9418
9419@item -melinux
9420@opindex melinux
9421Only recognized with the cris-axis-aout target, where it selects a
9422GNU/linux-like multilib, include files and instruction set for
9423@option{-march=v8}.
9424
9425@item -mlinux
9426@opindex mlinux
9427Legacy no-op option only recognized with the cris-axis-linux-gnu target.
9428
9429@item -sim
9430@opindex sim
9431This option, recognized for the cris-axis-aout and cris-axis-elf arranges
9432to link with input-output functions from a simulator library. Code,
9433initialized data and zero-initialized data are allocated consecutively.
9434
9435@item -sim2
9436@opindex sim2
9437Like @option{-sim}, but pass linker options to locate initialized data at
94380x40000000 and zero-initialized data at 0x80000000.
9439@end table
9440
bcf684c7
HPN
9441@node MMIX Options
9442@subsection MMIX Options
9443@cindex MMIX Options
9444
9445These options are defined for the MMIX:
9446
5d22c1a5 9447@table @gcctabopt
bcf684c7
HPN
9448@item -mlibfuncs
9449@itemx -mno-libfuncs
5d22c1a5
JM
9450@opindex mlibfuncs
9451@opindex mno-libfuncs
bcf684c7
HPN
9452Specify that intrinsic library functions are being compiled, passing all
9453values in registers, no matter the size.
9454
9455@item -mepsilon
9456@itemx -mno-epsilon
5d22c1a5
JM
9457@opindex mepsilon
9458@opindex mno-epsilon
bcf684c7
HPN
9459Generate floating-point comparison instructions that compare with respect
9460to the @code{rE} epsilon register.
9461
9462@item -mabi=mmixware
9463@itemx -mabi=gnu
5d22c1a5
JM
9464@opindex mabi-mmixware
9465@opindex mabi=gnu
bcf684c7
HPN
9466Generate code that passes function parameters and return values that (in
9467the called function) are seen as registers @code{$0} and up, as opposed to
9468the GNU ABI which uses global registers @code{$231} and up.
9469
9470@item -mzero-extend
3e0f61ac 9471@itemx -mno-zero-extend
5d22c1a5
JM
9472@opindex mzero-extend
9473@opindex mno-zero-extend
bcf684c7
HPN
9474When reading data from memory in sizes shorter than 64 bits, use (do not
9475use) zero-extending load instructions by default, rather than
9476sign-extending ones.
9477
9478@item -mknuthdiv
9479@itemx -mno-knuthdiv
5d22c1a5
JM
9480@opindex mknuthdiv
9481@opindex mno-knuthdiv
bcf684c7
HPN
9482Make the result of a division yielding a remainder have the same sign as
9483the divisor. With the default, @option{-mno-knuthdiv}, the sign of the
7fba3293
HPN
9484remainder follows the sign of the dividend. Both methods are
9485arithmetically valid, the latter being almost exclusively used.
bcf684c7
HPN
9486
9487@item -mtoplevel-symbols
9488@itemx -mno-toplevel-symbols
5d22c1a5
JM
9489@opindex mtoplevel-symbols
9490@opindex mno-toplevel-symbols
7fba3293 9491Prepend (do not prepend) a @samp{:} to all global symbols, so the assembly
bcf684c7
HPN
9492code can be used with the @code{PREFIX} assembly directive.
9493
9494@item -melf
5d22c1a5 9495@opindex melf
7fba3293 9496Generate an executable in the ELF format, rather than the default
bcf684c7 9497@samp{mmo} format used by the @command{mmix} simulator.
3e0f61ac
HPN
9498
9499@item -mbranch-predict
9500@itemx -mno-branch-predict
5d22c1a5
JM
9501@opindex mbranch-predict
9502@opindex mno-branch-predict
3e0f61ac
HPN
9503Use (do not use) the probable-branch instructions, when static branch
9504prediction indicates a probable branch.
a824924d
HPN
9505
9506@item -mbase-addresses
9507@itemx -mno-base-addresses
9508@opindex mbase-addresses
9509@opindex mno-base-addresses
9510Generate (do not generate) code that uses @emph{base addresses}. Using a
9511base address automatically generates a request (handled by the assembler
9512and the linker) for a constant to be set up in a global register. The
9513register is used for one or more base address requests within the range 0
9514to 255 from the value held in the register. The generally leads to short
9515and fast code, but the number of different data items that can be
9516addressed is limited. This means that a program that uses lots of static
9517data may require @option{-mno-base-addresses}.
bcf684c7
HPN
9518@end table
9519
9f85bca7
JM
9520@node PDP-11 Options
9521@subsection PDP-11 Options
9522@cindex PDP-11 Options
9523
9524These options are defined for the PDP-11:
9525
9526@table @gcctabopt
9527@item -mfpu
9528@opindex mfpu
9529Use hardware FPP floating point. This is the default. (FIS floating
9530point on the PDP-11/40 is not supported.)
9531
9532@item -msoft-float
9533@opindex msoft-float
9534Do not use hardware floating point.
9535
9536@item -mac0
9537@opindex mac0
9538Return floating-point results in ac0 (fr0 in Unix assembler syntax).
9539
9540@item -mno-ac0
9541@opindex mno-ac0
9542Return floating-point results in memory. This is the default.
9543
9544@item -m40
9545@opindex m40
9546Generate code for a PDP-11/40.
9547
9548@item -m45
9549@opindex m45
9550Generate code for a PDP-11/45. This is the default.
9551
9552@item -m10
9553@opindex m10
9554Generate code for a PDP-11/10.
9555
9556@item -mbcopy-builtin
9557@opindex bcopy-builtin
9558Use inline @code{movstrhi} patterns for copying memory. This is the
9559default.
9560
9561@item -mbcopy
9562@opindex mbcopy
9563Do not use inline @code{movstrhi} patterns for copying memory.
9564
9565@item -mint16
9566@itemx -mno-int32
9567@opindex mint16
9568@opindex mno-int32
9569Use 16-bit @code{int}. This is the default.
9570
9571@item -mint32
9572@itemx -mno-int16
9573@opindex mint32
9574@opindex mno-int16
9575Use 32-bit @code{int}.
9576
9577@item -mfloat64
9578@itemx -mno-float32
9579@opindex mfloat64
9580@opindex mno-float32
9581Use 64-bit @code{float}. This is the default.
9582
9583@item -mfloat32
9584@item -mno-float64
9585@opindex mfloat32
9586@opindex mno-float64
9587Use 32-bit @code{float}.
9588
9589@item -mabshi
9590@opindex mabshi
9591Use @code{abshi2} pattern. This is the default.
9592
9593@item -mno-abshi
9594@opindex mno-abshi
9595Do not use @code{abshi2} pattern.
9596
9597@item -mbranch-expensive
9598@opindex mbranch-expensive
9599Pretend that branches are expensive. This is for experimenting with
9600code generation only.
9601
9602@item -mbranch-cheap
9603@opindex mbranch-cheap
9604Do not pretend that branches are expensive. This is the default.
9605
9606@item -msplit
9607@opindex msplit
9608Generate code for a system with split I&D.
9609
9610@item -mno-split
9611@opindex mno-split
9612Generate code for a system without split I&D. This is the default.
9613
9614@item -munix-asm
9615@opindex munix-asm
9616Use Unix assembler syntax. This is the default when configured for
9617@samp{pdp11-*-bsd}.
9618
9619@item -mdec-asm
9620@opindex mdec-asm
9621Use DEC assembler syntax. This is the default when configured for any
9622PDP-11 target other than @samp{pdp11-*-bsd}.
9623@end table
9624
69a0611f
GK
9625@node Xstormy16 Options
9626@subsection Xstormy16 Options
9627@cindex Xstormy16 Options
9628
9629These options are defined for Xstormy16:
9630
9631@table @gcctabopt
9632@item -msim
9633@opindex msim
9634Choose startup files and linker script suitable for the simulator.
9635@end table
9636
03984308
BW
9637@node Xtensa Options
9638@subsection Xtensa Options
9639@cindex Xtensa Options
9640
9641The Xtensa architecture is designed to support many different
9642configurations. The compiler's default options can be set to match a
9643particular Xtensa configuration by copying a configuration file into the
9644GCC sources when building GCC@. The options below may be used to
9645override the default options.
9646
9647@table @gcctabopt
9648@item -mbig-endian
9649@itemx -mlittle-endian
9650@opindex mbig-endian
9651@opindex mlittle-endian
9652Specify big-endian or little-endian byte ordering for the target Xtensa
9653processor.
9654
9655@item -mdensity
9656@itemx -mno-density
9657@opindex mdensity
9658@opindex mno-density
9659Enable or disable use of the optional Xtensa code density instructions.
9660
9661@item -mmac16
9662@itemx -mno-mac16
9663@opindex mmac16
9664@opindex mno-mac16
9665Enable or disable use of the Xtensa MAC16 option. When enabled, GCC
9666will generate MAC16 instructions from standard C code, with the
9667limitation that it will use neither the MR register file nor any
9668instruction that operates on the MR registers. When this option is
9669disabled, GCC will translate 16-bit multiply/accumulate operations to a
9670combination of core instructions and library calls, depending on whether
9671any other multiplier options are enabled.
9672
9673@item -mmul16
9674@itemx -mno-mul16
9675@opindex mmul16
9676@opindex mno-mul16
9677Enable or disable use of the 16-bit integer multiplier option. When
9678enabled, the compiler will generate 16-bit multiply instructions for
9679multiplications of 16 bits or smaller in standard C code. When this
9680option is disabled, the compiler will either use 32-bit multiply or
9681MAC16 instructions if they are available or generate library calls to
9682perform the multiply operations using shifts and adds.
9683
9684@item -mmul32
9685@itemx -mno-mul32
9686@opindex mmul32
9687@opindex mno-mul32
9688Enable or disable use of the 32-bit integer multiplier option. When
9689enabled, the compiler will generate 32-bit multiply instructions for
9690multiplications of 32 bits or smaller in standard C code. When this
9691option is disabled, the compiler will generate library calls to perform
9692the multiply operations using either shifts and adds or 16-bit multiply
9693instructions if they are available.
9694
9695@item -mnsa
9696@itemx -mno-nsa
9697@opindex mnsa
9698@opindex mno-nsa
9699Enable or disable use of the optional normalization shift amount
9700(@code{NSA}) instructions to implement the built-in @code{ffs} function.
9701
9702@item -mminmax
9703@itemx -mno-minmax
9704@opindex mminmax
9705@opindex mno-minmax
9706Enable or disable use of the optional minimum and maximum value
9707instructions.
9708
9709@item -msext
9710@itemx -mno-sext
9711@opindex msext
9712@opindex mno-sext
9713Enable or disable use of the optional sign extend (@code{SEXT})
9714instruction.
9715
9716@item -mbooleans
9717@itemx -mno-booleans
9718@opindex mbooleans
9719@opindex mno-booleans
9720Enable or disable support for the boolean register file used by Xtensa
9721coprocessors. This is not typically useful by itself but may be
9722required for other options that make use of the boolean registers (e.g.,
9723the floating-point option).
9724
9725@item -mhard-float
9726@itemx -msoft-float
9727@opindex mhard-float
9728@opindex msoft-float
9729Enable or disable use of the floating-point option. When enabled, GCC
9730generates floating-point instructions for 32-bit @code{float}
9731operations. When this option is disabled, GCC generates library calls
9732to emulate 32-bit floating-point operations using integer instructions.
9733Regardless of this option, 64-bit @code{double} operations are always
9734emulated with calls to library functions.
9735
9736@item -mfused-madd
9737@itemx -mno-fused-madd
9738@opindex mfused-madd
9739@opindex mno-fused-madd
9740Enable or disable use of fused multiply/add and multiply/subtract
9741instructions in the floating-point option. This has no effect if the
9742floating-point option is not also enabled. Disabling fused multiply/add
9743and multiply/subtract instructions forces the compiler to use separate
9744instructions for the multiply and add/subtract operations. This may be
9745desirable in some cases where strict IEEE 754-compliant results are
9746required: the fused multiply add/subtract instructions do not round the
9747intermediate result, thereby producing results with @emph{more} bits of
9748precision than specified by the IEEE standard. Disabling fused multiply
9749add/subtract instructions also ensures that the program output is not
9750sensitive to the compiler's ability to combine multiply and add/subtract
9751operations.
9752
9753@item -mserialize-volatile
9754@itemx -mno-serialize-volatile
9755@opindex mserialize-volatile
9756@opindex mno-serialize-volatile
9757When this option is enabled, GCC inserts @code{MEMW} instructions before
9758@code{volatile} memory references to guarantee sequential consistency.
9759The default is @option{-mserialize-volatile}. Use
9760@option{-mno-serialize-volatile} to omit the @code{MEMW} instructions.
9761
9762@item -mtext-section-literals
9763@itemx -mno-text-section-literals
9764@opindex mtext-section-literals
9765@opindex mno-text-section-literals
9766Control the treatment of literal pools. The default is
9767@option{-mno-text-section-literals}, which places literals in a separate
9768section in the output file. This allows the literal pool to be placed
9769in a data RAM/ROM, and it also allows the linker to combine literal
9770pools from separate object files to remove redundant literals and
9771improve code size. With @option{-mtext-section-literals}, the literals
9772are interspersed in the text section in order to keep them as close as
9773possible to their references. This may be necessary for large assembly
9774files.
9775
9776@item -mtarget-align
9777@itemx -mno-target-align
9778@opindex mtarget-align
9779@opindex mno-target-align
9780When this option is enabled, GCC instructs the assembler to
9781automatically align instructions to reduce branch penalties at the
9782expense of some code density. The assembler attempts to widen density
9783instructions to align branch targets and the instructions following call
9784instructions. If there are not enough preceding safe density
9785instructions to align a target, no widening will be performed. The
9786default is @option{-mtarget-align}. These options do not affect the
9787treatment of auto-aligned instructions like @code{LOOP}, which the
9788assembler will always align, either by widening density instructions or
9789by inserting no-op instructions.
9790
9791@item -mlongcalls
9792@itemx -mno-longcalls
9793@opindex mlongcalls
9794@opindex mno-longcalls
9795When this option is enabled, GCC instructs the assembler to translate
9796direct calls to indirect calls unless it can determine that the target
9797of a direct call is in the range allowed by the call instruction. This
9798translation typically occurs for calls to functions in other source
9799files. Specifically, the assembler translates a direct @code{CALL}
9800instruction into an @code{L32R} followed by a @code{CALLX} instruction.
9801The default is @option{-mno-longcalls}. This option should be used in
9802programs where the call target can potentially be out of range. This
9803option is implemented in the assembler, not the compiler, so the
9804assembly code generated by GCC will still show direct call
9805instructions---look at the disassembled object code to see the actual
9806instructions. Note that the assembler will use an indirect call for
9807every cross-file call, not just those that really will be out of range.
9808@end table
9809
74291a4b
MM
9810@node Code Gen Options
9811@section Options for Code Generation Conventions
9812@cindex code generation conventions
9813@cindex options, code generation
9814@cindex run-time options
9815
9816These machine-independent options control the interface conventions
9817used in code generation.
9818
9819Most of them have both positive and negative forms; the negative form
630d3d5a 9820of @option{-ffoo} would be @option{-fno-foo}. In the table below, only
74291a4b
MM
9821one of the forms is listed---the one which is not the default. You
9822can figure out the other form by either removing @samp{no-} or adding
9823it.
9824
2642624b 9825@table @gcctabopt
956d6950 9826@item -fexceptions
cd3bb277 9827@opindex fexceptions
767094dd 9828Enable exception handling. Generates extra code needed to propagate
f0523f02 9829exceptions. For some targets, this implies GCC will generate frame
c5c76735
JL
9830unwind information for all functions, which can produce significant data
9831size overhead, although it does not affect execution. If you do not
f0523f02 9832specify this option, GCC will enable it by default for languages like
90ecce3e 9833C++ which normally require exception handling, and disable it for
c5c76735
JL
9834languages like C that do not normally require it. However, you may need
9835to enable this option when compiling C code that needs to interoperate
9836properly with exception handlers written in C++. You may also wish to
9837disable this option if you are compiling older C++ programs that don't
9838use exception handling.
956d6950 9839
6cfc0341
RH
9840@item -fnon-call-exceptions
9841@opindex fnon-call-exceptions
9842Generate code that allows trapping instructions to throw exceptions.
9843Note that this requires platform-specific runtime support that does
9844not exist everywhere. Moreover, it only allows @emph{trapping}
e979f9e8 9845instructions to throw exceptions, i.e.@: memory references or floating
6cfc0341
RH
9846point instructions. It does not allow exceptions to be thrown from
9847arbitrary signal handlers such as @code{SIGALRM}.
9848
14a774a9 9849@item -funwind-tables
cd3bb277 9850@opindex funwind-tables
bedc7537 9851Similar to @option{-fexceptions}, except that it will just generate any needed
14a774a9
RK
9852static data, but will not affect the generated code in any other way.
9853You will normally not enable this option; instead, a language processor
9854that needs this handling would enable it on your behalf.
9855
b932f770
JH
9856@item -fasynchronous-unwind-tables
9857@opindex funwind-tables
9858Generate unwind table in dwarf2 format, if supported by target machine. The
9859table is exact at each instruction boundary, so it can be used for stack
9860unwinding from asynchronous events (such as debugger or garbage collector).
9861
74291a4b 9862@item -fpcc-struct-return
cd3bb277 9863@opindex fpcc-struct-return
74291a4b
MM
9864Return ``short'' @code{struct} and @code{union} values in memory like
9865longer ones, rather than in registers. This convention is less
9866efficient, but it has the advantage of allowing intercallability between
0c2d1a2a 9867GCC-compiled files and files compiled with other compilers.
74291a4b
MM
9868
9869The precise convention for returning structures in memory depends
9870on the target configuration macros.
9871
9872Short structures and unions are those whose size and alignment match
9873that of some integer type.
9874
9875@item -freg-struct-return
cd3bb277 9876@opindex freg-struct-return
9c34dbbf
ZW
9877Return @code{struct} and @code{union} values in registers when possible.
9878This is more efficient for small structures than
9879@option{-fpcc-struct-return}.
74291a4b 9880
9c34dbbf 9881If you specify neither @option{-fpcc-struct-return} nor
630d3d5a 9882@option{-freg-struct-return}, GCC defaults to whichever convention is
0c2d1a2a 9883standard for the target. If there is no standard convention, GCC
9c34dbbf
ZW
9884defaults to @option{-fpcc-struct-return}, except on targets where GCC is
9885the principal compiler. In those cases, we can choose the standard, and
9886we chose the more efficient register return alternative.
74291a4b
MM
9887
9888@item -fshort-enums
cd3bb277 9889@opindex fshort-enums
74291a4b
MM
9890Allocate to an @code{enum} type only as many bytes as it needs for the
9891declared range of possible values. Specifically, the @code{enum} type
9892will be equivalent to the smallest integer type which has enough room.
9893
9894@item -fshort-double
cd3bb277 9895@opindex fshort-double
74291a4b
MM
9896Use the same size for @code{double} as for @code{float}.
9897
9898@item -fshared-data
cd3bb277 9899@opindex fshared-data
74291a4b
MM
9900Requests that the data and non-@code{const} variables of this
9901compilation be shared data rather than private data. The distinction
9902makes sense only on certain operating systems, where shared data is
9903shared between processes running the same program, while private data
9904exists in one copy per process.
9905
9906@item -fno-common
cd3bb277 9907@opindex fno-common
90ecce3e 9908In C, allocate even uninitialized global variables in the data section of the
74291a4b
MM
9909object file, rather than generating them as common blocks. This has the
9910effect that if the same variable is declared (without @code{extern}) in
9911two different compilations, you will get an error when you link them.
9912The only reason this might be useful is if you wish to verify that the
9913program will work on other systems which always work this way.
9914
9915@item -fno-ident
cd3bb277 9916@opindex fno-ident
74291a4b
MM
9917Ignore the @samp{#ident} directive.
9918
9919@item -fno-gnu-linker
cd3bb277 9920@opindex fno-gnu-linker
74291a4b
MM
9921Do not output global initializations (such as C++ constructors and
9922destructors) in the form used by the GNU linker (on systems where the GNU
9923linker is the standard method of handling them). Use this option when
9924you want to use a non-GNU linker, which also requires using the
bedc7537
NC
9925@command{collect2} program to make sure the system linker includes
9926constructors and destructors. (@command{collect2} is included in the GCC
9927distribution.) For systems which @emph{must} use @command{collect2}, the
9928compiler driver @command{gcc} is configured to do this automatically.
74291a4b
MM
9929
9930@item -finhibit-size-directive
cd3bb277 9931@opindex finhibit-size-directive
74291a4b
MM
9932Don't output a @code{.size} assembler directive, or anything else that
9933would cause trouble if the function is split in the middle, and the
9934two halves are placed at locations far apart in memory. This option is
9935used when compiling @file{crtstuff.c}; you should not need to use it
9936for anything else.
9937
9938@item -fverbose-asm
cd3bb277 9939@opindex fverbose-asm
74291a4b
MM
9940Put extra commentary information in the generated assembly code to
9941make it more readable. This option is generally only of use to those
9942who actually need to read the generated assembly code (perhaps while
9943debugging the compiler itself).
9944
630d3d5a 9945@option{-fno-verbose-asm}, the default, causes the
74291a4b
MM
9946extra information to be omitted and is useful when comparing two assembler
9947files.
9948
9949@item -fvolatile
cd3bb277 9950@opindex fvolatile
74291a4b
MM
9951Consider all memory references through pointers to be volatile.
9952
9953@item -fvolatile-global
cd3bb277 9954@opindex fvolatile-global
74291a4b 9955Consider all memory references to extern and global data items to
0c2d1a2a 9956be volatile. GCC does not consider static data items to be volatile
ab87f8c8
JL
9957because of this switch.
9958
9959@item -fvolatile-static
cd3bb277 9960@opindex fvolatile-static
ab87f8c8 9961Consider all memory references to static data to be volatile.
74291a4b
MM
9962
9963@item -fpic
cd3bb277 9964@opindex fpic
74291a4b
MM
9965@cindex global offset table
9966@cindex PIC
9967Generate position-independent code (PIC) suitable for use in a shared
9968library, if supported for the target machine. Such code accesses all
161d7b59 9969constant addresses through a global offset table (GOT)@. The dynamic
861bb6c1 9970loader resolves the GOT entries when the program starts (the dynamic
0c2d1a2a 9971loader is not part of GCC; it is part of the operating system). If
861bb6c1
JL
9972the GOT size for the linked executable exceeds a machine-specific
9973maximum size, you get an error message from the linker indicating that
630d3d5a 9974@option{-fpic} does not work; in that case, recompile with @option{-fPIC}
861bb6c1
JL
9975instead. (These maximums are 16k on the m88k, 8k on the Sparc, and 32k
9976on the m68k and RS/6000. The 386 has no such limit.)
74291a4b
MM
9977
9978Position-independent code requires special support, and therefore works
0c2d1a2a 9979only on certain machines. For the 386, GCC supports PIC for System V
74291a4b
MM
9980but not for the Sun 386i. Code generated for the IBM RS/6000 is always
9981position-independent.
9982
74291a4b 9983@item -fPIC
cd3bb277 9984@opindex fPIC
74291a4b
MM
9985If supported for the target machine, emit position-independent code,
9986suitable for dynamic linking and avoiding any limit on the size of the
9987global offset table. This option makes a difference on the m68k, m88k,
9988and the Sparc.
9989
9990Position-independent code requires special support, and therefore works
9991only on certain machines.
9992
9993@item -ffixed-@var{reg}
cd3bb277 9994@opindex ffixed
74291a4b
MM
9995Treat the register named @var{reg} as a fixed register; generated code
9996should never refer to it (except perhaps as a stack pointer, frame
9997pointer or in some other fixed role).
9998
9999@var{reg} must be the name of a register. The register names accepted
10000are machine-specific and are defined in the @code{REGISTER_NAMES}
10001macro in the machine description macro file.
10002
10003This flag does not have a negative form, because it specifies a
10004three-way choice.
10005
10006@item -fcall-used-@var{reg}
cd3bb277 10007@opindex fcall-used
956d6950 10008Treat the register named @var{reg} as an allocable register that is
74291a4b
MM
10009clobbered by function calls. It may be allocated for temporaries or
10010variables that do not live across a call. Functions compiled this way
10011will not save and restore the register @var{reg}.
10012
cb2fdc84
GRK
10013It is an error to used this flag with the frame pointer or stack pointer.
10014Use of this flag for other registers that have fixed pervasive roles in
10015the machine's execution model will produce disastrous results.
74291a4b
MM
10016
10017This flag does not have a negative form, because it specifies a
10018three-way choice.
10019
10020@item -fcall-saved-@var{reg}
cd3bb277 10021@opindex fcall-saved
956d6950 10022Treat the register named @var{reg} as an allocable register saved by
74291a4b
MM
10023functions. It may be allocated even for temporaries or variables that
10024live across a call. Functions compiled this way will save and restore
10025the register @var{reg} if they use it.
10026
cb2fdc84
GRK
10027It is an error to used this flag with the frame pointer or stack pointer.
10028Use of this flag for other registers that have fixed pervasive roles in
10029the machine's execution model will produce disastrous results.
74291a4b
MM
10030
10031A different sort of disaster will result from the use of this flag for
10032a register in which function values may be returned.
10033
10034This flag does not have a negative form, because it specifies a
10035three-way choice.
10036
10037@item -fpack-struct
cd3bb277 10038@opindex fpack-struct
74291a4b
MM
10039Pack all structure members together without holes. Usually you would
10040not want to use this option, since it makes the code suboptimal, and
10041the offsets of structure members won't agree with system libraries.
10042
07417085 10043@item -finstrument-functions
cd3bb277 10044@opindex finstrument-functions
07417085
KR
10045Generate instrumentation calls for entry and exit to functions. Just
10046after function entry and just before function exit, the following
10047profiling functions will be called with the address of the current
10048function and its call site. (On some platforms,
10049@code{__builtin_return_address} does not work beyond the current
10050function, so the call site information may not be available to the
10051profiling functions otherwise.)
10052
10053@example
310668e8
JM
10054void __cyg_profile_func_enter (void *this_fn,
10055 void *call_site);
10056void __cyg_profile_func_exit (void *this_fn,
10057 void *call_site);
07417085
KR
10058@end example
10059
10060The first argument is the address of the start of the current function,
10061which may be looked up exactly in the symbol table.
10062
10063This instrumentation is also done for functions expanded inline in other
10064functions. The profiling calls will indicate where, conceptually, the
10065inline function is entered and exited. This means that addressable
10066versions of such functions must be available. If all your uses of a
10067function are expanded inline, this may mean an additional expansion of
10068code size. If you use @samp{extern inline} in your C code, an
10069addressable version of such functions must be provided. (This is
10070normally the case anyways, but if you get lucky and the optimizer always
10071expands the functions inline, you might have gotten away without
10072providing static copies.)
10073
10074A function may be given the attribute @code{no_instrument_function}, in
10075which case this instrumentation will not be done. This can be used, for
10076example, for the profiling functions listed above, high-priority
10077interrupt routines, and any functions from which the profiling functions
10078cannot safely be called (perhaps signal handlers, if the profiling
10079routines generate output or allocate memory).
10080
861bb6c1 10081@item -fstack-check
cd3bb277 10082@opindex fstack-check
861bb6c1
JL
10083Generate code to verify that you do not go beyond the boundary of the
10084stack. You should specify this flag if you are running in an
10085environment with multiple threads, but only rarely need to specify it in
10086a single-threaded environment since stack overflow is automatically
10087detected on nearly all systems if there is only one stack.
10088
a157febd
GK
10089Note that this switch does not actually cause checking to be done; the
10090operating system must do that. The switch causes generation of code
10091to ensure that the operating system sees the stack being extended.
10092
10093@item -fstack-limit-register=@var{reg}
10094@itemx -fstack-limit-symbol=@var{sym}
10095@itemx -fno-stack-limit
cd3bb277
JM
10096@opindex fstack-limit-register
10097@opindex fstack-limit-symbol
10098@opindex fno-stack-limit
a157febd
GK
10099Generate code to ensure that the stack does not grow beyond a certain value,
10100either the value of a register or the address of a symbol. If the stack
10101would grow beyond the value, a signal is raised. For most targets,
10102the signal is raised before the stack overruns the boundary, so
10103it is possible to catch the signal without taking special precautions.
10104
9c34dbbf
ZW
10105For instance, if the stack starts at absolute address @samp{0x80000000}
10106and grows downwards, you can use the flags
10107@option{-fstack-limit-symbol=__stack_limit} and
10108@option{-Wl,--defsym,__stack_limit=0x7ffe0000} to enforce a stack limit
10109of 128KB@. Note that this may only work with the GNU linker.
a157febd 10110
e5eb27e5
JL
10111@cindex aliasing of parameters
10112@cindex parameters, aliased
10113@item -fargument-alias
04afd9d6
JL
10114@itemx -fargument-noalias
10115@itemx -fargument-noalias-global
cd3bb277
JM
10116@opindex fargument-alias
10117@opindex fargument-noalias
10118@opindex fargument-noalias-global
e5eb27e5
JL
10119Specify the possible relationships among parameters and between
10120parameters and global data.
10121
630d3d5a 10122@option{-fargument-alias} specifies that arguments (parameters) may
9c34dbbf 10123alias each other and may alias global storage.@*
630d3d5a 10124@option{-fargument-noalias} specifies that arguments do not alias
9c34dbbf 10125each other, but may alias global storage.@*
630d3d5a 10126@option{-fargument-noalias-global} specifies that arguments do not
e5eb27e5
JL
10127alias each other and do not alias global storage.
10128
10129Each language will automatically use whatever option is required by
10130the language standard. You should not need to use these options yourself.
19283265
RH
10131
10132@item -fleading-underscore
cd3bb277 10133@opindex fleading-underscore
695ac33f 10134This option and its counterpart, @option{-fno-leading-underscore}, forcibly
19283265
RH
10135change the way C symbols are represented in the object file. One use
10136is to help link with legacy assembly code.
10137
10138Be warned that you should know what you are doing when invoking this
10139option, and that not all targets provide complete support for it.
74291a4b
MM
10140@end table
10141
ee457005
JM
10142@c man end
10143
74291a4b 10144@node Environment Variables
0c2d1a2a 10145@section Environment Variables Affecting GCC
74291a4b
MM
10146@cindex environment variables
10147
ee457005
JM
10148@c man begin ENVIRONMENT
10149
0c2d1a2a
JB
10150This section describes several environment variables that affect how GCC
10151operates. Some of them work by specifying directories or prefixes to use
767094dd 10152when searching for various kinds of files. Some are used to specify other
46103ab4 10153aspects of the compilation environment.
74291a4b 10154
74291a4b 10155Note that you can also specify places to search using options such as
630d3d5a 10156@option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}). These
74291a4b 10157take precedence over places specified using environment variables, which
161d7b59 10158in turn take precedence over those specified by the configuration of GCC@.
b11cc610
JM
10159@xref{Driver,, Controlling the Compilation Driver @file{gcc}, gccint,
10160GNU Compiler Collection (GCC) Internals}.
74291a4b 10161
bedc7537 10162@table @env
ab87f8c8
JL
10163@item LANG
10164@itemx LC_CTYPE
10165@c @itemx LC_COLLATE
10166@itemx LC_MESSAGES
10167@c @itemx LC_MONETARY
10168@c @itemx LC_NUMERIC
10169@c @itemx LC_TIME
10170@itemx LC_ALL
10171@findex LANG
10172@findex LC_CTYPE
10173@c @findex LC_COLLATE
10174@findex LC_MESSAGES
10175@c @findex LC_MONETARY
10176@c @findex LC_NUMERIC
10177@c @findex LC_TIME
10178@findex LC_ALL
10179@cindex locale
0c2d1a2a
JB
10180These environment variables control the way that GCC uses
10181localization information that allow GCC to work with different
10182national conventions. GCC inspects the locale categories
bedc7537 10183@env{LC_CTYPE} and @env{LC_MESSAGES} if it has been configured to do
ab87f8c8
JL
10184so. These locale categories can be set to any value supported by your
10185installation. A typical value is @samp{en_UK} for English in the United
10186Kingdom.
10187
bedc7537 10188The @env{LC_CTYPE} environment variable specifies character
0c2d1a2a 10189classification. GCC uses it to determine the character boundaries in
ab87f8c8
JL
10190a string; this is needed for some multibyte encodings that contain quote
10191and escape characters that would otherwise be interpreted as a string
10192end or escape.
10193
bedc7537 10194The @env{LC_MESSAGES} environment variable specifies the language to
ab87f8c8
JL
10195use in diagnostic messages.
10196
bedc7537
NC
10197If the @env{LC_ALL} environment variable is set, it overrides the value
10198of @env{LC_CTYPE} and @env{LC_MESSAGES}; otherwise, @env{LC_CTYPE}
10199and @env{LC_MESSAGES} default to the value of the @env{LANG}
0c2d1a2a 10200environment variable. If none of these variables are set, GCC
ab87f8c8
JL
10201defaults to traditional C English behavior.
10202
74291a4b
MM
10203@item TMPDIR
10204@findex TMPDIR
bedc7537 10205If @env{TMPDIR} is set, it specifies the directory to use for temporary
0c2d1a2a 10206files. GCC uses temporary files to hold the output of one stage of
74291a4b
MM
10207compilation which is to be used as input to the next stage: for example,
10208the output of the preprocessor, which is the input to the compiler
10209proper.
10210
10211@item GCC_EXEC_PREFIX
10212@findex GCC_EXEC_PREFIX
bedc7537 10213If @env{GCC_EXEC_PREFIX} is set, it specifies a prefix to use in the
74291a4b
MM
10214names of the subprograms executed by the compiler. No slash is added
10215when this prefix is combined with the name of a subprogram, but you can
10216specify a prefix that ends with a slash if you wish.
10217
f0523f02 10218If @env{GCC_EXEC_PREFIX} is not set, GCC will attempt to figure out
0deb20df
TT
10219an appropriate prefix to use based on the pathname it was invoked with.
10220
0c2d1a2a 10221If GCC cannot find the subprogram using the specified prefix, it
74291a4b
MM
10222tries looking in the usual places for the subprogram.
10223
bedc7537 10224The default value of @env{GCC_EXEC_PREFIX} is
74291a4b
MM
10225@file{@var{prefix}/lib/gcc-lib/} where @var{prefix} is the value
10226of @code{prefix} when you ran the @file{configure} script.
10227
630d3d5a 10228Other prefixes specified with @option{-B} take precedence over this prefix.
74291a4b
MM
10229
10230This prefix is also used for finding files such as @file{crt0.o} that are
10231used for linking.
10232
10233In addition, the prefix is used in an unusual way in finding the
10234directories to search for header files. For each of the standard
10235directories whose name normally begins with @samp{/usr/local/lib/gcc-lib}
bedc7537 10236(more precisely, with the value of @env{GCC_INCLUDE_DIR}), GCC tries
74291a4b 10237replacing that beginning with the specified prefix to produce an
630d3d5a 10238alternate directory name. Thus, with @option{-Bfoo/}, GCC will search
74291a4b
MM
10239@file{foo/bar} where it would normally search @file{/usr/local/lib/bar}.
10240These alternate directories are searched first; the standard directories
10241come next.
10242
10243@item COMPILER_PATH
10244@findex COMPILER_PATH
bedc7537
NC
10245The value of @env{COMPILER_PATH} is a colon-separated list of
10246directories, much like @env{PATH}. GCC tries the directories thus
74291a4b 10247specified when searching for subprograms, if it can't find the
bedc7537 10248subprograms using @env{GCC_EXEC_PREFIX}.
74291a4b
MM
10249
10250@item LIBRARY_PATH
10251@findex LIBRARY_PATH
bedc7537
NC
10252The value of @env{LIBRARY_PATH} is a colon-separated list of
10253directories, much like @env{PATH}. When configured as a native compiler,
0c2d1a2a 10254GCC tries the directories thus specified when searching for special
bedc7537 10255linker files, if it can't find them using @env{GCC_EXEC_PREFIX}. Linking
0c2d1a2a 10256using GCC also uses these directories when searching for ordinary
630d3d5a
JM
10257libraries for the @option{-l} option (but directories specified with
10258@option{-L} come first).
74291a4b
MM
10259
10260@item C_INCLUDE_PATH
10261@itemx CPLUS_INCLUDE_PATH
10262@itemx OBJC_INCLUDE_PATH
10263@findex C_INCLUDE_PATH
10264@findex CPLUS_INCLUDE_PATH
10265@findex OBJC_INCLUDE_PATH
10266@c @itemx OBJCPLUS_INCLUDE_PATH
10267These environment variables pertain to particular languages. Each
10268variable's value is a colon-separated list of directories, much like
bedc7537 10269@env{PATH}. When GCC searches for header files, it tries the
74291a4b 10270directories listed in the variable for the language you are using, after
630d3d5a 10271the directories specified with @option{-I} but before the standard header
74291a4b
MM
10272file directories.
10273
10274@item DEPENDENCIES_OUTPUT
10275@findex DEPENDENCIES_OUTPUT
10276@cindex dependencies for make as output
10277If this variable is set, its value specifies how to output dependencies
10278for Make based on the header files processed by the compiler. This
630d3d5a 10279output looks much like the output from the @option{-M} option
74291a4b
MM
10280(@pxref{Preprocessor Options}), but it goes to a separate file, and is
10281in addition to the usual results of compilation.
10282
bedc7537 10283The value of @env{DEPENDENCIES_OUTPUT} can be just a file name, in
74291a4b
MM
10284which case the Make rules are written to that file, guessing the target
10285name from the source file name. Or the value can have the form
10286@samp{@var{file} @var{target}}, in which case the rules are written to
10287file @var{file} using @var{target} as the target name.
56f48ce9
DB
10288
10289@item LANG
10290@findex LANG
10291@cindex locale definition
767094dd 10292This variable is used to pass locale information to the compiler. One way in
56f48ce9
DB
10293which this information is used is to determine the character set to be used
10294when character literals, string literals and comments are parsed in C and C++.
10295When the compiler is configured to allow multibyte characters,
bedc7537 10296the following values for @env{LANG} are recognized:
56f48ce9 10297
2642624b 10298@table @samp
56f48ce9
DB
10299@item C-JIS
10300Recognize JIS characters.
10301@item C-SJIS
10302Recognize SJIS characters.
10303@item C-EUCJP
10304Recognize EUCJP characters.
10305@end table
10306
bedc7537 10307If @env{LANG} is not defined, or if it has some other value, then the
56f48ce9
DB
10308compiler will use mblen and mbtowc as defined by the default locale to
10309recognize and translate multibyte characters.
74291a4b
MM
10310@end table
10311
9d86bffc
JM
10312@c man end
10313
74291a4b
MM
10314@node Running Protoize
10315@section Running Protoize
10316
161d7b59 10317The program @code{protoize} is an optional part of GCC@. You can use
c1030c7c 10318it to add prototypes to a program, thus converting the program to ISO
74291a4b
MM
10319C in one respect. The companion program @code{unprotoize} does the
10320reverse: it removes argument types from any prototypes that are found.
10321
10322When you run these programs, you must specify a set of source files as
10323command line arguments. The conversion programs start out by compiling
10324these files to see what functions they define. The information gathered
10325about a file @var{foo} is saved in a file named @file{@var{foo}.X}.
10326
10327After scanning comes actual conversion. The specified files are all
10328eligible to be converted; any files they include (whether sources or
10329just headers) are eligible as well.
10330
10331But not all the eligible files are converted. By default,
10332@code{protoize} and @code{unprotoize} convert only source and header
10333files in the current directory. You can specify additional directories
630d3d5a 10334whose files should be converted with the @option{-d @var{directory}}
74291a4b 10335option. You can also specify particular files to exclude with the
630d3d5a 10336@option{-x @var{file}} option. A file is converted if it is eligible, its
74291a4b
MM
10337directory name matches one of the specified directory names, and its
10338name within the directory has not been excluded.
10339
10340Basic conversion with @code{protoize} consists of rewriting most
10341function definitions and function declarations to specify the types of
10342the arguments. The only ones not rewritten are those for varargs
10343functions.
10344
10345@code{protoize} optionally inserts prototype declarations at the
10346beginning of the source file, to make them available for any calls that
10347precede the function's definition. Or it can insert prototype
10348declarations with block scope in the blocks where undeclared functions
10349are called.
10350
10351Basic conversion with @code{unprotoize} consists of rewriting most
10352function declarations to remove any argument types, and rewriting
c1030c7c 10353function definitions to the old-style pre-ISO form.
74291a4b
MM
10354
10355Both conversion programs print a warning for any function declaration or
10356definition that they can't convert. You can suppress these warnings
630d3d5a 10357with @option{-q}.
74291a4b
MM
10358
10359The output from @code{protoize} or @code{unprotoize} replaces the
10360original source file. The original file is renamed to a name ending
02f52e19 10361with @samp{.save} (for DOS, the saved filename ends in @samp{.sav}
a7db8bbb
MK
10362without the original @samp{.c} suffix). If the @samp{.save} (@samp{.sav}
10363for DOS) file already exists, then the source file is simply discarded.
74291a4b 10364
0c2d1a2a 10365@code{protoize} and @code{unprotoize} both depend on GCC itself to
74291a4b 10366scan the program and collect information about the functions it uses.
0c2d1a2a 10367So neither of these programs will work until GCC is installed.
74291a4b
MM
10368
10369Here is a table of the options you can use with @code{protoize} and
10370@code{unprotoize}. Each option works with both programs unless
10371otherwise stated.
10372
10373@table @code
10374@item -B @var{directory}
10375Look for the file @file{SYSCALLS.c.X} in @var{directory}, instead of the
10376usual directory (normally @file{/usr/local/lib}). This file contains
10377prototype information about standard system functions. This option
10378applies only to @code{protoize}.
10379
10380@item -c @var{compilation-options}
10381Use @var{compilation-options} as the options when running @code{gcc} to
630d3d5a 10382produce the @samp{.X} files. The special option @option{-aux-info} is
74291a4b
MM
10383always passed in addition, to tell @code{gcc} to write a @samp{.X} file.
10384
10385Note that the compilation options must be given as a single argument to
10386@code{protoize} or @code{unprotoize}. If you want to specify several
10387@code{gcc} options, you must quote the entire set of compilation options
10388to make them a single word in the shell.
10389
10390There are certain @code{gcc} arguments that you cannot use, because they
630d3d5a
JM
10391would produce the wrong kind of output. These include @option{-g},
10392@option{-O}, @option{-c}, @option{-S}, and @option{-o} If you include these in
74291a4b
MM
10393the @var{compilation-options}, they are ignored.
10394
10395@item -C
a7db8bbb 10396Rename files to end in @samp{.C} (@samp{.cc} for DOS-based file
02f52e19 10397systems) instead of @samp{.c}. This is convenient if you are converting
ee77eda5 10398a C program to C++. This option applies only to @code{protoize}.
74291a4b
MM
10399
10400@item -g
10401Add explicit global declarations. This means inserting explicit
10402declarations at the beginning of each source file for each function
10403that is called in the file and was not declared. These declarations
10404precede the first function definition that contains a call to an
10405undeclared function. This option applies only to @code{protoize}.
10406
10407@item -i @var{string}
10408Indent old-style parameter declarations with the string @var{string}.
10409This option applies only to @code{protoize}.
10410
10411@code{unprotoize} converts prototyped function definitions to old-style
10412function definitions, where the arguments are declared between the
10413argument list and the initial @samp{@{}. By default, @code{unprotoize}
10414uses five spaces as the indentation. If you want to indent with just
630d3d5a 10415one space instead, use @option{-i " "}.
74291a4b
MM
10416
10417@item -k
10418Keep the @samp{.X} files. Normally, they are deleted after conversion
10419is finished.
10420
10421@item -l
630d3d5a 10422Add explicit local declarations. @code{protoize} with @option{-l} inserts
74291a4b
MM
10423a prototype declaration for each function in each block which calls the
10424function without any declaration. This option applies only to
10425@code{protoize}.
10426
10427@item -n
10428Make no real changes. This mode just prints information about the conversions
630d3d5a 10429that would have been done without @option{-n}.
74291a4b
MM
10430
10431@item -N
10432Make no @samp{.save} files. The original files are simply deleted.
10433Use this option with caution.
10434
10435@item -p @var{program}
10436Use the program @var{program} as the compiler. Normally, the name
10437@file{gcc} is used.
10438
10439@item -q
10440Work quietly. Most warnings are suppressed.
10441
10442@item -v
630d3d5a 10443Print the version number, just like @option{-v} for @code{gcc}.
74291a4b
MM
10444@end table
10445
10446If you need special compiler options to compile one of your program's
10447source files, then you should generate that file's @samp{.X} file
10448specially, by running @code{gcc} on that source file with the
630d3d5a 10449appropriate options and the option @option{-aux-info}. Then run
74291a4b
MM
10450@code{protoize} on the entire set of files. @code{protoize} will use
10451the existing @samp{.X} file because it is newer than the source file.
10452For example:
10453
10454@example
b1018de6 10455gcc -Dfoo=bar file1.c -aux-info file1.X
74291a4b
MM
10456protoize *.c
10457@end example
10458
10459@noindent
10460You need to include the special files along with the rest in the
10461@code{protoize} command, even though their @samp{.X} files already
10462exist, because otherwise they won't get converted.
10463
10464@xref{Protoize Caveats}, for more information on how to use
10465@code{protoize} successfully.
This page took 3.272324 seconds and 5 git commands to generate.