]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/gcc/gcc.1
This commit was generated by cvs2svn to compensate for changes in r150765,
[FreeBSD/FreeBSD.git] / contrib / gcc / gcc.1
1 .\" $FreeBSD$
2 .\" Copyright (c) 1991, 1992, 1993, 1994 Free Software Foundation    -*-Text-*-
3 .\" See section COPYING for conditions for redistribution
4 .\"
5 .\" Set up \*(lq, \*(rq if -man hasn't already set it up.
6 .if @@\*(lq@ \{\
7 .       ds lq "
8 .       if t .ds lq ``
9 .       if !@@\(lq@ .ds lq "\(lq
10 .\}
11 .if @@\*(rq@ \{\
12 .       ds rq "
13 .       if t .ds rq ''
14 .       if !@@\(rq@ .ds rq "\(rq
15 .\}
16 .de Id
17 .ds Rv \\$3
18 .ds Dt \\$4
19 ..
20 .de Sp
21 .if n .sp
22 .if t .sp 0.4
23 ..
24 .Id $Id: gcc.1,v 1.9 1998/12/16 20:55:57 law Exp $
25 .TH GCC 1 "\*(Dt" "GNU Tools" "GNU Tools"
26 .SH NAME
27 gcc, g++ \- GNU project C and C++ Compiler
28 .SH SYNOPSIS
29 .B gcc
30 .RI "[ " option " | " filename " ].\|.\|."
31 .br
32 .B g++
33 .RI "[ " option " | " filename " ].\|.\|."
34 .SH WARNING
35 The information in this man page is an extract from the full
36 documentation of the GNU C compiler, and is limited to the meaning of
37 the options.
38 .PP
39 This man page is not kept up to date except when volunteers want to
40 maintain it.  If you find a discrepancy between the man page and the
41 software, please check the Info file, which is the authoritative
42 documentation.
43 .PP
44 If we find that the things in this man page that are out of date cause
45 significant confusion or complaints, we will stop distributing the man
46 page.  The alternative, updating the man page when we update the Info
47 file, is impossible because the rest of the work of maintaining GNU CC
48 leaves us no time for that.  The GNU project regards man pages as
49 obsolete and should not let them take time away from other things.
50 .PP
51 For complete and current documentation, refer to the Info file `\|\c
52 .B gcc\c
53 \&\|' or the manual
54 .I
55 Using and Porting GNU CC (for version 2.0)\c
56 \&.  Both are made from the Texinfo source file
57 .BR gcc.texinfo .
58 .SH DESCRIPTION
59 The C and C++ compilers are integrated.  Both process input files
60 through one or more of four stages: preprocessing, compilation,
61 assembly, and linking.  Source filename suffixes identify the source
62 language, but which name you use for the compiler governs default
63 assumptions:
64 .TP
65 .B gcc
66 assumes preprocessed (\c
67 .B .i\c
68 \&) files are C and assumes C style linking.
69 .TP
70 .B g++
71 assumes preprocessed (\c
72 .B .i\c
73 \&) files are C++ and assumes C++ style linking.
74 .PP
75 Suffixes of source file names indicate the language and kind of
76 processing to be done:
77 .Sp
78 .nf
79 .ta \w'\fB.cxx\fP  'u
80 \&\fB.c\fP      C source; preprocess, compile, assemble
81 \&\fB.C\fP      C++ source; preprocess, compile, assemble
82 \&\fB.cc\fP     C++ source; preprocess, compile, assemble
83 \&\fB.cxx\fP    C++ source; preprocess, compile, assemble
84 \&\fB.m\fP      Objective-C source; preprocess, compile, assemble
85 \&\fB.i\fP      preprocessed C; compile, assemble
86 \&\fB.ii\fP     preprocessed C++; compile, assemble
87 \&\fB.s\fP      Assembler source; assemble
88 \&\fB.S\fP      Assembler source; preprocess, assemble
89 \&\fB.h\fP      Preprocessor file; not usually named on command line
90 .Sp
91 .fi
92 Files with other suffixes are passed to the linker.  Common cases include:
93 .Sp
94 .nf
95 \&\fB.o\fP      Object file
96 \&\fB.a\fP      Archive file
97 .br
98 .fi
99 .Sp
100 Linking is always the last stage unless you use one of the
101 .BR \-c ,
102 .BR \-S ,
103 or
104 .B \-E
105 options to avoid it (or unless compilation errors stop the whole
106 process).  For the link stage, all
107 .B .o
108 files corresponding to source files,
109 .B \-l
110 libraries, unrecognized filenames (including named
111 .B .o
112 object files and
113 .B .a
114 archives)
115 are passed to the linker in command-line order.
116 .SH OPTIONS
117 Options must be separate: `\|\c
118 .B \-dr\c
119 \&\|' is quite different from `\|\c
120 .B \-d \-r
121 \&\|'.
122 .PP
123 Most `\|\c
124 .B \-f\c
125 \&\|' and `\|\c
126 .B \-W\c
127 \&\|' options have two contrary forms:
128 .BI \-f name
129 and
130 .BI \-fno\- name\c
131 \& (or
132 .BI \-W name
133 and
134 .BI \-Wno\- name\c
135 \&).  Only the non-default forms are shown here.
136 .PP
137 Here is a summary of all the options, grouped by type.  Explanations are
138 in the following sections.
139 .hy 0
140 .na
141 .TP
142 .B Overall Options
143 .br
144 \-c
145 \-S
146 \-E
147 .RI "\-o " file
148 \-pipe
149 \-v
150 .RI "\-x " language
151 .TP
152 .B Language Options
153 \-ansi
154 \-fall\-virtual
155 \-fcond\-mismatch
156 \-fdollars\-in\-identifiers
157 \-fenum\-int\-equiv
158 \-fexternal\-templates
159 \-fno\-asm
160 \-fno\-builtin
161 \-fhosted
162 \-fno\-hosted
163 \-ffreestanding
164 \-fno\-freestanding
165 \-fno\-strict\-prototype
166 \-fsigned\-bitfields
167 \-fsigned\-char
168 \-fthis\-is\-variable
169 \-funsigned\-bitfields
170 \-funsigned\-char
171 \-fwritable\-strings
172 \-traditional
173 \-traditional\-cpp
174 \-trigraphs
175 .TP
176 .B Warning Options
177 \-fsyntax\-only
178 \-pedantic
179 \-pedantic\-errors
180 \-w
181 \-W
182 \-Wall
183 \-Waggregate\-return
184 \-Wcast\-align
185 \-Wcast\-qual
186 \-Wchar\-subscript
187 \-Wcomment
188 \-Wconversion
189 \-Wenum\-clash
190 \-Werror
191 \-Wformat
192 .RI \-Wid\-clash\- len
193 \-Wimplicit
194 \-Wimplicit\-int
195 \-Wimplicit\-function\-declaration
196 \-Winline
197 \-Wlong\-long
198 \-Wmain
199 \-Wmissing\-prototypes
200 \-Wmissing\-declarations
201 \-Wnested\-externs
202 \-Wno\-import
203 \-Wparentheses
204 \-Wpointer\-arith
205 \-Wredundant\-decls
206 \-Wreturn\-type
207 \-Wshadow
208 \-Wstrict\-prototypes
209 \-Wswitch
210 \-Wtemplate\-debugging
211 \-Wtraditional
212 \-Wtrigraphs
213 \-Wuninitialized
214 \-Wunused
215 \-Wwrite\-strings
216 .TP
217 .B Debugging Options
218 \-a
219 .RI \-d letters
220 \-fpretend\-float
221 \-g
222 .RI \-g level
223 \-gcoff
224 \-gxcoff
225 \-gxcoff+
226 \-gdwarf
227 \-gdwarf+
228 \-gstabs
229 \-gstabs+
230 \-ggdb
231 \-p
232 \-pg
233 \-save\-temps
234 .RI \-print\-file\-name= library
235 \-print\-libgcc\-file\-name
236 .RI \-print\-prog\-name= program
237 .TP
238 .B Optimization Options
239 \-fcaller\-saves
240 \-fcse\-follow\-jumps
241 \-fcse\-skip\-blocks
242 \-fdelayed\-branch
243 \-felide\-constructors
244 \-fexpensive\-optimizations
245 \-ffast\-math
246 \-ffloat\-store
247 \-fforce\-addr
248 \-fforce\-mem
249 \-finline\-functions
250 \-fkeep\-inline\-functions
251 \-fmemoize\-lookups
252 \-fno\-default\-inline
253 \-fno\-defer\-pop
254 \-fno\-function\-cse
255 \-fno\-inline
256 \-fno\-peephole
257 \-fomit\-frame\-pointer
258 \-frerun\-cse\-after\-loop
259 \-fschedule\-insns
260 \-fschedule\-insns2
261 \-fstrength\-reduce
262 \-fthread\-jumps
263 \-funroll\-all\-loops
264 \-funroll\-loops
265 \-O
266 \-O2
267 \-O3
268 \-O0
269 \-Os
270 .TP
271 .B Preprocessor Options
272 .RI \-A assertion
273 \-C
274 \-dD
275 \-dM
276 \-dN
277 .RI \-D macro [\|= defn \|]
278 \-E
279 \-H
280 .RI "\-idirafter " dir
281 .RI "\-include " file
282 .RI "\-imacros " file
283 .RI "\-iprefix " file
284 .RI "\-iwithprefix " dir
285 \-M
286 \-MD
287 \-MM
288 \-MMD
289 \-nostdinc
290 \-P
291 .RI \-U macro
292 \-undef
293 .TP
294 .B Assembler Option
295 .RI \-Wa, option
296 .TP
297 .B Linker Options
298 .RI \-l library
299 \-nostartfiles
300 \-nostdlib
301 \-static
302 \-shared
303 \-symbolic
304 .RI "\-Xlinker\ " option
305 .RI \-Wl, option
306 .RI "\-u " symbol
307 .TP
308 .B Directory Options
309 .RI \-B prefix
310 .RI \-I dir
311 \-I\-
312 .RI \-L dir
313 .TP
314 .B Target Options
315 .RI "\-b  " machine
316 .RI "\-V " version
317 .TP
318 .B Configuration Dependent Options
319 .I M680x0\ Options
320 .br
321 \-m68000
322 \-m68020
323 \-m68020\-40
324 \-m68030
325 \-m68040
326 \-m68881
327 \-mbitfield
328 \-mc68000
329 \-mc68020
330 \-mfpa
331 \-mnobitfield
332 \-mrtd
333 \-mshort
334 \-msoft\-float
335 .Sp
336 .I VAX Options
337 .br
338 \-mg
339 \-mgnu
340 \-munix
341 .Sp
342 .I SPARC Options
343 .br
344 \-mepilogue
345 \-mfpu
346 \-mhard\-float
347 \-mno\-fpu
348 \-mno\-epilogue
349 \-msoft\-float
350 \-msparclite
351 \-mv8
352 \-msupersparc
353 \-mcypress
354 .Sp
355 .I Convex Options
356 .br
357 \-margcount
358 \-mc1
359 \-mc2
360 \-mnoargcount
361 .Sp
362 .I AMD29K Options
363 .br
364 \-m29000
365 \-m29050
366 \-mbw
367 \-mdw
368 \-mkernel\-registers
369 \-mlarge
370 \-mnbw
371 \-mnodw
372 \-msmall
373 \-mstack\-check
374 \-muser\-registers
375 .Sp
376 .I M88K Options
377 .br
378 \-m88000
379 \-m88100
380 \-m88110
381 \-mbig\-pic
382 \-mcheck\-zero\-division
383 \-mhandle\-large\-shift
384 \-midentify\-revision
385 \-mno\-check\-zero\-division
386 \-mno\-ocs\-debug\-info
387 \-mno\-ocs\-frame\-position
388 \-mno\-optimize\-arg\-area
389 \-mno\-serialize\-volatile
390 \-mno\-underscores
391 \-mocs\-debug\-info
392 \-mocs\-frame\-position
393 \-moptimize\-arg\-area
394 \-mserialize\-volatile
395 .RI \-mshort\-data\- num
396 \-msvr3
397 \-msvr4
398 \-mtrap\-large\-shift
399 \-muse\-div\-instruction
400 \-mversion\-03.00
401 \-mwarn\-passed\-structs
402 .Sp
403 .I RS6000 Options
404 .br
405 \-mfp\-in\-toc
406 \-mno\-fop\-in\-toc
407 .Sp
408 .I RT Options
409 .br
410 \-mcall\-lib\-mul
411 \-mfp\-arg\-in\-fpregs
412 \-mfp\-arg\-in\-gregs
413 \-mfull\-fp\-blocks
414 \-mhc\-struct\-return
415 \-min\-line\-mul
416 \-mminimum\-fp\-blocks
417 \-mnohc\-struct\-return
418 .Sp
419 .I MIPS Options
420 .br
421 \-mcpu=\fIcpu type\fP
422 \-mips2
423 \-mips3
424 \-mint64
425 \-mlong64
426 \-mlonglong128
427 \-mmips\-as
428 \-mgas
429 \-mrnames
430 \-mno\-rnames
431 \-mgpopt
432 \-mno\-gpopt
433 \-mstats
434 \-mno\-stats
435 \-mmemcpy
436 \-mno\-memcpy
437 \-mno\-mips\-tfile
438 \-mmips\-tfile
439 \-msoft\-float
440 \-mhard\-float
441 \-mabicalls
442 \-mno\-abicalls
443 \-mhalf\-pic
444 \-mno\-half\-pic
445 \-G \fInum\fP
446 \-nocpp
447 .Sp
448 .I i386 Options
449 .br
450 \-m386
451 \-m486
452 \-mpentium
453 \-mpentiumpro
454 \-mno\-486
455 \-mcpu=\fIcpu type\fP
456 \-march=\fIcpu type\fP
457 \-msoft\-float
458 \-mrtd
459 \-mregparm
460 \-msvr3\-shlib
461 \-mno\-ieee\-fp
462 \-mno\-fp\-ret\-in\-387
463 \-mfancy\-math\-387
464 \-mno\-wide\-multiply
465 \-mdebug\-addr
466 \-mno\-move
467 \-mprofiler\-epilogue
468 \-reg\-alloc=LIST
469 .Sp
470 .I HPPA Options
471 .br
472 \-mpa\-risc\-1\-0
473 \-mpa\-risc\-1\-1
474 \-mkernel
475 \-mshared\-libs
476 \-mno\-shared\-libs
477 \-mlong\-calls
478 \-mdisable\-fpregs
479 \-mdisable\-indexing
480 \-mtrailing\-colon
481 .Sp
482 .I i960 Options
483 .br
484 \-m\fIcpu-type\fP
485 \-mnumerics
486 \-msoft\-float
487 \-mleaf\-procedures
488 \-mno\-leaf\-procedures
489 \-mtail\-call
490 \-mno\-tail\-call
491 \-mcomplex\-addr
492 \-mno\-complex\-addr
493 \-mcode\-align
494 \-mno\-code\-align
495 \-mic\-compat
496 \-mic2.0\-compat
497 \-mic3.0\-compat
498 \-masm\-compat
499 \-mintel\-asm
500 \-mstrict\-align
501 \-mno\-strict\-align
502 \-mold\-align
503 \-mno\-old\-align
504 .Sp
505 .I DEC Alpha Options
506 .br
507 \-mfp\-regs
508 \-mno\-fp\-regs
509 \-mno\-soft\-float
510 \-msoft\-float
511 .Sp
512 .I System V Options
513 .br
514 \-G
515 \-Qy
516 \-Qn
517 .RI \-YP, paths
518 .RI \-Ym, dir
519 .TP
520 .B Code Generation Options
521 .RI \-fcall\-saved\- reg
522 .RI \-fcall\-used\- reg
523 .RI \-ffixed\- reg
524 \-finhibit\-size\-directive
525 \-fnonnull\-objects
526 \-fno\-common
527 \-fno\-ident
528 \-fno\-gnu\-linker
529 \-fpcc\-struct\-return
530 \-fpic
531 \-fPIC
532 \-freg\-struct\-return
533 \-fshared\-data
534 \-fshort\-enums
535 \-fshort\-double
536 \-fvolatile
537 \-fvolatile\-global
538 \-fverbose\-asm
539 .ad b
540 .hy 1
541 .SH FreeBSD SPECIFIC OPTIONS
542 .TP
543 .BI "\-pthread"
544 Link a user-threaded process against libc_r instead of libc.
545 .SH OVERALL OPTIONS
546 .TP
547 .BI "\-x " "language"
548 Specify explicitly the
549 .I language\c
550 \& for the following input files (rather than choosing a default based
551 on the file name suffix) .  This option applies to all following input
552 files until the next `\|\c
553 .B \-x\c
554 \&\|' option.  Possible values of \c
555 .I language\c
556 \& are
557 `\|\c
558 .B c\c
559 \&\|', `\|\c
560 .B objective\-c\c
561 \&\|', `\|\c
562 .B c\-header\c
563 \&\|', `\|\c
564 .B c++\c
565 \&\|',
566 `\|\c
567 .B cpp\-output\c
568 \&\|', `\|\c
569 .B assembler\c
570 \&\|', and `\|\c
571 .B assembler\-with\-cpp\c
572 \&\|'.
573 .TP
574 .B \-x none
575 Turn off any specification of a language, so that subsequent files are
576 handled according to their file name suffixes (as they are if `\|\c
577 .B \-x\c
578 \&\|'
579 has not been used at all).
580 .PP
581 If you want only some of the four stages (preprocess, compile,
582 assemble, link), you can use
583 `\|\c
584 .B \-x\c
585 \&\|' (or filename suffixes) to tell \c
586 .B gcc\c
587 \& where to start, and
588 one of the options `\|\c
589 .B \-c\c
590 \&\|', `\|\c
591 .B \-S\c
592 \&\|', or `\|\c
593 .B \-E\c
594 \&\|' to say where
595 .B gcc\c
596 \& is to stop.  Note that some combinations (for example,
597 `\|\c
598 .B \-x cpp\-output \-E\c
599 \&\|') instruct \c
600 .B gcc\c
601 \& to do nothing at all.
602 .TP
603 .B \-c
604 Compile or assemble the source files, but do not link.  The compiler
605 output is an object file corresponding to each source file.
606 .Sp
607 By default, GCC makes the object file name for a source file by replacing
608 the suffix `\|\c
609 .B .c\c
610 \&\|', `\|\c
611 .B .i\c
612 \&\|', `\|\c
613 .B .s\c
614 \&\|', etc., with `\|\c
615 .B .o\c
616 \&\|'.  Use
617 .B \-o\c
618 \& to select another name.
619 .Sp
620 GCC ignores any unrecognized input files (those that do not require
621 compilation or assembly) with the
622 .B \-c
623 option.
624 .TP
625 .B \-S
626 Stop after the stage of compilation proper; do not assemble.  The output
627 is an assembler code file for each non-assembler input
628 file specified.
629 .Sp
630 By default, GCC makes the assembler file name for a source file by
631 replacing the suffix `\|\c
632 .B .c\c
633 \&\|', `\|\c
634 .B .i\c
635 \&\|', etc., with `\|\c
636 .B .s\c
637 \&\|'.  Use
638 .B \-o\c
639 \& to select another name.
640 .Sp
641 GCC ignores any input files that don't require compilation.
642 .TP
643 .B \-E
644 Stop after the preprocessing stage; do not run the compiler proper.  The
645 output is preprocessed source code, which is sent to the
646 standard output.
647 .Sp
648 GCC ignores input files which don't require preprocessing.
649 .TP
650 .BI "\-o " file
651 Place output in file \c
652 .I file\c
653 \&.  This applies regardless to whatever
654 sort of output GCC is producing, whether it be an executable file,
655 an object file, an assembler file or preprocessed C code.
656 .Sp
657 Since only one output file can be specified, it does not make sense to
658 use `\|\c
659 .B \-o\c
660 \&\|' when compiling more than one input file, unless you are
661 producing an executable file as output.
662 .Sp
663 If you do not specify `\|\c
664 .B \-o\c
665 \&\|', the default is to put an executable file
666 in `\|\c
667 .B a.out\c
668 \&\|', the object file for `\|\c
669 .I source\c
670 .B \&.\c
671 .I suffix\c
672 \&\c
673 \&\|' in
674 `\|\c
675 .I source\c
676 .B \&.o\c
677 \&\|', its assembler file in `\|\c
678 .I source\c
679 .B \&.s\c
680 \&\|', and
681 all preprocessed C source on standard output.
682 .TP
683 .B \-v
684 Print (on standard error output) the commands executed to run the stages
685 of compilation.  Also print the version number of the compiler driver
686 program and of the preprocessor and the compiler proper.
687 .TP
688 .B \-pipe
689 Use pipes rather than temporary files for communication between the
690 various stages of compilation.  This fails to work on some systems where
691 the assembler cannot read from a pipe; but the GNU assembler has
692 no trouble.
693 .PP
694 .SH LANGUAGE OPTIONS
695 The following options control the dialect of C that the compiler
696 accepts:
697 .TP
698 .B \-ansi
699 Support all ANSI standard C programs.
700 .Sp
701 This turns off certain features of GNU C that are incompatible with
702 ANSI C, such as the \c
703 .B asm\c
704 \&, \c
705 .B inline\c
706 \& and \c
707 .B typeof
708 keywords, and predefined macros such as \c
709 .B unix\c
710 \& and \c
711 .B vax
712 that identify the type of system you are using.  It also enables the
713 undesirable and rarely used ANSI trigraph feature, and disallows `\|\c
714 .B $\c
715 \&\|' as part of identifiers.
716 .Sp
717 The alternate keywords \c
718 .B _\|_asm_\|_\c
719 \&, \c
720 .B _\|_extension_\|_\c
721 \&,
722 .B _\|_inline_\|_\c
723 \& and \c
724 .B _\|_typeof_\|_\c
725 \& continue to work despite
726 `\|\c
727 .B \-ansi\c
728 \&\|'.  You would not want to use them in an ANSI C program, of
729 course, but it is useful to put them in header files that might be included
730 in compilations done with `\|\c
731 .B \-ansi\c
732 \&\|'.  Alternate predefined macros
733 such as \c
734 .B _\|_unix_\|_\c
735 \& and \c
736 .B _\|_vax_\|_\c
737 \& are also available, with or
738 without `\|\c
739 .B \-ansi\c
740 \&\|'.
741 .Sp
742 The `\|\c
743 .B \-ansi\c
744 \&\|' option does not cause non-ANSI programs to be
745 rejected gratuitously.  For that, `\|\c
746 .B \-pedantic\c
747 \&\|' is required in
748 addition to `\|\c
749 .B \-ansi\c
750 \&\|'.
751 .Sp
752 The preprocessor predefines a macro \c
753 .B _\|_STRICT_ANSI_\|_\c
754 \& when you use the `\|\c
755 .B \-ansi\c
756 \&\|'
757 option.  Some header files may notice this macro and refrain
758 from declaring certain functions or defining certain macros that the
759 ANSI standard doesn't call for; this is to avoid interfering with any
760 programs that might use these names for other things.
761 .TP
762 .B \-fno\-asm
763 Do not recognize \c
764 .B asm\c
765 \&, \c
766 .B inline\c
767 \& or \c
768 .B typeof\c
769 \& as a
770 keyword.  These words may then be used as identifiers.  You can
771 use \c
772 .B _\|_asm_\|_\c
773 \&, \c
774 .B _\|_inline_\|_\c
775 \& and \c
776 .B _\|_typeof_\|_\c
777 \& instead.
778 `\|\c
779 .B \-ansi\c
780 \&\|' implies `\|\c
781 .B \-fno\-asm\c
782 \&\|'.
783 .TP
784 .B \-fno\-builtin
785 Don't recognize built-in functions that do not begin with two leading
786 underscores.  Currently, the functions affected include \c
787 .B _exit\c
788 \&,
789 .B abort\c
790 \&, \c
791 .B abs\c
792 \&, \c
793 .B alloca\c
794 \&, \c
795 .B cos\c
796 \&, \c
797 .B exit\c
798 \&,
799 .B fabs\c
800 \&, \c
801 .B labs\c
802 \&, \c
803 .B memcmp\c
804 \&, \c
805 .B memcpy\c
806 \&, \c
807 .B sin\c
808 \&,
809 .B sqrt\c
810 \&, \c
811 .B strcmp\c
812 \&, \c
813 .B strcpy\c
814 \&, and \c
815 .B strlen\c
816 \&.
817 .Sp
818 The `\|\c
819 .B \-ansi\c
820 \&\|' option prevents \c
821 .B alloca\c
822 \& and \c
823 .B _exit\c
824 \& from
825 being builtin functions.
826 .TP
827 .B \-fhosted
828 Compile for a hosted environment; this implies the `\|\c
829 .B \-fbuiltin\c
830 \&\|' option, and implies that suspicious declarations of
831 .B main\c
832 \& should be warned about.
833 .TP
834 .B \-ffreestanding
835 Compile for a freestanding environment; this implies the `\|\c
836 .B \-fno-builtin\c
837 \&\|' option, and implies that
838 .B main\c
839 \& has no special requirements.
840 .TP
841 .B \-fno\-strict\-prototype
842 Treat a function declaration with no arguments, such as `\|\c
843 .B int foo
844 ();\c
845 \&\|', as C would treat it\(em\&as saying nothing about the number of
846 arguments or their types (C++ only).  Normally, such a declaration in
847 C++ means that the function \c
848 .B foo\c
849 \& takes no arguments.
850 .TP
851 .B \-trigraphs
852 Support ANSI C trigraphs.  The `\|\c
853 .B \-ansi\c
854 \&\|' option implies `\|\c
855 .B \-trigraphs\c
856 \&\|'.
857 .TP
858 .B \-traditional
859 Attempt to support some aspects of traditional C compilers.
860 For details, see the GNU C Manual; the duplicate list here
861 has been deleted so that we won't get complaints when it
862 is out of date.
863 .Sp
864 But one note about C++ programs only (not C).  `\|\c
865 .B \-traditional\c
866 \&\|' has one additional effect for C++: assignment to
867 .B this
868 is permitted.  This is the same as the effect of `\|\c
869 .B \-fthis\-is\-variable\c
870 \&\|'.
871 .TP
872 .B \-traditional\-cpp
873 Attempt to support some aspects of traditional C preprocessors.
874 This includes the items that specifically mention the preprocessor above,
875 but none of the other effects of `\|\c
876 .B \-traditional\c
877 \&\|'.
878 .TP
879 .B \-fdollars\-in\-identifiers
880 Permit the use of `\|\c
881 .B $\c
882 \&\|' in identifiers (C++ only).  You can also use
883 `\|\c
884 .B \-fno\-dollars\-in\-identifiers\c
885 \&\|' to explicitly prohibit use of
886 `\|\c
887 .B $\c
888 \&\|'.  (GNU C++ allows `\|\c
889 .B $\c
890 \&\|' by default on some target systems
891 but not others.)
892 .TP
893 .B \-fenum\-int\-equiv
894 Permit implicit conversion of \c
895 .B int\c
896 \& to enumeration types (C++
897 only).  Normally GNU C++ allows conversion of \c
898 .B enum\c
899 \& to \c
900 .B int\c
901 \&,
902 but not the other way around.
903 .TP
904 .B \-fexternal\-templates
905 Produce smaller code for template declarations, by generating only a
906 single copy of each template function where it is defined (C++ only).
907 To use this option successfully, you must also mark all files that
908 use templates with either `\|\c
909 .B #pragma implementation\c
910 \&\|' (the definition) or
911 `\|\c
912 .B #pragma interface\c
913 \&\|' (declarations).
914
915 When your code is compiled with `\|\c
916 .B \-fexternal\-templates\c
917 \&\|', all
918 template instantiations are external.  You must arrange for all
919 necessary instantiations to appear in the implementation file; you can
920 do this with a \c
921 .B typedef\c
922 \& that references each instantiation needed.
923 Conversely, when you compile using the default option
924 `\|\c
925 .B \-fno\-external\-templates\c
926 \&\|', all template instantiations are
927 explicitly internal.
928 .TP
929 .B \-fall\-virtual
930 Treat all possible member functions as virtual, implicitly.  All
931 member functions (except for constructor functions and
932 .B new
933 or
934 .B delete
935 member operators) are treated as virtual functions of the class where
936 they appear.
937 .Sp
938 This does not mean that all calls to these member functions will be
939 made through the internal table of virtual functions.  Under some
940 circumstances, the compiler can determine that a call to a given
941 virtual function can be made directly; in these cases the calls are
942 direct in any case.
943 .TP
944 .B \-fcond\-mismatch
945 Allow conditional expressions with mismatched types in the second and
946 third arguments.  The value of such an expression is void.
947 .TP
948 .B \-fthis\-is\-variable
949 Permit assignment to \c
950 .B this\c
951 \& (C++ only).  The incorporation of
952 user-defined free store management into C++ has made assignment to
953 `\|\c
954 .B this\c
955 \&\|' an anachronism.  Therefore, by default it is invalid to
956 assign to \c
957 .B this\c
958 \& within a class member function.  However, for
959 backwards compatibility, you can make it valid with
960 `\|\c
961 .B \-fthis-is-variable\c
962 \&\|'.
963 .TP
964 .B \-funsigned\-char
965 Let the type \c
966 .B char\c
967 \& be unsigned, like \c
968 .B unsigned char\c
969 \&.
970 .Sp
971 Each kind of machine has a default for what \c
972 .B char\c
973 \& should
974 be.  It is either like \c
975 .B unsigned char\c
976 \& by default or like
977 .B signed char\c
978 \& by default.
979 .Sp
980 Ideally, a portable program should always use \c
981 .B signed char\c
982 \& or
983 .B unsigned char\c
984 \& when it depends on the signedness of an object.
985 But many programs have been written to use plain \c
986 .B char\c
987 \& and
988 expect it to be signed, or expect it to be unsigned, depending on the
989 machines they were written for.  This option, and its inverse, let you
990 make such a program work with the opposite default.
991 .Sp
992 The type \c
993 .B char\c
994 \& is always a distinct type from each of
995 .B signed char\c
996 \& and \c
997 .B unsigned char\c
998 \&, even though its behavior
999 is always just like one of those two.
1000 .TP
1001 .B \-fsigned\-char
1002 Let the type \c
1003 .B char\c
1004 \& be signed, like \c
1005 .B signed char\c
1006 \&.
1007 .Sp
1008 Note that this is equivalent to `\|\c
1009 .B \-fno\-unsigned\-char\c
1010 \&\|', which is
1011 the negative form of `\|\c
1012 .B \-funsigned\-char\c
1013 \&\|'.  Likewise,
1014 `\|\c
1015 .B \-fno\-signed\-char\c
1016 \&\|' is equivalent to `\|\c
1017 .B \-funsigned\-char\c
1018 \&\|'.
1019 .TP
1020 .B \-fsigned\-bitfields
1021 .TP
1022 .B \-funsigned\-bitfields
1023 .TP
1024 .B \-fno\-signed\-bitfields
1025 .TP
1026 .B \-fno\-unsigned\-bitfields
1027 These options control whether a bitfield is
1028 signed or unsigned, when declared with no explicit `\|\c
1029 .B signed\c
1030 \&\|' or `\|\c
1031 .B unsigned\c
1032 \&\|' qualifier.  By default, such a bitfield is
1033 signed, because this is consistent: the basic integer types such as
1034 .B int\c
1035 \& are signed types.
1036 .Sp
1037 However, when you specify `\|\c
1038 .B \-traditional\c
1039 \&\|', bitfields are all unsigned
1040 no matter what.
1041 .TP
1042 .B \-fwritable\-strings
1043 Store string constants in the writable data segment and don't uniquize
1044 them.  This is for compatibility with old programs which assume they
1045 can write into string constants.  `\|\c
1046 .B \-traditional\c
1047 \&\|' also has this
1048 effect.
1049 .Sp
1050 Writing into string constants is a very bad idea; \*(lqconstants\*(rq should
1051 be constant.
1052 .SH PREPROCESSOR OPTIONS
1053 These options control the C preprocessor, which is run on each C source
1054 file before actual compilation.
1055 .PP
1056 If you use the `\|\c
1057 .B \-E\c
1058 \&\|' option, GCC does nothing except preprocessing.
1059 Some of these options make sense only together with `\|\c
1060 .B \-E\c
1061 \&\|' because
1062 they cause the preprocessor output to be unsuitable for actual
1063 compilation.
1064 .TP
1065 .BI "\-include " "file"
1066 Process \c
1067 .I file\c
1068 \& as input before processing the regular input file.
1069 In effect, the contents of \c
1070 .I file\c
1071 \& are compiled first.  Any `\|\c
1072 .B \-D\c
1073 \&\|'
1074 and `\|\c
1075 .B \-U\c
1076 \&\|' options on the command line are always processed before
1077 `\|\c
1078 .B \-include \c
1079 .I file\c
1080 \&\c
1081 \&\|', regardless of the order in which they are
1082 written.  All the `\|\c
1083 .B \-include\c
1084 \&\|' and `\|\c
1085 .B \-imacros\c
1086 \&\|' options are
1087 processed in the order in which they are written.
1088 .TP
1089 .BI "\-imacros " file
1090 Process \c
1091 .I file\c
1092 \& as input, discarding the resulting output, before
1093 processing the regular input file.  Because the output generated from
1094 .I file\c
1095 \& is discarded, the only effect of `\|\c
1096 .B \-imacros \c
1097 .I file\c
1098 \&\c
1099 \&\|' is to
1100 make the macros defined in \c
1101 .I file\c
1102 \& available for use in the main
1103 input.  The preprocessor evaluates any `\|\c
1104 .B \-D\c
1105 \&\|' and `\|\c
1106 .B \-U\c
1107 \&\|' options
1108 on the command line before processing `\|\c
1109 .B \-imacros\c
1110 .I file\c
1111 \&\|', regardless of the order in
1112 which they are written.  All the `\|\c
1113 .B \-include\c
1114 \&\|' and `\|\c
1115 .B \-imacros\c
1116 \&\|'
1117 options are processed in the order in which they are written.
1118 .TP
1119 .BI "\-idirafter " "dir"
1120 Add the directory \c
1121 .I dir\c
1122 \& to the second include path.  The directories
1123 on the second include path are searched when a header file is not found
1124 in any of the directories in the main include path (the one that
1125 `\|\c
1126 .B \-I\c
1127 \&\|' adds to).
1128 .TP
1129 .BI "\-iprefix " "prefix"
1130 Specify \c
1131 .I prefix\c
1132 \& as the prefix for subsequent `\|\c
1133 .B \-iwithprefix\c
1134 \&\|'
1135 options.
1136 .TP
1137 .BI "\-iwithprefix " "dir"
1138 Add a directory to the second include path.  The directory's name is
1139 made by concatenating \c
1140 .I prefix\c
1141 \& and \c
1142 .I dir\c
1143 \&, where \c
1144 .I prefix
1145 was specified previously with `\|\c
1146 .B \-iprefix\c
1147 \&\|'.
1148 .TP
1149 .B \-nostdinc
1150 Do not search the standard system directories for header files.  Only
1151 the directories you have specified with `\|\c
1152 .B \-I\c
1153 \&\|' options (and the
1154 current directory, if appropriate) are searched.
1155 .Sp
1156 By using both `\|\c
1157 .B \-nostdinc\c
1158 \&\|' and `\|\c
1159 .B \-I\-\c
1160 \&\|', you can limit the include-file search file to only those
1161 directories you specify explicitly.
1162 .TP
1163 .B \-nostdinc++
1164 Do not search for header files in the C++\-specific standard directories,
1165 but do still search the other standard directories.
1166 (This option is used when building `\|\c
1167 .B libg++\c
1168 \&\|'.)
1169 .TP
1170 .B \-undef
1171 Do not predefine any nonstandard macros.  (Including architecture flags).
1172 .TP
1173 .B \-E
1174 Run only the C preprocessor.  Preprocess all the C source files
1175 specified and output the results to standard output or to the
1176 specified output file.
1177 .TP
1178 .B \-C
1179 Tell the preprocessor not to discard comments.  Used with the
1180 `\|\c
1181 .B \-E\c
1182 \&\|' option.
1183 .TP
1184 .B \-P
1185 Tell the preprocessor not to generate `\|\c
1186 .B #line\c
1187 \&\|' commands.
1188 Used with the `\|\c
1189 .B \-E\c
1190 \&\|' option.
1191 .TP
1192 .B \-M\  [ \-MG ]
1193 Tell the preprocessor to output a rule suitable for \c
1194 .B make
1195 describing the dependencies of each object file.  For each source file,
1196 the preprocessor outputs one \c
1197 .B make\c
1198 \&-rule whose target is the object
1199 file name for that source file and whose dependencies are all the files
1200 `\|\c
1201 .B #include\c
1202 \&\|'d in it.  This rule may be a single line or may be
1203 continued with `\|\c
1204 .B \e\c
1205 \&\|'-newline if it is long.  The list of rules is
1206 printed on standard output instead of the preprocessed C program.
1207 .Sp
1208 `\|\c
1209 .B \-M\c
1210 \&\|' implies `\|\c
1211 .B \-E\c
1212 \&\|'.
1213 .Sp
1214 `\|\c
1215 .B \-MG\c
1216 \&\|' says to treat missing header files as generated files and assume \c
1217 they live in the same directory as the source file.  It must be specified \c
1218 in addition to `\|\c
1219 .B \-M\c
1220 \&\|'.
1221 .TP
1222 .B \-MM\  [ \-MG ]
1223 Like `\|\c
1224 .B \-M\c
1225 \&\|' but the output mentions only the user header files
1226 included with `\|\c
1227 .B
1228 #include "\c
1229 .I file\c
1230 .B
1231 \&"\c
1232 \&\|'.  System header files
1233 included with `\|\c
1234 .B
1235 #include <\c
1236 .I file\c
1237 .B
1238 \&>\c
1239 \&\|' are omitted.
1240 .TP
1241 .B \-MD
1242 Like `\|\c
1243 .B \-M\c
1244 \&\|' but the dependency information is written to files with
1245 names made by replacing `\|\c
1246 .B .o\c
1247 \&\|' with `\|\c
1248 .B .d\c
1249 \&\|' at the end of the
1250 output file names.  This is in addition to compiling the file as
1251 specified\(em\&`\|\c
1252 .B \-MD\c
1253 \&\|' does not inhibit ordinary compilation the way
1254 `\|\c
1255 .B \-M\c
1256 \&\|' does.
1257 .Sp
1258 The Mach utility `\|\c
1259 .B md\c
1260 \&\|' can be used to merge the `\|\c
1261 .B .d\c
1262 \&\|' files
1263 into a single dependency file suitable for using with the `\|\c
1264 .B make\c
1265 \&\|'
1266 command.
1267 .TP
1268 .B \-MMD
1269 Like `\|\c
1270 .B \-MD\c
1271 \&\|' except mention only user header files, not system
1272 header files.
1273 .TP
1274 .B \-H
1275 Print the name of each header file used, in addition to other normal
1276 activities.
1277 .TP
1278 .BI "\-A" "question" ( answer )
1279 Assert the answer
1280 .I answer
1281 for
1282 .I question\c
1283 \&, in case it is tested
1284 with a preprocessor conditional such as `\|\c
1285 .BI "#if #" question ( answer )\c
1286 \&\|'.  `\|\c
1287 .B \-A\-\c
1288 \&\|' disables the standard
1289 assertions that normally describe the target machine.
1290 .TP
1291 .BI "\-A" "question"\c
1292 \&(\c
1293 .I answer\c
1294 \&)
1295 Assert the answer \c
1296 .I answer\c
1297 \& for \c
1298 .I question\c
1299 \&, in case it is tested
1300 with a preprocessor conditional such as `\|\c
1301 .B #if
1302 #\c
1303 .I question\c
1304 \&(\c
1305 .I answer\c
1306 \&)\c
1307 \&\|'.  `\|\c
1308 .B \-A-\c
1309 \&\|' disables the standard
1310 assertions that normally describe the target machine.
1311 .TP
1312 .BI \-D macro
1313 Define macro \c
1314 .I macro\c
1315 \& with the string `\|\c
1316 .B 1\c
1317 \&\|' as its definition.
1318 .TP
1319 .BI \-D macro = defn
1320 Define macro \c
1321 .I macro\c
1322 \& as \c
1323 .I defn\c
1324 \&.    All instances of `\|\c
1325 .B \-D\c
1326 \&\|' on
1327 the command line are processed before any `\|\c
1328 .B \-U\c
1329 \&\|' options.
1330 .TP
1331 .BI \-U macro
1332 Undefine macro \c
1333 .I macro\c
1334 \&.  `\|\c
1335 .B \-U\c
1336 \&\|' options are evaluated after all `\|\c
1337 .B \-D\c
1338 \&\|' options, but before any `\|\c
1339 .B \-include\c
1340 \&\|' and `\|\c
1341 .B \-imacros\c
1342 \&\|' options.
1343 .TP
1344 .B \-dM
1345 Tell the preprocessor to output only a list of the macro definitions
1346 that are in effect at the end of preprocessing.  Used with the `\|\c
1347 .B \-E\c
1348 \&\|'
1349 option.
1350 .TP
1351 .B \-dD
1352 Tell the preprocessor to pass all macro definitions into the output, in
1353 their proper sequence in the rest of the output.
1354 .TP
1355 .B \-dN
1356 Like `\|\c
1357 .B \-dD\c
1358 \&\|' except that the macro arguments and contents are omitted.
1359 Only `\|\c
1360 .B #define \c
1361 .I name\c
1362 \&\c
1363 \&\|' is included in the output.
1364 .SH ASSEMBLER OPTION
1365 .TP
1366 .BI "\-Wa," "option"
1367 Pass \c
1368 .I option\c
1369 \& as an option to the assembler.  If \c
1370 .I option
1371 contains commas, it is split into multiple options at the commas.
1372 .SH LINKER OPTIONS
1373 These options come into play when the compiler links object files into
1374 an executable output file.  They are meaningless if the compiler is
1375 not doing a link step.
1376 .TP
1377 .I object-file-name
1378 A file name that does not end in a special recognized suffix is
1379 considered to name an object file or library.  (Object files are
1380 distinguished from libraries by the linker according to the file
1381 contents.)  If GCC does a link step, these object files are used as input
1382 to the linker.
1383 .TP
1384 .BI \-l library
1385 Use the library named \c
1386 .I library\c
1387 \& when linking.
1388 .Sp
1389 The linker searches a standard list of directories for the library,
1390 which is actually a file named `\|\c
1391 .B lib\c
1392 .I library\c
1393 \&.a\c
1394 \&\|'.  The linker
1395 then uses this file as if it had been specified precisely by name.
1396 .Sp
1397 The directories searched include several standard system directories
1398 plus any that you specify with `\|\c
1399 .B \-L\c
1400 \&\|'.
1401 .Sp
1402 Normally the files found this way are library files\(em\&archive files
1403 whose members are object files.  The linker handles an archive file by
1404 scanning through it for members which define symbols that have so far
1405 been referenced but not defined.  However, if the linker finds an
1406 ordinary object file rather than a library, the object file is linked
1407 in the usual fashion.  The only difference between using an `\|\c
1408 .B \-l\c
1409 \&\|' option and specifying a file
1410 name is that `\|\c
1411 .B \-l\c
1412 \&\|' surrounds
1413 .I library
1414 with `\|\c
1415 .B lib\c
1416 \&\|' and `\|\c
1417 .B .a\c
1418 \&\|' and searches several directories.
1419 .TP
1420 .B \-lobjc
1421 You need this special case of the
1422 .B \-l
1423 option in order to link an Objective C program.
1424 .TP
1425 .B \-nostartfiles
1426 Do not use the standard system startup files when linking.
1427 The standard libraries are used normally.
1428 .TP
1429 .B \-nostdlib
1430 Don't use the standard system libraries and startup files when linking.
1431 Only the files you specify will be passed to the linker.
1432 .TP
1433 .B \-static
1434 On systems that support dynamic linking, this prevents linking with the shared
1435 libraries.  On other systems, this option has no effect.
1436 .TP
1437 .B \-shared
1438 Produce a shared object which can then be linked with other objects to
1439 form an executable.  Only a few systems support this option.
1440 .TP
1441 .B \-symbolic
1442 Bind references to global symbols when building a shared object.  Warn
1443 about any unresolved references (unless overridden by the link editor
1444 option `\|\c
1445 .B
1446 \-Xlinker \-z \-Xlinker defs\c
1447 \&\|').  Only a few systems support
1448 this option.
1449 .TP
1450 .BI "\-Xlinker " "option"
1451 Pass \c
1452 .I option
1453 as an option to the linker.  You can use this to
1454 supply system-specific linker options which GNU CC does not know how to
1455 recognize.
1456 .Sp
1457 If you want to pass an option that takes an argument, you must use
1458 `\|\c
1459 .B \-Xlinker\c
1460 \&\|' twice, once for the option and once for the argument.
1461 For example, to pass `\|\c
1462 .B
1463 \-assert definitions\c
1464 \&\|', you must write
1465 `\|\c
1466 .B
1467 \-Xlinker \-assert \-Xlinker definitions\c
1468 \&\|'.  It does not work to write
1469 `\|\c
1470 .B
1471 \-Xlinker "\-assert definitions"\c
1472 \&\|', because this passes the entire
1473 string as a single argument, which is not what the linker expects.
1474 .TP
1475 .BI "\-Wl," "option"
1476 Pass \c
1477 .I option\c
1478 \& as an option to the linker.  If \c
1479 .I option\c
1480 \& contains
1481 commas, it is split into multiple options at the commas.
1482 .TP
1483 .BI "\-u " "symbol"
1484 Pretend the symbol
1485 .I symbol
1486 is undefined, to force linking of
1487 library modules to define it.  You can use `\|\c
1488 .B \-u\c
1489 \&\|' multiple times with
1490 different symbols to force loading of additional library modules.
1491 .SH DIRECTORY OPTIONS
1492 These options specify directories to search for header files, for
1493 libraries and for parts of the compiler:
1494 .TP
1495 .BI "\-I" "dir"
1496 Append directory \c
1497 .I dir\c
1498 \& to the list of directories searched for include files.
1499 .TP
1500 .B \-I\-
1501 Any directories you specify with `\|\c
1502 .B \-I\c
1503 \&\|' options before the `\|\c
1504 .B \-I\-\c
1505 \&\|'
1506 option are searched only for the case of `\|\c
1507 .B
1508 #include "\c
1509 .I file\c
1510 .B
1511 \&"\c
1512 \&\|';
1513 they are not searched for `\|\c
1514 .B
1515 #include <\c
1516 .I file\c
1517 .B
1518 \&>\c
1519 \&\|'.
1520 .Sp
1521 If additional directories are specified with `\|\c
1522 .B \-I\c
1523 \&\|' options after
1524 the `\|\c
1525 .B \-I\-\c
1526 \&\|', these directories are searched for all `\|\c
1527 .B #include\c
1528 \&\|'
1529 directives.  (Ordinarily \c
1530 .I all\c
1531 \& `\|\c
1532 .B \-I\c
1533 \&\|' directories are used
1534 this way.)
1535 .Sp
1536 In addition, the `\|\c
1537 .B \-I\-\c
1538 \&\|' option inhibits the use of the current
1539 directory (where the current input file came from) as the first search
1540 directory for `\|\c
1541 .B
1542 #include "\c
1543 .I file\c
1544 .B
1545 \&"\c
1546 \&\|'.  There is no way to
1547 override this effect of `\|\c
1548 .B \-I\-\c
1549 \&\|'.  With `\|\c
1550 .B \-I.\c
1551 \&\|' you can specify
1552 searching the directory which was current when the compiler was
1553 invoked.  That is not exactly the same as what the preprocessor does
1554 by default, but it is often satisfactory.
1555 .Sp
1556 `\|\c
1557 .B \-I\-\c
1558 \&\|' does not inhibit the use of the standard system directories
1559 for header files.  Thus, `\|\c
1560 .B \-I\-\c
1561 \&\|' and `\|\c
1562 .B \-nostdinc\c
1563 \&\|' are
1564 independent.
1565 .TP
1566 .BI "\-L" "dir"
1567 Add directory \c
1568 .I dir\c
1569 \& to the list of directories to be searched
1570 for `\|\c
1571 .B \-l\c
1572 \&\|'.
1573 .TP
1574 .BI "\-B" "prefix"
1575 This option specifies where to find the executables, libraries and
1576 data files of the compiler itself.
1577 .Sp
1578 The compiler driver program runs one or more of the subprograms
1579 `\|\c
1580 .B cpp\c
1581 \&\|', `\|\c
1582 .B cc1\c
1583 \&\|' (or, for C++, `\|\c
1584 .B cc1plus\c
1585 \&\|'), `\|\c
1586 .B as\c
1587 \&\|' and `\|\c
1588 .B ld\c
1589 \&\|'.  It tries
1590 .I prefix\c
1591 \& as a prefix for each program it tries to run, both with and
1592 without `\|\c
1593 .I machine\c
1594 .B /\c
1595 .I version\c
1596 .B /\c
1597 \&\|'.
1598 .Sp
1599 For each subprogram to be run, the compiler driver first tries the
1600 `\|\c
1601 .B \-B\c
1602 \&\|' prefix, if any.  If that name is not found, or if `\|\c
1603 .B \-B\c
1604 \&\|'
1605 was not specified, the driver tries two standard prefixes, which are
1606 `\|\c
1607 .B /usr/lib/gcc/\c
1608 \&\|' and `\|\c
1609 .B /usr/local/lib/gcc-lib/\c
1610 \&\|'.  If neither of
1611 those results in a file name that is found, the compiler driver
1612 searches for the unmodified program
1613 name, using the directories specified in your
1614 `\|\c
1615 .B PATH\c
1616 \&\|' environment variable.
1617 .Sp
1618 The run-time support file `\|\c
1619 .B libgcc.a\c
1620 \&\|' is also searched for using the
1621 `\|\c
1622 .B \-B\c
1623 \&\|' prefix, if needed.  If it is not found there, the two
1624 standard prefixes above are tried, and that is all.  The file is left
1625 out of the link if it is not found by those means.  Most of the time,
1626 on most machines, `\|\c
1627 .B libgcc.a\c
1628 \&\|' is not actually necessary.
1629 .Sp
1630 You can get a similar result from the environment variable
1631 .B GCC_EXEC_PREFIX\c
1632 \&; if it is defined, its value is used as a prefix
1633 in the same way.  If both the `\|\c
1634 .B \-B\c
1635 \&\|' option and the
1636 .B GCC_EXEC_PREFIX\c
1637 \& variable are present, the `\|\c
1638 .B \-B\c
1639 \&\|' option is
1640 used first and the environment variable value second.
1641 .SH WARNING OPTIONS
1642 Warnings are diagnostic messages that report constructions which
1643 are not inherently erroneous but which are risky or suggest there
1644 may have been an error.
1645 .Sp
1646 These options control the amount and kinds of warnings produced by GNU
1647 CC:
1648 .TP
1649 .B \-fsyntax\-only
1650 Check the code for syntax errors, but don't emit any output.
1651 .TP
1652 .B \-w
1653 Inhibit all warning messages.
1654 .TP
1655 .B \-Wno\-import
1656 Inhibit warning messages about the use of
1657 .BR #import .
1658 .TP
1659 .B \-pedantic
1660 Issue all the warnings demanded by strict ANSI standard C; reject
1661 all programs that use forbidden extensions.
1662 .Sp
1663 Valid ANSI standard C programs should compile properly with or without
1664 this option (though a rare few will require `\|\c
1665 .B \-ansi\c
1666 \&\|').  However,
1667 without this option, certain GNU extensions and traditional C features
1668 are supported as well.  With this option, they are rejected.  There is
1669 no reason to \c
1670 .I use\c
1671 \& this option; it exists only to satisfy pedants.
1672 .Sp
1673 `\|\c
1674 .B \-pedantic\c
1675 \&\|' does not cause warning messages for use of the
1676 alternate keywords whose names begin and end with `\|\c
1677 .B _\|_\c
1678 \&\|'.  Pedantic
1679 warnings are also disabled in the expression that follows
1680 .B _\|_extension_\|_\c
1681 \&.  However, only system header files should use
1682 these escape routes; application programs should avoid them.
1683 .TP
1684 .B \-pedantic\-errors
1685 Like `\|\c
1686 .B \-pedantic\c
1687 \&\|', except that errors are produced rather than
1688 warnings.
1689 .TP
1690 .B \-W
1691 Print extra warning messages for these events:
1692 .TP
1693 \ \ \ \(bu
1694 A nonvolatile automatic variable might be changed by a call to
1695 .B longjmp\c
1696 \&.  These warnings are possible only in
1697 optimizing compilation.
1698 .Sp
1699 The compiler sees only the calls to \c
1700 .B setjmp\c
1701 \&.  It cannot know
1702 where \c
1703 .B longjmp\c
1704 \& will be called; in fact, a signal handler could
1705 call it at any point in the code.  As a result, you may get a warning
1706 even when there is in fact no problem because \c
1707 .B longjmp\c
1708 \& cannot
1709 in fact be called at the place which would cause a problem.
1710 .TP
1711 \ \ \ \(bu
1712 A function can return either with or without a value.  (Falling
1713 off the end of the function body is considered returning without
1714 a value.)  For example, this function would evoke such a
1715 warning:
1716 .Sp
1717 .nf
1718 foo (a)
1719 {
1720   if (a > 0)
1721     return a;
1722 }
1723 .Sp
1724 .fi
1725 Spurious warnings can occur because GNU CC does not realize that
1726 certain functions (including \c
1727 .B abort\c
1728 \& and \c
1729 .B longjmp\c
1730 \&)
1731 will never return.
1732 .TP
1733 \ \ \ \(bu
1734 An expression-statement or the left-hand side of a comma expression
1735 contains no side effects. 
1736 To suppress the warning, cast the unused expression to void.
1737 For example, an expression such as `\|\c
1738 .B x[i,j]\c
1739 \&\|' will cause a warning,
1740 but `\|\c
1741 .B x[(void)i,j]\c
1742 \&\|' will not.
1743 .TP
1744 \ \ \ \(bu
1745 An unsigned value is compared against zero with `\|\c
1746 .B >\c
1747 \&\|' or `\|\c
1748 .B <=\c
1749 \&\|'.
1750 .PP
1751 .TP
1752 .B \-Wimplicit-int
1753 Warn whenever a declaration does not specify a type.
1754 .TP
1755 .B \-Wimplicit-function-declaration
1756 Warn whenever a function is used before being declared.
1757 .TP
1758 .B \-Wimplicit
1759 Same as -Wimplicit-int and -Wimplicit-function-declaration.
1760 .TP
1761 .B \-Wmain
1762 Warn if the
1763 .B main
1764 function is declared or defined with a suspicious type.
1765 Typically, it is a function with external linkage, returning
1766 .B int\c
1767 \&, and
1768 taking zero or two arguments.
1769
1770 .TP
1771 .B \-Wreturn\-type
1772 Warn whenever a function is defined with a return-type that defaults
1773 to \c
1774 .B int\c
1775 \&.  Also warn about any \c
1776 .B return\c
1777 \& statement with no
1778 return-value in a function whose return-type is not \c
1779 .B void\c
1780 \&.
1781 .TP
1782 .B \-Wunused
1783 Warn whenever a local variable is unused aside from its declaration,
1784 whenever a function is declared static but never defined, and whenever
1785 a statement computes a result that is explicitly not used.
1786 .TP
1787 .B \-Wswitch
1788 Warn whenever a \c
1789 .B switch\c
1790 \& statement has an index of enumeral type
1791 and lacks a \c
1792 .B case\c
1793 \& for one or more of the named codes of that
1794 enumeration.  (The presence of a \c
1795 .B default\c
1796 \& label prevents this
1797 warning.)  \c
1798 .B case\c
1799 \& labels outside the enumeration range also
1800 provoke warnings when this option is used.
1801 .TP
1802 .B \-Wcomment
1803 Warn whenever a comment-start sequence `\|\c
1804 .B /\(**\c
1805 \&\|' appears in a comment.
1806 .TP
1807 .B \-Wtrigraphs
1808 Warn if any trigraphs are encountered (assuming they are enabled).
1809 .TP
1810 .B \-Wformat
1811 Check calls to \c
1812 .B printf\c
1813 \& and \c
1814 .B scanf\c
1815 \&, etc., to make sure that
1816 the arguments supplied have types appropriate to the format string
1817 specified.
1818 .TP
1819 .B \-Wchar\-subscripts
1820 Warn if an array subscript has type
1821 .BR char .
1822 This is a common cause of error, as programmers often forget that this
1823 type is signed on some machines.
1824 .TP
1825 .B \-Wuninitialized
1826 An automatic variable is used without first being initialized.
1827 .Sp
1828 These warnings are possible only in optimizing compilation,
1829 because they require data flow information that is computed only
1830 when optimizing.  If you don't specify `\|\c
1831 .B \-O\c
1832 \&\|', you simply won't
1833 get these warnings.
1834 .Sp
1835 These warnings occur only for variables that are candidates for
1836 register allocation.  Therefore, they do not occur for a variable that
1837 is declared \c
1838 .B volatile\c
1839 \&, or whose address is taken, or whose size
1840 is other than 1, 2, 4 or 8 bytes.  Also, they do not occur for
1841 structures, unions or arrays, even when they are in registers.
1842 .Sp
1843 Note that there may be no warning about a variable that is used only
1844 to compute a value that itself is never used, because such
1845 computations may be deleted by data flow analysis before the warnings
1846 are printed.
1847 .Sp
1848 These warnings are made optional because GNU CC is not smart
1849 enough to see all the reasons why the code might be correct
1850 despite appearing to have an error.  Here is one example of how
1851 this can happen:
1852 .Sp
1853 .nf
1854 {
1855   int x;
1856   switch (y)
1857     {
1858     case 1: x = 1;
1859       break;
1860     case 2: x = 4;
1861       break;
1862     case 3: x = 5;
1863     }
1864   foo (x);
1865 }
1866 .Sp
1867 .fi
1868 If the value of \c
1869 .B y\c
1870 \& is always 1, 2 or 3, then \c
1871 .B x\c
1872 \& is
1873 always initialized, but GNU CC doesn't know this.  Here is
1874 another common case:
1875 .Sp
1876 .nf
1877 {
1878   int save_y;
1879   if (change_y) save_y = y, y = new_y;
1880   .\|.\|.
1881   if (change_y) y = save_y;
1882 }
1883 .Sp
1884 .fi
1885 This has no bug because \c
1886 .B save_y\c
1887 \& is used only if it is set.
1888 .Sp
1889 Some spurious warnings can be avoided if you declare as
1890 .B volatile\c
1891 \& all the functions you use that never return.
1892 .TP
1893 .B \-Wparentheses
1894 Warn if parentheses are omitted in certain contexts.
1895 .TP
1896 .B \-Wtemplate\-debugging
1897 When using templates in a C++ program, warn if debugging is not yet
1898 fully available (C++ only).
1899 .TP
1900 .B \-Wall
1901 All of the above `\|\c
1902 .B \-W\c
1903 \&\|' options combined.  These are all the
1904 options which pertain to usage that we recommend avoiding and that we
1905 believe is easy to avoid, even in conjunction with macros.
1906 .PP
1907 The remaining `\|\c
1908 .B \-W.\|.\|.\c
1909 \&\|' options are not implied by `\|\c
1910 .B \-Wall\c
1911 \&\|'
1912 because they warn about constructions that we consider reasonable to
1913 use, on occasion, in clean programs.
1914 .TP
1915 .B \-Wtraditional
1916 Warn about certain constructs that behave differently in traditional and
1917 ANSI C.
1918 .TP
1919 \ \ \ \(bu
1920 Macro arguments occurring within string constants in the macro body.
1921 These would substitute the argument in traditional C, but are part of
1922 the constant in ANSI C.
1923 .TP
1924 \ \ \ \(bu
1925 A function declared external in one block and then used after the end of
1926 the block.
1927 .TP
1928 \ \ \ \(bu
1929 A \c
1930 .B switch\c
1931 \& statement has an operand of type \c
1932 .B long\c
1933 \&.
1934 .PP
1935 .TP
1936 .B \-Wshadow
1937 Warn whenever a local variable shadows another local variable.
1938 .TP
1939 .BI "\-Wid\-clash\-" "len"
1940 Warn whenever two distinct identifiers match in the first \c
1941 .I len
1942 characters.  This may help you prepare a program that will compile
1943 with certain obsolete, brain-damaged compilers.
1944 .TP
1945 .B \-Wpointer\-arith
1946 Warn about anything that depends on the \*(lqsize of\*(rq a function type or
1947 of \c
1948 .B void\c
1949 \&.  GNU C assigns these types a size of 1, for
1950 convenience in calculations with \c
1951 .B void \(**\c
1952 \& pointers and pointers
1953 to functions.
1954 .TP
1955 .B \-Wcast\-qual
1956 Warn whenever a pointer is cast so as to remove a type qualifier from
1957 the target type.  For example, warn if a \c
1958 .B const char \(**\c
1959 \& is cast
1960 to an ordinary \c
1961 .B char \(**\c
1962 \&.
1963 .TP
1964 .B \-Wcast\-align
1965 Warn whenever a pointer is cast such that the required alignment of the
1966 target is increased.  For example, warn if a \c
1967 .B char \(**\c
1968 \& is cast to
1969 an \c
1970 .B int \(**\c
1971 \& on machines where integers can only be accessed at
1972 two- or four-byte boundaries.
1973 .TP
1974 .B \-Wwrite\-strings
1975 Give string constants the type \c
1976 .B const char[\c
1977 .I length\c
1978 .B ]\c
1979 \& so that
1980 copying the address of one into a non-\c
1981 .B const\c
1982 \& \c
1983 .B char \(**
1984 pointer will get a warning.  These warnings will help you find at
1985 compile time code that can try to write into a string constant, but
1986 only if you have been very careful about using \c
1987 .B const\c
1988 \& in
1989 declarations and prototypes.  Otherwise, it will just be a nuisance;
1990 this is why we did not make `\|\c
1991 .B \-Wall\c
1992 \&\|' request these warnings.
1993 .TP
1994 .B \-Wconversion
1995 Warn if a prototype causes a type conversion that is different from what
1996 would happen to the same argument in the absence of a prototype.  This
1997 includes conversions of fixed point to floating and vice versa, and
1998 conversions changing the width or signedness of a fixed point argument
1999 except when the same as the default promotion.
2000 .TP
2001 .B \-Waggregate\-return
2002 Warn if any functions that return structures or unions are defined or
2003 called.  (In languages where you can return an array, this also elicits
2004 a warning.)
2005 .TP
2006 .B \-Wstrict\-prototypes
2007 Warn if a function is declared or defined without specifying the
2008 argument types.  (An old-style function definition is permitted without
2009 a warning if preceded by a declaration which specifies the argument
2010 types.)
2011 .TP
2012 .B \-Wmissing\-prototypes
2013 Warn if a global function is defined without a previous prototype
2014 declaration.  This warning is issued even if the definition itself
2015 provides a prototype.  The aim is to detect global functions that fail
2016 to be declared in header files.
2017 .TP
2018 .B \-Wmissing\-declarations
2019 Warn if a global function is defined without a previous declaration.
2020 Do so even if the definition itself provides a prototype.
2021 Use this option to detect global functions that are not declared in
2022 header files.
2023 .TP
2024 .B \-Wredundant-decls
2025 Warn if anything is declared more than once in the same scope, even in
2026 cases where multiple declaration is valid and changes nothing.
2027 .TP
2028 .B \-Wnested-externs
2029 Warn if an \c
2030 .B extern\c
2031 \& declaration is encountered within a function.
2032 .TP
2033 .B \-Wenum\-clash
2034 Warn about conversion between different enumeration types (C++ only).
2035 .TP
2036 .B \-Wlong-long
2037 Warn if
2038 .B long long \c
2039 type is used.  This is default.  To inhibit
2040 the warning messages, use flag `\|\c
2041 .B \-Wno\-long\-long\c
2042 \&\|'.  Flags `\|\c
2043 .B \-W\-long\-long\c
2044 \&\|' and `\|\c
2045 .B \-Wno\-long\-long\c
2046 \&\|' are taken into account only when flag `\|\c
2047 .B \-pedantic\c
2048 \&\|' is used.
2049 .TP
2050 .B \-Woverloaded\-virtual
2051 (C++ only.)
2052 In a derived class, the definitions of virtual functions must match
2053 the type signature of a virtual function declared in the base class.
2054 Use this option to request warnings when a derived class declares a
2055 function that may be an erroneous attempt to define a virtual
2056 function: that is, warn when a function with the same name as a
2057 virtual function in the base class, but with a type signature that
2058 doesn't match any virtual functions from the base class.
2059 .TP
2060 .B \-Winline
2061 Warn if a function can not be inlined, and either it was declared as inline,
2062 or else the
2063 .B \-finline\-functions
2064 option was given.
2065 .TP
2066 .B \-Werror
2067 Treat warnings as errors; abort compilation after any warning.
2068 .SH DEBUGGING OPTIONS
2069 GNU CC has various special options that are used for debugging
2070 either your program or GCC:
2071 .TP
2072 .B \-g
2073 Produce debugging information in the operating system's native format
2074 (stabs, COFF, XCOFF, or DWARF).  GDB can work with this debugging
2075 information.
2076 .Sp
2077 On most systems that use stabs format, `\|\c
2078 .B \-g\c
2079 \&\|' enables use of extra
2080 debugging information that only GDB can use; this extra information
2081 makes debugging work better in GDB but will probably make other debuggers
2082 crash or
2083 refuse to read the program.  If you want to control for certain whether
2084 to generate the extra information, use `\|\c
2085 .B \-gstabs+\c
2086 \&\|', `\|\c
2087 .B \-gstabs\c
2088 \&\|',
2089 `\|\c
2090 .B \-gxcoff+\c
2091 \&\|', `\|\c
2092 .B \-gxcoff\c
2093 \&\|', `\|\c
2094 .B \-gdwarf+\c
2095 \&\|', or `\|\c
2096 .B \-gdwarf\c
2097 \&\|'
2098 (see below).
2099 .Sp
2100 Unlike most other C compilers, GNU CC allows you to use `\|\c
2101 .B \-g\c
2102 \&\|' with
2103 `\|\c
2104 .B \-O\c
2105 \&\|'.  The shortcuts taken by optimized code may occasionally
2106 produce surprising results: some variables you declared may not exist
2107 at all; flow of control may briefly move where you did not expect it;
2108 some statements may not be executed because they compute constant
2109 results or their values were already at hand; some statements may
2110 execute in different places because they were moved out of loops.
2111 .Sp
2112 Nevertheless it proves possible to debug optimized output.  This makes
2113 it reasonable to use the optimizer for programs that might have bugs.
2114 .PP
2115 The following options are useful when GNU CC is generated with the
2116 capability for more than one debugging format.
2117 .TP
2118 .B \-ggdb
2119 Produce debugging information in the native format (if that is supported),
2120 including GDB extensions if at all possible.
2121 .TP
2122 .B \-gstabs
2123 Produce debugging information in stabs format (if that is supported),
2124 without GDB extensions.  This is the format used by DBX on most BSD
2125 systems.
2126 .TP
2127 .B \-gstabs+
2128 Produce debugging information in stabs format (if that is supported),
2129 using GNU extensions understood only by the GNU debugger (GDB).  The
2130 use of these extensions is likely to make other debuggers crash or
2131 refuse to read the program.
2132 .TP
2133 .B \-gcoff
2134 Produce debugging information in COFF format (if that is supported).
2135 This is the format used by SDB on most System V systems prior to
2136 System V Release 4.
2137 .TP
2138 .B \-gxcoff
2139 Produce debugging information in XCOFF format (if that is supported).
2140 This is the format used by the DBX debugger on IBM RS/6000 systems.
2141 .TP
2142 .B \-gxcoff+
2143 Produce debugging information in XCOFF format (if that is supported),
2144 using GNU extensions understood only by the GNU debugger (GDB).  The
2145 use of these extensions is likely to make other debuggers crash or
2146 refuse to read the program.
2147 .TP
2148 .B \-gdwarf
2149 Produce debugging information in DWARF format (if that is supported).
2150 This is the format used by SDB on most System V Release 4 systems.
2151 .TP
2152 .B \-gdwarf+
2153 Produce debugging information in DWARF format (if that is supported),
2154 using GNU extensions understood only by the GNU debugger (GDB).  The
2155 use of these extensions is likely to make other debuggers crash or
2156 refuse to read the program.
2157 .PP
2158 .BI "\-g" "level"
2159 .br
2160 .BI "\-ggdb" "level"
2161 .br
2162 .BI "\-gstabs" "level"
2163 .br
2164 .BI "\-gcoff" "level"
2165 .BI "\-gxcoff" "level"
2166 .TP
2167 .BI "\-gdwarf" "level"
2168 Request debugging information and also use \c
2169 .I level\c
2170 \& to specify how
2171 much information.  The default level is 2.
2172 .Sp
2173 Level 1 produces minimal information, enough for making backtraces in
2174 parts of the program that you don't plan to debug.  This includes
2175 descriptions of functions and external variables, but no information
2176 about local variables and no line numbers.
2177 .Sp
2178 Level 3 includes extra information, such as all the macro definitions
2179 present in the program.  Some debuggers support macro expansion when
2180 you use `\|\c
2181 .B \-g3\c
2182 \&\|'.
2183 .TP
2184 .B \-p
2185 Generate extra code to write profile information suitable for the
2186 analysis program \c
2187 .B prof\c
2188 \&.
2189 .TP
2190 .B \-pg
2191 Generate extra code to write profile information suitable for the
2192 analysis program \c
2193 .B gprof\c
2194 \&.
2195 .TP
2196 .B \-a
2197 Generate extra code to write profile information for basic blocks,
2198 which will record the number of times each basic block is executed.
2199 This data could be analyzed by a program like \c
2200 .B tcov\c
2201 \&.  Note,
2202 however, that the format of the data is not what \c
2203 .B tcov\c
2204 \& expects.
2205 Eventually GNU \c
2206 .B gprof\c
2207 \& should be extended to process this data.
2208 .TP
2209 .B \-ax
2210 Generate extra code to read basic block profiling parameters from 
2211 file `bb.in' and write profiling results to file `bb.out'.
2212 `bb.in' contains a list of functions. Whenever a function on the list
2213 is entered, profiling is turned on. When the outmost function is left,
2214 profiling is turned off. If a function name is prefixed with `-'
2215 the function is excluded from profiling. If a function name is not
2216 unique it can be disambiguated by writing
2217 `/path/filename.d:functionname'. `bb.out' will list some available
2218 filenames.
2219 Four function names have a special meaning:
2220 `__bb_jumps__' will cause jump frequencies to be written to `bb.out'.
2221 `__bb_trace__' will cause the sequence of basic blocks to be piped 
2222 into `gzip' and written to file `bbtrace.gz'.
2223 `__bb_hidecall__' will cause call instructions to be excluded from
2224 the trace.
2225 `__bb_showret__' will cause return instructions to be included in
2226 the trace.
2227 .TP
2228 .BI "\-d" "letters"
2229 Says to make debugging dumps during compilation at times specified by
2230 .I letters\c
2231 \&.  This is used for debugging the compiler.  The file names
2232 for most of the dumps are made by appending a word to the source file
2233 name (e.g.  `\|\c
2234 .B foo.c.rtl\c
2235 \&\|' or `\|\c
2236 .B foo.c.jump\c
2237 \&\|').
2238 .TP
2239 .B \-dM
2240 Dump all macro definitions, at the end of preprocessing, and write no
2241 output.
2242 .TP
2243 .B \-dN
2244 Dump all macro names, at the end of preprocessing.
2245 .TP
2246 .B \-dD
2247 Dump all macro definitions, at the end of preprocessing, in addition to
2248 normal output.
2249 .TP
2250 .B \-dy
2251 Dump debugging information during parsing, to standard error.
2252 .TP
2253 .B \-dr
2254 Dump after RTL generation, to `\|\c
2255 .I file\c
2256 .B \&.rtl\c
2257 \&\|'.
2258 .TP
2259 .B \-dx
2260 Just generate RTL for a function instead of compiling it.  Usually used
2261 with `\|\c
2262 .B r\c
2263 \&\|'.
2264 .TP
2265 .B \-dj
2266 Dump after first jump optimization, to `\|\c
2267 .I file\c
2268 .B \&.jump\c
2269 \&\|'.
2270 .TP
2271 .B \-ds
2272 Dump after CSE (including the jump optimization that sometimes
2273 follows CSE), to `\|\c
2274 .I file\c
2275 .B \&.cse\c
2276 \&\|'.
2277 .TP
2278 .B \-dL
2279 Dump after loop optimization, to `\|\c
2280 .I file\c
2281 .B \&.loop\c
2282 \&\|'.
2283 .TP
2284 .B \-dt
2285 Dump after the second CSE pass (including the jump optimization that
2286 sometimes follows CSE), to `\|\c
2287 .I file\c
2288 .B \&.cse2\c
2289 \&\|'.
2290 .TP
2291 .B \-df
2292 Dump after flow analysis, to `\|\c
2293 .I file\c
2294 .B \&.flow\c
2295 \&\|'.
2296 .TP
2297 .B \-dc
2298 Dump after instruction combination, to `\|\c
2299 .I file\c
2300 .B \&.combine\c
2301 \&\|'.
2302 .TP
2303 .B \-dS
2304 Dump after the first instruction scheduling pass, to
2305 `\|\c
2306 .I file\c
2307 .B \&.sched\c
2308 \&\|'.
2309 .TP
2310 .B \-dl
2311 Dump after local register allocation, to `\|\c
2312 .I file\c
2313 .B \&.lreg\c
2314 \&\|'.
2315 .TP
2316 .B \-dg
2317 Dump after global register allocation, to `\|\c
2318 .I file\c
2319 .B \&.greg\c
2320 \&\|'.
2321 .TP
2322 .B \-dR
2323 Dump after the second instruction scheduling pass, to
2324 `\|\c
2325 .I file\c
2326 .B \&.sched2\c
2327 \&\|'.
2328 .TP
2329 .B \-dJ
2330 Dump after last jump optimization, to `\|\c
2331 .I file\c
2332 .B \&.jump2\c
2333 \&\|'.
2334 .TP
2335 .B \-dd
2336 Dump after delayed branch scheduling, to `\|\c
2337 .I file\c
2338 .B \&.dbr\c
2339 \&\|'.
2340 .TP
2341 .B \-dk
2342 Dump after conversion from registers to stack, to `\|\c
2343 .I file\c
2344 .B \&.stack\c
2345 \&\|'.
2346 .TP
2347 .B \-da
2348 Produce all the dumps listed above.
2349 .TP
2350 .B \-dm
2351 Print statistics on memory usage, at the end of the run, to
2352 standard error.
2353 .TP
2354 .B \-dp
2355 Annotate the assembler output with a comment indicating which
2356 pattern and alternative was used.
2357 .TP
2358 .B \-fpretend\-float
2359 When running a cross-compiler, pretend that the target machine uses the
2360 same floating point format as the host machine.  This causes incorrect
2361 output of the actual floating constants, but the actual instruction
2362 sequence will probably be the same as GNU CC would make when running on
2363 the target machine.
2364 .TP
2365 .B \-save\-temps
2366 Store the usual \*(lqtemporary\*(rq intermediate files permanently; place them
2367 in the current directory and name them based on the source file.  Thus,
2368 compiling `\|\c
2369 .B foo.c\c
2370 \&\|' with `\|\c
2371 .B \-c \-save\-temps\c
2372 \&\|' would produce files
2373 `\|\c
2374 .B foo.cpp\c
2375 \&\|' and `\|\c
2376 .B foo.s\c
2377 \&\|', as well as `\|\c
2378 .B foo.o\c
2379 \&\|'.
2380 .TP
2381 .BI "\-print\-file\-name=" "library"
2382 Print the full absolute name of the library file \|\c
2383 .nh
2384 .I library
2385 .hy
2386 \&\| that
2387 would be used when linking\(em\&and do not do anything else.  With this
2388 option, GNU CC does not compile or link anything; it just prints the
2389 file name.
2390 .TP
2391 .B \-print\-libgcc\-file\-name
2392 Same as `\|\c
2393 .B \-print\-file\-name=libgcc.a\c
2394 \&\|'.
2395 .TP
2396 .BI "\-print\-prog\-name=" "program"
2397 Like `\|\c
2398 .B \-print\-file\-name\c
2399 \&\|', but searches for a program such as `\|\c
2400 cpp\c
2401 \&\|'.
2402 .SH OPTIMIZATION OPTIONS
2403 These options control various sorts of optimizations:
2404 .TP
2405 .B \-O
2406 .TP
2407 .B \-O1
2408 Optimize.  Optimizing compilation takes somewhat more time, and a lot
2409 more memory for a large function.
2410 .Sp
2411 Without `\|\c
2412 .B \-O\c
2413 \&\|', the compiler's goal is to reduce the cost of
2414 compilation and to make debugging produce the expected results.
2415 Statements are independent: if you stop the program with a breakpoint
2416 between statements, you can then assign a new value to any variable or
2417 change the program counter to any other statement in the function and
2418 get exactly the results you would expect from the source code.
2419 .Sp
2420 Without `\|\c
2421 .B \-O\c
2422 \&\|', only variables declared \c
2423 .B register\c
2424 \& are
2425 allocated in registers.  The resulting compiled code is a little worse
2426 than produced by PCC without `\|\c
2427 .B \-O\c
2428 \&\|'.
2429 .Sp
2430 With `\|\c
2431 .B \-O\c
2432 \&\|', the compiler tries to reduce code size and execution
2433 time.
2434 .Sp
2435 When you specify `\|\c
2436 .B \-O\c
2437 \&\|', the two options `\|\c
2438 .B \-fthread\-jumps\c
2439 \&\|' and `\|\c
2440 .B \-fdefer\-pop\c
2441 \&\|' are turned on.  On machines that have delay slots, the `\|\c
2442 .B \-fdelayed\-branch\c
2443 \&\|' option is turned on.  For those machines that can support debugging even
2444 without a frame pointer, the `\|\c
2445 .B \-fomit\-frame\-pointer\c
2446 \&\|' option is turned on.  On some machines other flags may also be turned on.
2447 .TP
2448 .B \-O2
2449 Optimize even more.  Nearly all supported optimizations that do not
2450 involve a space-speed tradeoff are performed.  Loop unrolling and function
2451 inlining are not done, for example.  As compared to
2452 .B \-O\c
2453 \&,
2454 this option increases both compilation time and the performance of the
2455 generated code.
2456 .TP
2457 .B \-O3
2458 Optimize yet more. This turns on everything
2459 .B \-O2
2460 does, along with also turning on
2461 .B \-finline\-functions.
2462 .TP
2463 .B \-Os
2464 Optimize for size.
2465 This enables all
2466 .B \-O2
2467 optimizations that do not typically increase code size.
2468 It also performs further optimizations designed to reduce code size.
2469 .TP
2470 .B \-O0
2471 Do not optimize.
2472 .Sp
2473 If you use multiple
2474 .B \-O
2475 options, with or without level numbers, the last such option is the
2476 one that is effective.
2477 .PP
2478 Options of the form `\|\c
2479 .B \-f\c
2480 .I flag\c
2481 \&\c
2482 \&\|' specify machine-independent
2483 flags.  Most flags have both positive and negative forms; the negative
2484 form of `\|\c
2485 .B \-ffoo\c
2486 \&\|' would be `\|\c
2487 .B \-fno\-foo\c
2488 \&\|'.  The following list shows
2489 only one form\(em\&the one which is not the default.
2490 You can figure out the other form by either removing `\|\c
2491 .B no\-\c
2492 \&\|' or
2493 adding it.
2494 .TP
2495 .B \-ffloat\-store
2496 Do not store floating point variables in registers.  This
2497 prevents undesirable excess precision on machines such as the
2498 68000 where the floating registers (of the 68881) keep more
2499 precision than a \c
2500 .B double\c
2501 \& is supposed to have.
2502 .Sp
2503 For most programs, the excess precision does only good, but a few
2504 programs rely on the precise definition of IEEE floating point.
2505 Use `\|\c
2506 .B \-ffloat\-store\c
2507 \&\|' for such programs.
2508 .TP
2509 .B \-fmemoize\-lookups
2510 .TP
2511 .B \-fsave\-memoized
2512 Use heuristics to compile faster (C++ only).  These heuristics are not
2513 enabled by default, since they are only effective for certain input
2514 files.  Other input files compile more slowly.
2515 .Sp
2516 The first time the compiler must build a call to a member function (or
2517 reference to a data member), it must (1) determine whether the class
2518 implements member functions of that name; (2) resolve which member
2519 function to call (which involves figuring out what sorts of type
2520 conversions need to be made); and (3) check the visibility of the member
2521 function to the caller.  All of this adds up to slower compilation.
2522 Normally, the second time a call is made to that member function (or
2523 reference to that data member), it must go through the same lengthy
2524 process again.  This means that code like this
2525 .Sp
2526 \&  cout << "This " << p << " has " << n << " legs.\en";
2527 .Sp
2528 makes six passes through all three steps.  By using a software cache,
2529 a \*(lqhit\*(rq significantly reduces this cost.  Unfortunately, using the
2530 cache introduces another layer of mechanisms which must be implemented,
2531 and so incurs its own overhead.  `\|\c
2532 .B \-fmemoize\-lookups\c
2533 \&\|' enables
2534 the software cache.
2535 .Sp
2536 Because access privileges (visibility) to members and member functions
2537 may differ from one function context to the next,
2538 .B g++
2539 may need to flush the cache.  With the `\|\c
2540 .B \-fmemoize\-lookups\c
2541 \&\|' flag, the cache is flushed after every
2542 function that is compiled.  The `\|\c
2543 \-fsave\-memoized\c
2544 \&\|' flag enables the same software cache, but when the compiler
2545 determines that the context of the last function compiled would yield
2546 the same access privileges of the next function to compile, it
2547 preserves the cache.
2548 This is most helpful when defining many member functions for the same
2549 class: with the exception of member functions which are friends of
2550 other classes, each member function has exactly the same access
2551 privileges as every other, and the cache need not be flushed.
2552 .TP
2553 .B \-fno\-default\-inline
2554 Don't make member functions inline by default merely because they are
2555 defined inside the class scope (C++ only).
2556 .TP
2557 .B \-fno\-defer\-pop
2558 Always pop the arguments to each function call as soon as that
2559 function returns.  For machines which must pop arguments after a
2560 function call, the compiler normally lets arguments accumulate on the
2561 stack for several function calls and pops them all at once.
2562 .TP
2563 .B \-fforce\-mem
2564 Force memory operands to be copied into registers before doing
2565 arithmetic on them.  This may produce better code by making all
2566 memory references potential common subexpressions.  When they are
2567 not common subexpressions, instruction combination should
2568 eliminate the separate register-load.  I am interested in hearing
2569 about the difference this makes.
2570 .TP
2571 .B \-fforce\-addr
2572 Force memory address constants to be copied into registers before
2573 doing arithmetic on them.  This may produce better code just as
2574 `\|\c
2575 .B \-fforce\-mem\c
2576 \&\|' may.  I am interested in hearing about the
2577 difference this makes.
2578 .TP
2579 .B \-fomit\-frame\-pointer
2580 Don't keep the frame pointer in a register for functions that
2581 don't need one.  This avoids the instructions to save, set up and
2582 restore frame pointers; it also makes an extra register available
2583 in many functions.  \c
2584 .I It also makes debugging impossible on most machines\c
2585 \&.
2586 .Sp
2587 On some machines, such as the Vax, this flag has no effect, because
2588 the standard calling sequence automatically handles the frame pointer
2589 and nothing is saved by pretending it doesn't exist.  The
2590 machine-description macro \c
2591 .B FRAME_POINTER_REQUIRED\c
2592 \& controls
2593 whether a target machine supports this flag.
2594 .TP
2595 .B \-finline\-functions
2596 Integrate all simple functions into their callers.  The compiler
2597 heuristically decides which functions are simple enough to be worth
2598 integrating in this way.
2599 .Sp
2600 If all calls to a given function are integrated, and the function is
2601 declared \c
2602 .B static\c
2603 \&, then GCC normally does not output the function as
2604 assembler code in its own right.
2605 .TP
2606 .B \-fcaller\-saves
2607 Enable values to be allocated in registers that will be clobbered by
2608 function calls, by emitting extra instructions to save and restore the
2609 registers around such calls.  Such allocation is done only when it
2610 seems to result in better code than would otherwise be produced.
2611 .Sp
2612 This option is enabled by default on certain machines, usually those
2613 which have no call-preserved registers to use instead.
2614 .TP
2615 .B \-fkeep\-inline\-functions
2616 Even if all calls to a given function are integrated, and the function
2617 is declared \c
2618 .B static\c
2619 \&, nevertheless output a separate run-time
2620 callable version of the function.
2621 .TP
2622 .B \-fno\-function\-cse
2623 Do not put function addresses in registers; make each instruction that
2624 calls a constant function contain the function's address explicitly.
2625 .Sp
2626 This option results in less efficient code, but some strange hacks
2627 that alter the assembler output may be confused by the optimizations
2628 performed when this option is not used.
2629 .TP
2630 .B \-fno\-peephole
2631 Disable any machine-specific peephole optimizations.
2632 .TP
2633 .B \-ffast-math
2634 This option allows GCC to violate some ANSI or IEEE rules/specifications
2635 in the interest of optimizing code for speed.  For example, it allows
2636 the compiler to assume arguments to the \c
2637 .B sqrt\c
2638 \& function are
2639 non-negative numbers.
2640 .Sp
2641 This option should never be turned on by any `\|\c
2642 .B \-O\c
2643 \&\|' option since
2644 it can result in incorrect output for programs which depend on
2645 an exact implementation of IEEE or ANSI rules/specifications for
2646 math functions.
2647 .PP
2648 The following options control specific optimizations.  The `\|\c
2649 .B \-O2\c
2650 \&\|'
2651 option turns on all of these optimizations except `\|\c
2652 .B \-funroll\-loops\c
2653 \&\|'
2654 and `\|\c
2655 .B \-funroll\-all\-loops\c
2656 \&\|'.
2657 .PP
2658 The `\|\c
2659 .B \-O\c
2660 \&\|' option usually turns on
2661 the `\|\c
2662 .B \-fthread\-jumps\c
2663 \&\|' and `\|\c
2664 .B \-fdelayed\-branch\c
2665 \&\|' options, but
2666 specific machines may change the default optimizations.
2667 .PP
2668 You can use the following flags in the rare cases when \*(lqfine-tuning\*(rq
2669 of optimizations to be performed is desired.
2670 .TP
2671 .B \-fstrength\-reduce
2672 Perform the optimizations of loop strength reduction and
2673 elimination of iteration variables.
2674 .TP
2675 .B \-fthread\-jumps
2676 Perform optimizations where we check to see if a jump branches to a
2677 location where another comparison subsumed by the first is found.  If
2678 so, the first branch is redirected to either the destination of the
2679 second branch or a point immediately following it, depending on whether
2680 the condition is known to be true or false.
2681 .TP
2682 .B \-funroll\-loops
2683 Perform the optimization of loop unrolling.  This is only done for loops
2684 whose number of iterations can be determined at compile time or run time.
2685 .TP
2686 .B \-funroll\-all\-loops
2687 Perform the optimization of loop unrolling.  This is done for all loops.
2688 This usually makes programs run more slowly.
2689 .TP
2690 .B \-fcse\-follow\-jumps
2691 In common subexpression elimination, scan through jump instructions
2692 when the target of the jump is not reached by any other path.  For
2693 example, when CSE encounters an \c
2694 .B if\c
2695 \& statement with an
2696 .B else\c
2697 \& clause, CSE will follow the jump when the condition
2698 tested is false.
2699 .TP
2700 .B \-fcse\-skip\-blocks
2701 This is similar to `\|\c
2702 .B \-fcse\-follow\-jumps\c
2703 \&\|', but causes CSE to
2704 follow jumps which conditionally skip over blocks.  When CSE
2705 encounters a simple \c
2706 .B if\c
2707 \& statement with no else clause,
2708 `\|\c
2709 .B \-fcse\-skip\-blocks\c
2710 \&\|' causes CSE to follow the jump around the
2711 body of the \c
2712 .B if\c
2713 \&.
2714 .TP
2715 .B \-frerun\-cse\-after\-loop
2716 Re-run common subexpression elimination after loop optimizations has been
2717 performed.
2718 .TP
2719 .B \-felide\-constructors
2720 Elide constructors when this seems plausible (C++ only).  With this
2721 flag, GNU C++ initializes \c
2722 .B y\c
2723 \& directly from the call to \c
2724 .B foo
2725 without going through a temporary in the following code:
2726 .Sp
2727 A foo ();
2728 A y = foo ();
2729 .Sp
2730 Without this option, GNU C++ first initializes \c
2731 .B y\c
2732 \& by calling the
2733 appropriate constructor for type \c
2734 .B A\c
2735 \&; then assigns the result of
2736 .B foo\c
2737 \& to a temporary; and, finally, replaces the initial value of
2738 `\|\c
2739 .B y\c
2740 \&\|' with the temporary.
2741 .Sp
2742 The default behavior (`\|\c
2743 .B \-fno\-elide\-constructors\c
2744 \&\|') is specified by
2745 the draft ANSI C++ standard.  If your program's constructors have side
2746 effects, using `\|\c
2747 .B \-felide-constructors\c
2748 \&\|' can make your program act
2749 differently, since some constructor calls may be omitted.
2750 .TP
2751 .B \-fexpensive\-optimizations
2752 Perform a number of minor optimizations that are relatively expensive.
2753 .TP
2754 .B \-fdelayed\-branch
2755 If supported for the target machine, attempt to reorder instructions
2756 to exploit instruction slots available after delayed branch
2757 instructions.
2758 .TP
2759 .B \-fschedule\-insns
2760 If supported for the target machine, attempt to reorder instructions to
2761 eliminate execution stalls due to required data being unavailable.  This
2762 helps machines that have slow floating point or memory load instructions
2763 by allowing other instructions to be issued until the result of the load
2764 or floating point instruction is required.
2765 .TP
2766 .B \-fschedule\-insns2
2767 Similar to `\|\c
2768 .B \-fschedule\-insns\c
2769 \&\|', but requests an additional pass of
2770 instruction scheduling after register allocation has been done.  This is
2771 especially useful on machines with a relatively small number of
2772 registers and where memory load instructions take more than one cycle.
2773 .SH TARGET OPTIONS
2774 By default, GNU CC compiles code for the same type of machine that you
2775 are using.  However, it can also be installed as a cross-compiler, to
2776 compile for some other type of machine.  In fact, several different
2777 configurations of GNU CC, for different target machines, can be
2778 installed side by side.  Then you specify which one to use with the
2779 `\|\c
2780 .B \-b\c
2781 \&\|' option.
2782 .PP
2783 In addition, older and newer versions of GNU CC can be installed side
2784 by side.  One of them (probably the newest) will be the default, but
2785 you may sometimes wish to use another.
2786 .TP
2787 .BI "\-b " "machine"
2788 The argument \c
2789 .I machine\c
2790 \& specifies the target machine for compilation.
2791 This is useful when you have installed GNU CC as a cross-compiler.
2792 .Sp
2793 The value to use for \c
2794 .I machine\c
2795 \& is the same as was specified as the
2796 machine type when configuring GNU CC as a cross-compiler.  For
2797 example, if a cross-compiler was configured with `\|\c
2798 .B configure
2799 i386v\c
2800 \&\|', meaning to compile for an 80386 running System V, then you
2801 would specify `\|\c
2802 .B \-b i386v\c
2803 \&\|' to run that cross compiler.
2804 .Sp
2805 When you do not specify `\|\c
2806 .B \-b\c
2807 \&\|', it normally means to compile for
2808 the same type of machine that you are using.
2809 .TP
2810 .BI "\-V " "version"
2811 The argument \c
2812 .I version\c
2813 \& specifies which version of GNU CC to run.
2814 This is useful when multiple versions are installed.  For example,
2815 .I version\c
2816 \& might be `\|\c
2817 .B 2.0\c
2818 \&\|', meaning to run GNU CC version 2.0.
2819 .Sp
2820 The default version, when you do not specify `\|\c
2821 .B \-V\c
2822 \&\|', is controlled
2823 by the way GNU CC is installed.  Normally, it will be a version that
2824 is recommended for general use.
2825 .SH MACHINE DEPENDENT OPTIONS
2826 Each of the target machine types can have its own special options,
2827 starting with `\|\c
2828 .B \-m\c
2829 \&\|', to choose among various hardware models or
2830 configurations\(em\&for example, 68010 vs 68020, floating coprocessor or
2831 none.  A single installed version of the compiler can compile for any
2832 model or configuration, according to the options specified.
2833 .PP
2834 Some configurations of the compiler also support additional special
2835 options, usually for command-line compatibility with other compilers on
2836 the same platform.
2837 .PP
2838 These are the `\|\c
2839 .B \-m\c
2840 \&\|' options defined for the 68000 series:
2841 .TP
2842 .B \-m68000
2843 .TP
2844 .B \-mc68000
2845 Generate output for a 68000.  This is the default when the compiler is
2846 configured for 68000-based systems.
2847 .TP
2848 .B \-m68020
2849 .TP
2850 .B \-mc68020
2851 Generate output for a 68020 (rather than a 68000).  This is the
2852 default when the compiler is configured for 68020-based systems.
2853 .TP
2854 .B \-m68881
2855 Generate output containing 68881 instructions for floating point.
2856 This is the default for most 68020-based systems unless
2857 .B \-nfp
2858 was specified when the compiler was configured.
2859 .TP
2860 .B \-m68030
2861 Generate output for a 68030.  This is the default when the compiler is
2862 configured for 68030-based systems.
2863 .TP
2864 .B \-m68040
2865 Generate output for a 68040.  This is the default when the compiler is
2866 configured for 68040-based systems.
2867 .TP
2868 .B \-m68020\-40
2869 Generate output for a 68040, without using any of the new instructions.
2870 This results in code which can run relatively efficiently on either a
2871 68020/68881 or a 68030 or a 68040.
2872 .TP
2873 .B \-mfpa
2874 Generate output containing Sun FPA instructions for floating point.
2875 .TP
2876 .B \-msoft\-float
2877 Generate output containing library calls for floating point.
2878 .I
2879 WARNING:
2880 the requisite libraries are not part of GNU CC.  Normally the
2881 facilities of the machine's usual C compiler are used, but this can't
2882 be done directly in cross-compilation.  You must make your own
2883 arrangements to provide suitable library functions for cross-compilation.
2884 .TP
2885 .B \-mshort
2886 Consider type \c
2887 .B int\c
2888 \& to be 16 bits wide, like \c
2889 .B short int\c
2890 \&.
2891 .TP
2892 .B \-mnobitfield
2893 Do not use the bit-field instructions.  `\|\c
2894 .B \-m68000\c
2895 \&\|' implies
2896 `\|\c
2897 .B \-mnobitfield\c
2898 \&\|'.
2899 .TP
2900 .B \-mbitfield
2901 Do use the bit-field instructions.  `\|\c
2902 .B \-m68020\c
2903 \&\|' implies
2904 `\|\c
2905 .B \-mbitfield\c
2906 \&\|'.  This is the default if you use the unmodified
2907 sources.
2908 .TP
2909 .B \-mrtd
2910 Use a different function-calling convention, in which functions
2911 that take a fixed number of arguments return with the \c
2912 .B rtd
2913 instruction, which pops their arguments while returning.  This
2914 saves one instruction in the caller since there is no need to pop
2915 the arguments there.
2916 .Sp
2917 This calling convention is incompatible with the one normally
2918 used on Unix, so you cannot use it if you need to call libraries
2919 compiled with the Unix compiler.
2920 .Sp
2921 Also, you must provide function prototypes for all functions that
2922 take variable numbers of arguments (including \c
2923 .B printf\c
2924 \&);
2925 otherwise incorrect code will be generated for calls to those
2926 functions.
2927 .Sp
2928 In addition, seriously incorrect code will result if you call a
2929 function with too many arguments.  (Normally, extra arguments are
2930 harmlessly ignored.)
2931 .Sp
2932 The \c
2933 .B rtd\c
2934 \& instruction is supported by the 68010 and 68020
2935 processors, but not by the 68000.
2936 .PP
2937 These `\|\c
2938 .B \-m\c
2939 \&\|' options are defined for the Vax:
2940 .TP
2941 .B \-munix
2942 Do not output certain jump instructions (\c
2943 .B aobleq\c
2944 \& and so on)
2945 that the Unix assembler for the Vax cannot handle across long
2946 ranges.
2947 .TP
2948 .B \-mgnu
2949 Do output those jump instructions, on the assumption that you
2950 will assemble with the GNU assembler.
2951 .TP
2952 .B \-mg
2953 Output code for g-format floating point numbers instead of d-format.
2954 .PP
2955 These `\|\c
2956 .B \-m\c
2957 \&\|' switches are supported on the SPARC:
2958 .PP
2959 .B \-mfpu
2960 .TP
2961 .B \-mhard\-float
2962 Generate output containing floating point instructions.  This is the
2963 default.
2964 .PP
2965 .B \-mno\-fpu
2966 .TP
2967 .B \-msoft\-float
2968 Generate output containing library calls for floating point.
2969 .I Warning:
2970 there is no GNU floating-point library for SPARC.
2971 Normally the facilities of the machine's usual C compiler are used, but
2972 this cannot be done directly in cross-compilation.  You must make your
2973 own arrangements to provide suitable library functions for
2974 cross-compilation.
2975 .Sp
2976 .B \-msoft\-float
2977 changes the calling convention in the output file;
2978 therefore, it is only useful if you compile
2979 .I all
2980 of a program with this option.
2981 .PP
2982 .B \-mno\-epilogue
2983 .TP
2984 .B \-mepilogue
2985 With
2986 .B \-mepilogue
2987 (the default), the compiler always emits code for
2988 function exit at the end of each function.  Any function exit in
2989 the middle of the function (such as a return statement in C) will
2990 generate a jump to the exit code at the end of the function.
2991 .Sp
2992 With
2993 .BR \-mno\-epilogue ,
2994 the compiler tries to emit exit code inline at every function exit.
2995 .PP
2996 .B \-mno\-v8
2997 .TP
2998 .B \-mv8
2999 .TP
3000 .B \-msparclite
3001 These three options select variations on the SPARC architecture.
3002 .Sp
3003 By default (unless specifically configured for the Fujitsu SPARClite),
3004 GCC generates code for the v7 variant of the SPARC architecture.
3005 .Sp
3006 .B \-mv8
3007 will give you SPARC v8 code.  The only difference from v7
3008 code is that the compiler emits the integer multiply and integer
3009 divide instructions which exist in SPARC v8 but not in SPARC v7.
3010 .Sp
3011 .B \-msparclite
3012 will give you SPARClite code.  This adds the integer
3013 multiply, integer divide step and scan (ffs) instructions which
3014 exist in SPARClite but not in SPARC v7.
3015 .PP
3016 .B \-mcypress
3017 .TP
3018 .B \-msupersparc
3019 These two options select the processor for which the code is optimized.
3020 .Sp
3021 With
3022 .B \-mcypress
3023 (the default), the compiler optimizes code for the Cypress CY7C602 chip, as
3024 used in the SparcStation/SparcServer 3xx series. This is also appropriate for
3025 the older SparcStation 1, 2, IPX etc.
3026 .Sp
3027 With
3028 .B \-msupersparc
3029 the compiler optimizes code for the SuperSparc cpu, as used in the SparcStation
3030 10, 1000 and 2000 series. This flag also enables use of the full SPARC v8
3031 instruction set.
3032 .PP
3033 These `\|\c
3034 .B \-m\c
3035 \&\|' options are defined for the Convex:
3036 .TP
3037 .B \-mc1
3038 Generate output for a C1.  This is the default when the compiler is
3039 configured for a C1.
3040 .TP
3041 .B \-mc2
3042 Generate output for a C2.  This is the default when the compiler is
3043 configured for a C2.
3044 .TP
3045 .B \-margcount
3046 Generate code which puts an argument count in the word preceding each
3047 argument list.  Some nonportable Convex and Vax programs need this word.
3048 (Debuggers don't, except for functions with variable-length argument
3049 lists; this info is in the symbol table.)
3050 .TP
3051 .B \-mnoargcount
3052 Omit the argument count word.  This is the default if you use the
3053 unmodified sources.
3054 .PP
3055 These `\|\c
3056 .B \-m\c
3057 \&\|' options are defined for the AMD Am29000:
3058 .TP
3059 .B \-mdw
3060 Generate code that assumes the DW bit is set, i.e., that byte and
3061 halfword operations are directly supported by the hardware.  This is the
3062 default.
3063 .TP
3064 .B \-mnodw
3065 Generate code that assumes the DW bit is not set.
3066 .TP
3067 .B \-mbw
3068 Generate code that assumes the system supports byte and halfword write
3069 operations.  This is the default.
3070 .TP
3071 .B \-mnbw
3072 Generate code that assumes the systems does not support byte and
3073 halfword write operations.  This implies `\|\c
3074 .B \-mnodw\c
3075 \&\|'.
3076 .TP
3077 .B \-msmall
3078 Use a small memory model that assumes that all function addresses are
3079 either within a single 256 KB segment or at an absolute address of less
3080 than 256K.  This allows the \c
3081 .B call\c
3082 \& instruction to be used instead
3083 of a \c
3084 .B const\c
3085 \&, \c
3086 .B consth\c
3087 \&, \c
3088 .B calli\c
3089 \& sequence.
3090 .TP
3091 .B \-mlarge
3092 Do not assume that the \c
3093 .B call\c
3094 \& instruction can be used; this is the
3095 default.
3096 .TP
3097 .B \-m29050
3098 Generate code for the Am29050.
3099 .TP
3100 .B \-m29000
3101 Generate code for the Am29000.  This is the default.
3102 .TP
3103 .B \-mkernel\-registers
3104 Generate references to registers \c
3105 .B gr64-gr95\c
3106 \& instead of
3107 .B gr96-gr127\c
3108 \&.  This option can be used when compiling kernel code
3109 that wants a set of global registers disjoint from that used by
3110 user-mode code.
3111 .Sp
3112 Note that when this option is used, register names in `\|\c
3113 .B \-f\c
3114 \&\|' flags
3115 must use the normal, user-mode, names.
3116 .TP
3117 .B \-muser\-registers
3118 Use the normal set of global registers, \c
3119 .B gr96-gr127\c
3120 \&.  This is the
3121 default.
3122 .TP
3123 .B \-mstack\-check
3124 Insert a call to \c
3125 .B _\|_msp_check\c
3126 \& after each stack adjustment.  This
3127 is often used for kernel code.
3128 .PP
3129 These `\|\c
3130 .B \-m\c
3131 \&\|' options are defined for Motorola 88K architectures:
3132 .TP
3133 .B \-m88000
3134 Generate code that works well on both the m88100 and the
3135 m88110.
3136 .TP
3137 .B \-m88100
3138 Generate code that works best for the m88100, but that also
3139 runs on the m88110.
3140 .TP
3141 .B \-m88110
3142 Generate code that works best for the m88110, and may not run
3143 on the m88100.
3144 .TP
3145 .B \-midentify\-revision
3146 Include an \c
3147 .B ident\c
3148 \& directive in the assembler output recording the
3149 source file name, compiler name and version, timestamp, and compilation
3150 flags used.
3151 .TP
3152 .B \-mno\-underscores
3153 In assembler output, emit symbol names without adding an underscore
3154 character at the beginning of each name.  The default is to use an
3155 underscore as prefix on each name.
3156 .TP
3157 .B \-mno\-check\-zero\-division
3158 .TP
3159 .B \-mcheck\-zero\-division
3160 Early models of the 88K architecture had problems with division by zero;
3161 in particular, many of them didn't trap.  Use these options to avoid
3162 including (or to include explicitly) additional code to detect division
3163 by zero and signal an exception.  All GCC configurations for the 88K use
3164 `\|\c
3165 .B \-mcheck\-zero\-division\c
3166 \&\|' by default.
3167 .TP
3168 .B \-mocs\-debug\-info
3169 .TP
3170 .B \-mno\-ocs\-debug\-info
3171 Include (or omit) additional debugging information (about
3172 registers used in each stack frame) as specified in the 88Open Object
3173 Compatibility Standard, \*(lqOCS\*(rq.  This extra information is not needed
3174 by GDB.  The default for DG/UX, SVr4, and Delta 88 SVr3.2 is to
3175 include this information; other 88k configurations omit this information
3176 by default.
3177 .TP
3178 .B \-mocs\-frame\-position
3179 .TP
3180 .B \-mno\-ocs\-frame\-position
3181 Force (or do not require) register values to be stored in a particular
3182 place in stack frames, as specified in OCS.  The DG/UX, Delta88 SVr3.2,
3183 and BCS configurations use `\|\c
3184 .B \-mocs\-frame\-position\c
3185 \&\|'; other 88k
3186 configurations have the default `\|\c
3187 .B \-mno\-ocs\-frame\-position\c
3188 \&\|'.
3189 .TP
3190 .B \-moptimize\-arg\-area
3191 .TP
3192 .B \-mno\-optimize\-arg\-area
3193 Control how to store function arguments in stack frames.
3194 `\|\c
3195 .B \-moptimize\-arg\-area\c
3196 \&\|' saves space, but may break some
3197 debuggers (not GDB).  `\|\c
3198 .B \-mno\-optimize\-arg\-area\c
3199 \&\|' conforms better to
3200 standards.   By default GCC does not optimize the argument area.
3201 .TP
3202 .BI "\-mshort\-data\-" "num"
3203 .I num
3204 Generate smaller data references by making them relative to \c
3205 .B r0\c
3206 \&,
3207 which allows loading a value using a single instruction (rather than the
3208 usual two).  You control which data references are affected by
3209 specifying \c
3210 .I num\c
3211 \& with this option.  For example, if you specify
3212 `\|\c
3213 .B \-mshort\-data\-512\c
3214 \&\|', then the data references affected are those
3215 involving displacements of less than 512 bytes.
3216 `\|\c
3217 .B \-mshort\-data\-\c
3218 .I num\c
3219 \&\c
3220 \&\|' is not effective for \c
3221 .I num\c
3222 \& greater
3223 than 64K.
3224 .PP
3225 .B \-mserialize-volatile
3226 .TP
3227 .B \-mno-serialize-volatile
3228 Do, or do not, generate code to guarantee sequential consistency of
3229 volatile memory references.
3230 .Sp
3231 GNU CC always guarantees consistency by default, for the preferred
3232 processor submodel.  How this is done depends on the submodel.
3233 .Sp
3234 The m88100 processor does not reorder memory references and so always
3235 provides sequential consistency.  If you use `\|\c
3236 .B \-m88100\c
3237 \&\|', GNU CC does
3238 not generate any special instructions for sequential consistency.
3239 .Sp
3240 The order of memory references made by the m88110 processor does not
3241 always match the order of the instructions requesting those references.
3242 In particular, a load instruction may execute before a preceding store
3243 instruction.  Such reordering violates sequential consistency of
3244 volatile memory references, when there are multiple processors.  When
3245 you use `\|\c
3246 .B \-m88000\c
3247 \&\|' or `\|\c
3248 .B \-m88110\c
3249 \&\|', GNU CC generates special
3250 instructions when appropriate, to force execution in the proper order.
3251 .Sp
3252 The extra code generated to guarantee consistency may affect the
3253 performance of your application.  If you know that you can safely forgo
3254 this guarantee, you may use the option `\|\c
3255 .B \-mno-serialize-volatile\c
3256 \&\|'.
3257 .Sp
3258 If you use the `\|\c
3259 .B \-m88100\c
3260 \&\|' option but require sequential consistency
3261 when running on the m88110 processor, you should use
3262 `\|\c
3263 .B \-mserialize-volatile\c
3264 \&\|'.
3265 .PP
3266 .B \-msvr4
3267 .TP
3268 .B \-msvr3
3269 Turn on (`\|\c
3270 .B \-msvr4\c
3271 \&\|') or off (`\|\c
3272 .B \-msvr3\c
3273 \&\|') compiler extensions
3274 related to System V release 4 (SVr4).  This controls the following:
3275 .TP
3276 \ \ \ \(bu
3277 Which variant of the assembler syntax to emit (which you can select
3278 independently using `\|\c
3279 .B \-mversion\-03.00\c
3280 \&\|').
3281 .TP
3282 \ \ \ \(bu
3283 `\|\c
3284 .B \-msvr4\c
3285 \&\|' makes the C preprocessor recognize `\|\c
3286 .B #pragma weak\c
3287 \&\|'
3288 .TP
3289 \ \ \ \(bu
3290 `\|\c
3291 .B \-msvr4\c
3292 \&\|' makes GCC issue additional declaration directives used in
3293 SVr4.
3294 .PP
3295 `\|\c
3296 .B \-msvr3\c
3297 \&\|' is the default for all m88K configurations except
3298 the SVr4 configuration.
3299 .TP
3300 .B \-mtrap\-large\-shift
3301 .TP
3302 .B \-mhandle\-large\-shift
3303 Include code to detect bit-shifts of more than 31 bits; respectively,
3304 trap such shifts or emit code to handle them properly.  By default GCC
3305 makes no special provision for large bit shifts.
3306 .TP
3307 .B \-muse\-div\-instruction
3308 Very early models of the 88K architecture didn't have a divide
3309 instruction, so GCC avoids that instruction by default.  Use this option
3310 to specify that it's safe to use the divide instruction.
3311 .TP
3312 .B \-mversion\-03.00
3313 In the DG/UX configuration, there are two flavors of SVr4.  This option
3314 modifies
3315 .B \-msvr4
3316 to select whether the hybrid-COFF or real-ELF
3317 flavor is used.  All other configurations ignore this option.
3318 .TP
3319 .B \-mwarn\-passed\-structs
3320 Warn when a function passes a struct as an argument or result.
3321 Structure-passing conventions have changed during the evolution of the C
3322 language, and are often the source of portability problems.  By default,
3323 GCC issues no such warning.
3324 .PP
3325 These options are defined for the IBM RS6000:
3326 .PP
3327 .B \-mfp\-in\-toc
3328 .TP
3329 .B \-mno\-fp\-in\-toc
3330 Control whether or not floating-point constants go in the Table of
3331 Contents (TOC), a table of all global variable and function addresses.  By
3332 default GCC puts floating-point constants there; if the TOC overflows,
3333 `\|\c
3334 .B \-mno\-fp\-in\-toc\c
3335 \&\|' will reduce the size of the TOC, which may avoid
3336 the overflow.
3337 .PP
3338 These `\|\c
3339 .B \-m\c
3340 \&\|' options are defined for the IBM RT PC:
3341 .TP
3342 .B \-min\-line\-mul
3343 Use an in-line code sequence for integer multiplies.  This is the
3344 default.
3345 .TP
3346 .B \-mcall\-lib\-mul
3347 Call \c
3348 .B lmul$$\c
3349 \& for integer multiples.
3350 .TP
3351 .B \-mfull\-fp\-blocks
3352 Generate full-size floating point data blocks, including the minimum
3353 amount of scratch space recommended by IBM.  This is the default.
3354 .TP
3355 .B \-mminimum\-fp\-blocks
3356 Do not include extra scratch space in floating point data blocks.  This
3357 results in smaller code, but slower execution, since scratch space must
3358 be allocated dynamically.
3359 .TP
3360 .B \-mfp\-arg\-in\-fpregs
3361 Use a calling sequence incompatible with the IBM calling convention in
3362 which floating point arguments are passed in floating point registers.
3363 Note that \c
3364 .B varargs.h\c
3365 \& and \c
3366 .B stdargs.h\c
3367 \& will not work with
3368 floating point operands if this option is specified.
3369 .TP
3370 .B \-mfp\-arg\-in\-gregs
3371 Use the normal calling convention for floating point arguments.  This is
3372 the default.
3373 .TP
3374 .B \-mhc\-struct\-return
3375 Return structures of more than one word in memory, rather than in a
3376 register.  This provides compatibility with the MetaWare HighC (hc)
3377 compiler.  Use `\|\c
3378 .B \-fpcc\-struct\-return\c
3379 \&\|' for compatibility with the
3380 Portable C Compiler (pcc).
3381 .TP
3382 .B \-mnohc\-struct\-return
3383 Return some structures of more than one word in registers, when
3384 convenient.  This is the default.  For compatibility with the
3385 IBM-supplied compilers, use either `\|\c
3386 .B \-fpcc\-struct\-return\c
3387 \&\|' or
3388 `\|\c
3389 .B \-mhc\-struct\-return\c
3390 \&\|'.
3391 .PP
3392 These `\|\c
3393 .B \-m\c
3394 \&\|' options are defined for the MIPS family of computers:
3395 .TP
3396 .BI "\-mcpu=" "cpu-type"
3397 Assume the defaults for the machine type
3398 .I cpu-type
3399 when
3400 scheduling instructions.  The default
3401 .I cpu-type
3402 is
3403 .BR default ,
3404 which picks the longest cycles times for any of the machines, in order
3405 that the code run at reasonable rates on all MIPS cpu's.  Other
3406 choices for
3407 .I cpu-type
3408 are
3409 .BR r2000 ,
3410 .BR r3000 ,
3411 .BR r4000 ,
3412 and
3413 .BR r6000 .
3414 While picking a specific
3415 .I cpu-type
3416 will schedule things appropriately for that particular chip, the
3417 compiler will not generate any code that does not meet level 1 of the
3418 MIPS ISA (instruction set architecture) without the
3419 .B \-mips2
3420 or
3421 .B \-mips3
3422 switches being used.
3423 .TP
3424 .B \-mips2
3425 Issue instructions from level 2 of the MIPS ISA (branch likely, square
3426 root instructions).  The
3427 .B \-mcpu=r4000
3428 or
3429 .B \-mcpu=r6000
3430 switch must be used in conjunction with
3431 .BR \-mips2 .
3432 .TP
3433 .B \-mips3
3434 Issue instructions from level 3 of the MIPS ISA (64 bit instructions).
3435 The
3436 .B \-mcpu=r4000
3437 switch must be used in conjunction with
3438 .BR \-mips2 .
3439 .TP
3440 .B \-mint64
3441 .TP
3442 .B \-mlong64
3443 .TP
3444 .B \-mlonglong128
3445 These options don't work at present.
3446 .TP
3447 .B \-mmips\-as
3448 Generate code for the MIPS assembler, and invoke
3449 .B mips\-tfile
3450 to add normal debug information.  This is the default for all
3451 platforms except for the OSF/1 reference platform, using the OSF/rose
3452 object format.  If any of the
3453 .BR \-ggdb ,
3454 .BR \-gstabs ,
3455 or
3456 .B \-gstabs+
3457 switches are used, the
3458 .B mips\-tfile
3459 program will encapsulate the stabs within MIPS ECOFF.
3460 .TP
3461 .B \-mgas
3462 Generate code for the GNU assembler.  This is the default on the OSF/1
3463 reference platform, using the OSF/rose object format.
3464 .TP
3465 .B \-mrnames
3466 .TP
3467 .B \-mno\-rnames
3468 The
3469 .B \-mrnames
3470 switch says to output code using the MIPS software names for the
3471 registers, instead of the hardware names (ie,
3472 .B a0
3473 instead of
3474 .BR $4 ).
3475 The GNU assembler does not support the
3476 .B \-mrnames
3477 switch, and the MIPS assembler will be instructed to run the MIPS C
3478 preprocessor over the source file.  The
3479 .B \-mno\-rnames
3480 switch is default.
3481 .TP
3482 .B \-mgpopt
3483 .TP
3484 .B \-mno\-gpopt
3485 The
3486 .B \-mgpopt
3487 switch says to write all of the data declarations before the
3488 instructions in the text section, to all the MIPS assembler to
3489 generate one word memory references instead of using two words for
3490 short global or static data items.  This is on by default if
3491 optimization is selected.
3492 .TP
3493 .B \-mstats
3494 .TP
3495 .B \-mno\-stats
3496 For each non-inline function processed, the
3497 .B \-mstats
3498 switch causes the compiler to emit one line to the standard error file
3499 to print statistics about the program (number of registers saved,
3500 stack size, etc.).
3501 .TP
3502 .B \-mmemcpy
3503 .TP
3504 .B \-mno\-memcpy
3505 The
3506 .B \-mmemcpy
3507 switch makes all block moves call the appropriate string function
3508 .RB ( memcpy
3509 or
3510 .BR bcopy )
3511 instead of possibly generating inline code.
3512 .TP
3513 .B \-mmips\-tfile
3514 .TP
3515 .B \-mno\-mips\-tfile
3516 The
3517 .B \-mno\-mips\-tfile
3518 switch causes the compiler not postprocess the object file with the
3519 .B mips\-tfile
3520 program, after the MIPS assembler has generated it to add debug
3521 support.  If
3522 .B mips\-tfile
3523 is not run, then no local variables will be available to the debugger.
3524 In addition,
3525 .B stage2
3526 and
3527 .B stage3
3528 objects will have the temporary file names passed to the assembler
3529 embedded in the object file, which means the objects will not compare
3530 the same.
3531 .TP
3532 .B \-msoft\-float
3533 Generate output containing library calls for floating point.
3534 .I
3535 WARNING:
3536 the requisite libraries are not part of GNU CC.  Normally the
3537 facilities of the machine's usual C compiler are used, but this can't
3538 be done directly in cross-compilation.  You must make your own
3539 arrangements to provide suitable library functions for cross-compilation.
3540 .TP
3541 .B \-mhard\-float
3542 Generate output containing floating point instructions.  This is the
3543 default if you use the unmodified sources.
3544 .TP
3545 .B \-mfp64
3546 Assume that the
3547 .B FR
3548 bit in the status word is on, and that there are 32 64-bit floating
3549 point registers, instead of 32 32-bit floating point registers.  You
3550 must also specify the
3551 .B \-mcpu=r4000
3552 and
3553 .B \-mips3
3554 switches.
3555 .TP
3556 .B \-mfp32
3557 Assume that there are 32 32-bit floating point registers.  This is the
3558 default.
3559 .PP
3560 .B \-mabicalls
3561 .TP
3562 .B \-mno\-abicalls
3563 Emit (or do not emit) the
3564 .BR \&.abicalls ,
3565 .BR \&.cpload ,
3566 and
3567 .B \&.cprestore
3568 pseudo operations that some System V.4 ports use for position
3569 independent code.
3570 .TP
3571 .B \-mhalf\-pic
3572 .TP
3573 .B \-mno\-half\-pic
3574 The
3575 .B \-mhalf\-pic
3576 switch says to put pointers to extern references into the data section
3577 and load them up, rather than put the references in the text section.
3578 This option does not work at present.
3579 .B
3580 .BI \-G num
3581 Put global and static items less than or equal to
3582 .I num
3583 bytes into the small data or bss sections instead of the normal data
3584 or bss section.  This allows the assembler to emit one word memory
3585 reference instructions based on the global pointer
3586 .RB ( gp
3587 or
3588 .BR $28 ),
3589 instead of the normal two words used.  By default,
3590 .I num
3591 is 8 when the MIPS assembler is used, and 0 when the GNU
3592 assembler is used.  The
3593 .BI \-G num
3594 switch is also passed to the assembler and linker.  All modules should
3595 be compiled with the same
3596 .BI \-G num
3597 value.
3598 .TP
3599 .B \-nocpp
3600 Tell the MIPS assembler to not run its preprocessor over user
3601 assembler files (with a `\|\c
3602 .B .s\c
3603 \&\|' suffix) when assembling them.
3604 .PP
3605 These `\|\c
3606 .B \-m\c
3607 \&\|' options are defined for the Intel 80386 family of computers:
3608 .TP
3609 .B \-m486
3610 .TP
3611 .B \-mno\-486
3612 Control whether or not code is optimized for a 486 instead of an
3613 386.  Code generated for a 486 will run on a 386 and vice versa.
3614 .TP
3615 .B \-mpentium
3616 Synonym for
3617 .B \-mcpu=pentium
3618 .TP
3619 .B \-mpentiumpro
3620 Synonym for
3621 .B \-mcpu=pentiumpro
3622 .TP
3623 .B \-mcpu=\fIcpu type\fP
3624 Assume the defaults for the machine type CPU TYPE when scheduling instructions.
3625 The choices for CPU TYPE are:
3626 .B i386,
3627 .B i486,
3628 .B i586
3629 (pentium),
3630 .B pentium,
3631 .B i686
3632 (pentiumpro),
3633 and
3634 .B pentiumpro.
3635 While picking a specific CPU TYPE will schedule things appropriately for that
3636 particular chip,
3637 the compiler will not generate any code that does not run on the i386 without
3638 the
3639 .B \-march=\fIcpu type\fP
3640 option being used.
3641 .TP
3642 .B \-march=\fIcpu type\fP
3643 Generate instructions for the machine type CPU TYPE.
3644 The choices for CPU TYPE are:
3645 .B i386,
3646 .B i486,
3647 .B pentium,
3648 and
3649 .B pentiumpro.
3650 Specifying
3651 .B \-march=\fIcpu type\fP
3652 implies
3653 .B \-mcpu=\fIcpu type\fP.
3654 .TP
3655 .B \-msoft\-float
3656 Generate output containing library calls for floating point.
3657 .I Warning:
3658 the requisite libraries are not part of GNU CC.
3659 Normally the facilities of the machine's usual C compiler are used, but
3660 this can't be done directly in cross-compilation.  You must make your
3661 own arrangements to provide suitable library functions for
3662 cross-compilation.
3663 .Sp
3664 On machines where a function returns floating point results in the 80387
3665 register stack, some floating point opcodes may be emitted even if
3666 `\|\c
3667 .B \-msoft-float\c
3668 \&\|' is used.
3669 .TP
3670 .B \-mno-fp-ret-in-387
3671 Do not use the FPU registers for return values of functions.
3672 .Sp
3673 The usual calling convention has functions return values of types
3674 .B float\c
3675 \& and \c
3676 .B double\c
3677 \& in an FPU register, even if there
3678 is no FPU.  The idea is that the operating system should emulate
3679 an FPU.
3680 .Sp
3681 The option `\|\c
3682 .B \-mno-fp-ret-in-387\c
3683 \&\|' causes such values to be returned
3684 in ordinary CPU registers instead.
3685 .TP
3686 .B \-mprofiler-epilogue
3687 .TP
3688 .B \-mno-profiler-epilogue
3689 Generate extra code to write profile information for function exits.
3690 .PP
3691 These `\|\c
3692 .B \-m\c
3693 \&\|' options are defined for the HPPA family of computers:
3694 .TP
3695 .B \-mpa-risc-1-0
3696 Generate code for a PA 1.0 processor.
3697 .TP
3698 .B \-mpa-risc-1-1
3699 Generate code for a PA 1.1 processor.
3700 .TP
3701 .B \-mkernel
3702 Generate code which is suitable for use in kernels.  Specifically, avoid
3703 .B add\c
3704 \& instructions in which one of the arguments is the DP register;
3705 generate \c
3706 .B addil\c
3707 \& instructions instead.  This avoids a rather serious
3708 bug in the HP-UX linker.
3709 .TP
3710 .B \-mshared-libs
3711 Generate code that can be linked against HP-UX shared libraries.  This option
3712 is not fully function yet, and is not on by default for any PA target.  Using
3713 this option can cause incorrect code to be generated by the compiler.
3714 .TP
3715 .B \-mno-shared-libs
3716 Don't generate code that will be linked against shared libraries.  This is
3717 the default for all PA targets.
3718 .TP
3719 .B \-mlong-calls
3720 Generate code which allows calls to functions greater than 256K away from
3721 the caller when the caller and callee are in the same source file.  Do
3722 not turn this option on unless code refuses to link with \*(lqbranch out of
3723 range errors\*('' from the linker.
3724 .TP
3725 .B \-mdisable-fpregs
3726 Prevent floating point registers from being used in any manner.  This is
3727 necessary for compiling kernels which perform lazy context switching of
3728 floating point registers.  If you use this option and attempt to perform
3729 floating point operations, the compiler will abort.
3730 .TP
3731 .B \-mdisable-indexing
3732 Prevent the compiler from using indexing address modes.  This avoids some
3733 rather obscure problems when compiling MIG generated code under MACH.
3734 .TP
3735 .B \-mtrailing-colon
3736 Add a colon to the end of label definitions (for ELF assemblers).
3737 .PP
3738 These `\|\c
3739 .B \-m\c
3740 \&\|' options are defined for the Intel 80960 family of computers:
3741 .TP
3742 .BI "\-m" "cpu-type"
3743 Assume the defaults for the machine type
3744 .I cpu-type
3745 for instruction and addressing-mode availability and alignment.
3746 The default
3747 .I cpu-type
3748 is
3749 .BR kb ;
3750 other choices are
3751 .BR ka ,
3752 .BR mc ,
3753 .BR ca ,
3754 .BR cf ,
3755 .BR sa ,
3756 and
3757 .BR sb .
3758 .TP
3759 .B \-mnumerics
3760 .TP
3761 .B \-msoft\-float
3762 The
3763 .B \-mnumerics
3764 option indicates that the processor does support
3765 floating-point instructions.  The
3766 .B \-msoft\-float
3767 option indicates
3768 that floating-point support should not be assumed.
3769 .TP
3770 .B \-mleaf\-procedures
3771 .TP
3772 .B \-mno\-leaf\-procedures
3773 Do (or do not) attempt to alter leaf procedures to be callable with the
3774 .I bal
3775 instruction as well as
3776 .IR call .
3777 This will result in more
3778 efficient code for explicit calls when the
3779 .I bal
3780 instruction can be
3781 substituted by the assembler or linker, but less efficient code in other
3782 cases, such as calls via function pointers, or using a linker that doesn't
3783 support this optimization.
3784 .TP
3785 .B \-mtail\-call
3786 .TP
3787 .B \-mno\-tail\-call
3788 Do (or do not) make additional attempts (beyond those of the
3789 machine-independent portions of the compiler) to optimize tail-recursive
3790 calls into branches.  You may not want to do this because the detection of
3791 cases where this is not valid is not totally complete.  The default is
3792 .BR \-mno\-tail\-call .
3793 .TP
3794 .B \-mcomplex\-addr
3795 .TP
3796 .B \-mno\-complex\-addr
3797 Assume (or do not assume) that the use of a complex addressing mode is a
3798 win on this implementation of the i960.  Complex addressing modes may not
3799 be worthwhile on the K-series, but they definitely are on the C-series.
3800 The default is currently
3801 .B \-mcomplex\-addr
3802 for all processors except
3803 the CB and CC.
3804 .TP
3805 .B \-mcode\-align
3806 .TP
3807 .B \-mno\-code\-align
3808 Align code to 8-byte boundaries for faster fetching (or don't bother).
3809 Currently turned on by default for C-series implementations only.
3810 .TP
3811 .B \-mic\-compat
3812 .TP
3813 .B \-mic2.0\-compat
3814 .TP
3815 .B \-mic3.0\-compat
3816 Enable compatibility with iC960 v2.0 or v3.0.
3817 .TP
3818 .B \-masm\-compat
3819 .TP
3820 .B \-mintel\-asm
3821 Enable compatibility with the iC960 assembler.
3822 .TP
3823 .B \-mstrict\-align
3824 .TP
3825 .B \-mno\-strict\-align
3826 Do not permit (do permit) unaligned accesses.
3827 .TP
3828 .B \-mold\-align
3829 Enable structure-alignment compatibility with Intel's gcc release version
3830 1.3 (based on gcc 1.37).  Currently this is buggy in that
3831 .B #pragma align 1
3832 is always assumed as well, and cannot be turned off.
3833 .PP
3834 These `\|\c
3835 .B \-m\c
3836 \&\|' options are defined for the DEC Alpha implementations:
3837 .TP
3838 .B \-mno-soft-float
3839 .TP
3840 .B \-msoft-float
3841 Use (do not use) the hardware floating-point instructions for
3842 floating-point operations.  When \c
3843 .B \-msoft-float\c
3844 \& is specified,
3845 functions in `\|\c
3846 .B libgcc1.c\c
3847 \&\|' will be used to perform floating-point
3848 operations.  Unless they are replaced by routines that emulate the
3849 floating-point operations, or compiled in such a way as to call such
3850 emulations routines, these routines will issue floating-point
3851 operations.   If you are compiling for an Alpha without floating-point
3852 operations, you must ensure that the library is built so as not to call
3853 them.
3854 .Sp
3855 Note that Alpha implementations without floating-point operations are
3856 required to have floating-point registers.
3857 .TP
3858 .B \-mfp-reg
3859 .TP
3860 .B \-mno-fp-regs
3861 Generate code that uses (does not use) the floating-point register set.
3862 .B \-mno-fp-regs\c
3863 \& implies \c
3864 .B \-msoft-float\c
3865 \&.  If the floating-point
3866 register set is not used, floating point operands are passed in integer
3867 registers as if they were integers and floating-point results are passed
3868 in $0 instead of $f0.  This is a non-standard calling sequence, so any
3869 function with a floating-point argument or return value called by code
3870 compiled with \c
3871 .B \-mno-fp-regs\c
3872 \& must also be compiled with that
3873 option.
3874 .Sp
3875 A typical use of this option is building a kernel that does not use,
3876 and hence need not save and restore, any floating-point registers.
3877 .PP
3878 These additional options are available on System V Release 4 for
3879 compatibility with other compilers on those systems:
3880 .TP
3881 .B \-G
3882 On SVr4 systems, \c
3883 .B gcc\c
3884 \& accepts the option `\|\c
3885 .B \-G\c
3886 \&\|' (and passes
3887 it to the system linker), for compatibility with other compilers.
3888 However, we suggest you use `\|\c
3889 .B \-symbolic\c
3890 \&\|' or `\|\c
3891 .B \-shared\c
3892 \&\|' as
3893 appropriate, instead of supplying linker options on the \c
3894 .B gcc
3895 command line.
3896 .TP
3897 .B \-Qy
3898 Identify the versions of each tool used by the compiler, in a
3899 .B .ident\c
3900 \& assembler directive in the output.
3901 .TP
3902 .B \-Qn
3903 Refrain from adding \c
3904 .B .ident\c
3905 \& directives to the output file (this is
3906 the default).
3907 .TP
3908 .BI "\-YP," "dirs"
3909 Search the directories \c
3910 .I dirs\c
3911 \&, and no others, for libraries
3912 specified with `\|\c
3913 .B \-l\c
3914 \&\|'.  You can separate directory entries in
3915 .I dirs\c
3916 \& from one another with colons.
3917 .TP
3918 .BI "\-Ym," "dir"
3919 Look in the directory \c
3920 .I dir\c
3921 \& to find the M4 preprocessor.
3922 The assembler uses this option.
3923 .SH CODE GENERATION OPTIONS
3924 These machine-independent options control the interface conventions
3925 used in code generation.
3926 .PP
3927 Most of them begin with `\|\c
3928 \-f\c
3929 \&\|'.  These options have both positive and negative forms; the negative form
3930 of `\|\c
3931 .B \-ffoo\c
3932 \&\|' would be `\|\c
3933 .B \-fno\-foo\c
3934 \&\|'.  In the table below, only
3935 one of the forms is listed\(em\&the one which is not the default.  You
3936 can figure out the other form by either removing `\|\c
3937 .B no\-\c
3938 \&\|' or adding
3939 it.
3940 .TP
3941 .B \-fnonnull\-objects
3942 Assume that objects reached through references are not null
3943 (C++ only).
3944 .Sp
3945 Normally, GNU C++ makes conservative assumptions about objects reached
3946 through references.  For example, the compiler must check that \c
3947 .B a
3948 is not null in code like the following:
3949 .Sp
3950 obj &a = g ();
3951 a.f (2);
3952 .Sp
3953 Checking that references of this sort have non-null values requires
3954 extra code, however, and it is unnecessary for many programs.  You can
3955 use `\|\c
3956 .B \-fnonnull-objects\c
3957 \&\|' to omit the checks for null, if your
3958 program doesn't require checking.
3959 .TP
3960 .B \-fpcc\-struct\-return
3961 Use the same convention for returning \c
3962 .B struct\c
3963 \& and \c
3964 .B union
3965 values that is used by the usual C compiler on your system.  This
3966 convention is less efficient for small structures, and on many
3967 machines it fails to be reentrant; but it has the advantage of
3968 allowing intercallability between GCC-compiled code and PCC-compiled
3969 code.
3970 .TP
3971 .B \-freg\-struct\-return
3972 Use the convention that
3973 .B struct
3974 and
3975 .B union
3976 values are returned in registers when possible.  This is more
3977 efficient for small structures than
3978 .BR \-fpcc\-struct\-return .
3979 .Sp
3980 If you specify neither
3981 .B \-fpcc\-struct\-return
3982 nor
3983 .BR \-freg\-struct\-return ,
3984 GNU CC defaults to whichever convention is standard for the target.
3985 If there is no standard convention, GNU CC defaults to
3986 .BR \-fpcc\-struct\-return .
3987 .TP
3988 .B \-fshort\-enums
3989 Allocate to an \c
3990 .B enum\c
3991 \& type only as many bytes as it needs for the
3992 declared range of possible values.  Specifically, the \c
3993 .B enum\c
3994 \& type
3995 will be equivalent to the smallest integer type which has enough room.
3996 .TP
3997 .B \-fshort\-double
3998 Use the same size for
3999 .B double
4000 as for
4001 .B float
4002 \&.
4003 .TP
4004 .B \-fshared\-data
4005 Requests that the data and non-\c
4006 .B const\c
4007 \& variables of this
4008 compilation be shared data rather than private data.  The distinction
4009 makes sense only on certain operating systems, where shared data is
4010 shared between processes running the same program, while private data
4011 exists in one copy per process.
4012 .TP
4013 .B \-fno\-common
4014 Allocate even uninitialized global variables in the bss section of the
4015 object file, rather than generating them as common blocks.  This has the
4016 effect that if the same variable is declared (without \c
4017 .B extern\c
4018 \&) in
4019 two different compilations, you will get an error when you link them.
4020 The only reason this might be useful is if you wish to verify that the
4021 program will work on other systems which always work this way.
4022 .TP
4023 .B \-fno\-ident
4024 Ignore the `\|\c
4025 .B #ident\c
4026 \&\|' directive.
4027 .TP
4028 .B \-fno\-gnu\-linker
4029 Do not output global initializations (such as C++ constructors and
4030 destructors) in the form used by the GNU linker (on systems where the GNU
4031 linker is the standard method of handling them).  Use this option when
4032 you want to use a non-GNU linker, which also requires using the
4033 .B collect2\c
4034 \& program to make sure the system linker includes
4035 constructors and destructors.  (\c
4036 .B collect2\c
4037 \& is included in the GNU CC
4038 distribution.)  For systems which \c
4039 .I must\c
4040 \& use \c
4041 .B collect2\c
4042 \&, the
4043 compiler driver \c
4044 .B gcc\c
4045 \& is configured to do this automatically.
4046 .TP
4047 .B \-finhibit-size-directive
4048 Don't output a \c
4049 .B .size\c
4050 \& assembler directive, or anything else that
4051 would cause trouble if the function is split in the middle, and the
4052 two halves are placed at locations far apart in memory.  This option is
4053 used when compiling `\|\c
4054 .B crtstuff.c\c
4055 \&\|'; you should not need to use it
4056 for anything else.
4057 .TP
4058 .B \-fverbose-asm
4059 Put extra commentary information in the generated assembly code to
4060 make it more readable.  This option is generally only of use to those
4061 who actually need to read the generated assembly code (perhaps while
4062 debugging the compiler itself).
4063 .TP
4064 .B \-fvolatile
4065 Consider all memory references through pointers to be volatile.
4066 .TP
4067 .B \-fvolatile\-global
4068 Consider all memory references to extern and global data items to
4069 be volatile.
4070 .TP
4071 .B \-fpic
4072 If supported for the target machines, generate position-independent code,
4073 suitable for use in a shared library.
4074 .TP
4075 .B \-fPIC
4076 If supported for the target machine, emit position-independent code,
4077 suitable for dynamic linking, even if branches need large displacements.
4078 .TP
4079 .BI "\-ffixed\-" "reg"
4080 Treat the register named \c
4081 .I reg\c
4082 \& as a fixed register; generated code
4083 should never refer to it (except perhaps as a stack pointer, frame
4084 pointer or in some other fixed role).
4085 .Sp
4086 .I reg\c
4087 \& must be the name of a register.  The register names accepted
4088 are machine-specific and are defined in the \c
4089 .B REGISTER_NAMES
4090 macro in the machine description macro file.
4091 .Sp
4092 This flag does not have a negative form, because it specifies a
4093 three-way choice.
4094 .TP
4095 .BI "\-fcall\-used\-" "reg"
4096 Treat the register named \c
4097 .I reg\c
4098 \& as an allocable register that is
4099 clobbered by function calls.  It may be allocated for temporaries or
4100 variables that do not live across a call.  Functions compiled this way
4101 will not save and restore the register \c
4102 .I reg\c
4103 \&.
4104 .Sp
4105 Use of this flag for a register that has a fixed pervasive role in the
4106 machine's execution model, such as the stack pointer or frame pointer,
4107 will produce disastrous results.
4108 .Sp
4109 This flag does not have a negative form, because it specifies a
4110 three-way choice.
4111 .TP
4112 .BI "\-fcall\-saved\-" "reg"
4113 Treat the register named \c
4114 .I reg\c
4115 \& as an allocable register saved by
4116 functions.  It may be allocated even for temporaries or variables that
4117 live across a call.  Functions compiled this way will save and restore
4118 the register \c
4119 .I reg\c
4120 \& if they use it.
4121 .Sp
4122 Use of this flag for a register that has a fixed pervasive role in the
4123 machine's execution model, such as the stack pointer or frame pointer,
4124 will produce disastrous results.
4125 .Sp
4126 A different sort of disaster will result from the use of this flag for
4127 a register in which function values may be returned.
4128 .Sp
4129 This flag does not have a negative form, because it specifies a
4130 three-way choice.
4131 .SH PRAGMAS
4132 Two `\|\c
4133 .B #pragma\c
4134 \&\|' directives are supported for GNU C++, to permit using the same
4135 header file for two purposes: as a definition of interfaces to a given
4136 object class, and as the full definition of the contents of that object class.
4137 .TP
4138 .B #pragma interface
4139 (C++ only.)
4140 Use this directive in header files that define object classes, to save
4141 space in most of the object files that use those classes.  Normally,
4142 local copies of certain information (backup copies of inline member
4143 functions, debugging information, and the internal tables that
4144 implement virtual functions) must be kept in each object file that
4145 includes class definitions.  You can use this pragma to avoid such
4146 duplication.  When a header file containing `\|\c
4147 .B #pragma interface\c
4148 \&\|' is included in a compilation, this auxiliary information
4149 will not be generated (unless the main input source file itself uses
4150 `\|\c
4151 .B #pragma implementation\c
4152 \&\|').  Instead, the object files will contain references to be
4153 resolved at link time.
4154 .TP
4155 .B #pragma implementation
4156 .TP
4157 \fB#pragma implementation "\fP\fIobjects\fP\fB.h"\fP
4158 (C++ only.)
4159 Use this pragma in a main input file, when you want full output from
4160 included header files to be generated (and made globally visible).
4161 The included header file, in turn, should use `\|\c
4162 .B #pragma interface\c
4163 \&\|'.
4164 Backup copies of inline member functions, debugging information, and
4165 the internal tables used to implement virtual functions are all
4166 generated in implementation files.
4167 .Sp
4168 If you use `\|\c
4169 .B #pragma implementation\c
4170 \&\|' with no argument, it applies to an include file with the same
4171 basename as your source file; for example, in `\|\c
4172 .B allclass.cc\c
4173 \&\|', `\|\c
4174 .B #pragma implementation\c
4175 \&\|' by itself is equivalent to `\|\c
4176 .B
4177 #pragma implementation "allclass.h"\c
4178 \&\|'.  Use the string argument if you want a single implementation
4179 file to include code from multiple header files.
4180 .Sp
4181 There is no way to split up the contents of a single header file into
4182 multiple implementation files.
4183 .SH FILES
4184 .nf
4185 .ta \w'LIBDIR/g++\-include 'u
4186 file.c  C source file
4187 file.h  C header (preprocessor) file
4188 file.i  preprocessed C source file
4189 file.C  C++ source file
4190 file.cc C++ source file
4191 file.cxx        C++ source file
4192 file.m  Objective-C source file
4193 file.s  assembly language file
4194 file.o  object file
4195 a.out   link edited output
4196 \fITMPDIR\fR/cc\(**     temporary files
4197 \fILIBDIR\fR/cpp        preprocessor
4198 \fILIBDIR\fR/cc1        compiler for C
4199 \fILIBDIR\fR/cc1plus    compiler for C++
4200 \fILIBDIR\fR/collect    linker front end needed on some machines
4201 \fILIBDIR\fR/libgcc.a   GCC subroutine library
4202 /lib/crt[01n].o start-up routine
4203 \fILIBDIR\fR/ccrt0      additional start-up routine for C++
4204 /lib/libc.a     standard C library, see
4205 .IR intro (3)
4206 /usr/include    standard directory for \fB#include\fP files
4207 \fILIBDIR\fR/include    standard gcc directory for \fB#include\fP files
4208 \fILIBDIR\fR/g++\-include       additional g++ directory for \fB#include\fP
4209 .Sp
4210 .fi
4211 .I LIBDIR
4212 is usually
4213 .B /usr/local/lib/\c
4214 .IR machine / version .
4215 .br
4216 .I TMPDIR
4217 comes from the environment variable
4218 .B TMPDIR
4219 (default
4220 .B /usr/tmp
4221 if available, else
4222 .B /tmp\c
4223 \&).
4224 .SH "SEE ALSO"
4225 as(1), cpp(1), gdb(1), ld(1)
4226 .br
4227 .RB "`\|" gcc "\|', `\|" cpp \|',
4228 .RB "`\|" as "\|', `\|" ld \|',
4229 and
4230 .RB `\| gdb \|'
4231 entries in
4232 .B info\c
4233 \&.
4234 .br
4235 .I
4236 Using and Porting GNU CC (for version 2.0)\c
4237 , Richard M. Stallman;
4238 .I
4239 The C Preprocessor\c
4240 , Richard M. Stallman;
4241 .I
4242 Debugging with GDB: the GNU Source-Level Debugger\c
4243 , Richard M. Stallman and Roland H. Pesch;
4244 .I
4245 Using as: the GNU Assembler\c
4246 , Dean Elsner, Jay Fenlason & friends;
4247 .I
4248 ld: the GNU linker\c
4249 , Steve Chamberlain and Roland Pesch.
4250 .SH BUGS
4251 For instructions on reporting bugs, see the GCC manual.
4252 .SH COPYING
4253 Copyright
4254 .if t \(co
4255 1991, 1992, 1993 Free Software Foundation, Inc.
4256 .PP
4257 Permission is granted to make and distribute verbatim copies of
4258 this manual provided the copyright notice and this permission notice
4259 are preserved on all copies.
4260 .PP
4261 Permission is granted to copy and distribute modified versions of this
4262 manual under the conditions for verbatim copying, provided that the
4263 entire resulting derived work is distributed under the terms of a
4264 permission notice identical to this one.
4265 .PP
4266 Permission is granted to copy and distribute translations of this
4267 manual into another language, under the above conditions for modified
4268 versions, except that this permission notice may be included in
4269 translations approved by the Free Software Foundation instead of in
4270 the original English.
4271 .SH AUTHORS
4272 See the GNU CC Manual for the contributors to GNU CC.