OSDN Git Service

8e47df4f68468770841de3c598f67ff60ea79717
[pf3gnuchains/pf3gnuchains3x.git] / gcc / fortran / invoke.texi
1 @c Copyright (C) 2004, 2005, 2006, 2007, 2008
2 @c Free Software Foundation, Inc.
3 @c This is part of the GNU Fortran manual.   
4 @c For copying conditions, see the file gfortran.texi.
5
6 @ignore
7 @c man begin COPYRIGHT
8 Copyright @copyright{} 2004, 2005, 2006, 2007, 2008
9 Free Software Foundation, Inc.
10
11 Permission is granted to copy, distribute and/or modify this document
12 under the terms of the GNU Free Documentation License, Version 1.2 or
13 any later version published by the Free Software Foundation; with the
14 Invariant Sections being ``Funding Free Software'', the Front-Cover
15 Texts being (a) (see below), and with the Back-Cover Texts being (b)
16 (see below).  A copy of the license is included in the gfdl(7) man page.
17
18 (a) The FSF's Front-Cover Text is:
19
20      A GNU Manual
21
22 (b) The FSF's Back-Cover Text is:
23
24      You have freedom to copy and modify this GNU Manual, like GNU
25      software.  Copies published by the Free Software Foundation raise
26      funds for GNU development.
27 @c man end
28 @c Set file name and title for the man page.
29 @setfilename gfortran
30 @settitle GNU Fortran compiler.
31 @c man begin SYNOPSIS
32 gfortran [@option{-c}|@option{-S}|@option{-E}]
33          [@option{-g}] [@option{-pg}] [@option{-O}@var{level}]
34          [@option{-W}@var{warn}@dots{}] [@option{-pedantic}]
35          [@option{-I}@var{dir}@dots{}] [@option{-L}@var{dir}@dots{}]
36          [@option{-D}@var{macro}[=@var{defn}]@dots{}] [@option{-U}@var{macro}]
37          [@option{-f}@var{option}@dots{}]
38          [@option{-m}@var{machine-option}@dots{}]
39          [@option{-o} @var{outfile}] @var{infile}@dots{}
40
41 Only the most useful options are listed here; see below for the
42 remainder.
43 @c man end
44 @c man begin SEEALSO
45 gpl(7), gfdl(7), fsf-funding(7),
46 cpp(1), gcov(1), gcc(1), as(1), ld(1), gdb(1), adb(1), dbx(1), sdb(1)
47 and the Info entries for @file{gcc}, @file{cpp}, @file{gfortran}, @file{as},
48 @file{ld}, @file{binutils} and @file{gdb}.
49 @c man end
50 @c man begin BUGS
51 For instructions on reporting bugs, see
52 @w{@value{BUGURL}}.
53 @c man end
54 @c man begin AUTHOR
55 See the Info entry for @command{gfortran} for contributors to GCC and
56 GNU Fortran.
57 @c man end
58 @end ignore
59
60 @node Invoking GNU Fortran
61 @chapter GNU Fortran Command Options
62 @cindex GNU Fortran command options
63 @cindex command options
64 @cindex options, @command{gfortran} command
65
66 @c man begin DESCRIPTION
67
68 The @command{gfortran} command supports all the options supported by the
69 @command{gcc} command.  Only options specific to GNU Fortran are documented here.
70
71 @xref{Invoking GCC,,GCC Command Options,gcc,Using the GNU Compiler
72 Collection (GCC)}, for information
73 on the non-Fortran-specific aspects of the @command{gcc} command (and,
74 therefore, the @command{gfortran} command).
75
76 @cindex options, negative forms
77 All GCC and GNU Fortran options
78 are accepted both by @command{gfortran} and by @command{gcc}
79 (as well as any other drivers built at the same time,
80 such as @command{g++}),
81 since adding GNU Fortran to the GCC distribution
82 enables acceptance of GNU Fortran options
83 by all of the relevant drivers.
84
85 In some cases, options have positive and negative forms;
86 the negative form of @option{-ffoo} would be @option{-fno-foo}.
87 This manual documents only one of these two forms, whichever
88 one is not the default.
89 @c man end
90
91 @menu
92 * Option Summary::      Brief list of all @command{gfortran} options,
93                         without explanations.
94 * Fortran Dialect Options::  Controlling the variant of Fortran language
95                              compiled.
96 * Preprocessing Options::  Enable and customize preprocessing.
97 * Error and Warning Options::     How picky should the compiler be?
98 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
99 * Directory Options::   Where to find module files
100 * Link Options ::       Influencing the linking step
101 * Runtime Options::     Influencing runtime behavior
102 * Code Gen Options::    Specifying conventions for function calls, data layout
103                         and register usage.
104 * Environment Variables:: Environment variables that affect @command{gfortran}.
105 @end menu
106
107 @node Option Summary
108 @section Option summary
109
110 @c man begin OPTIONS
111
112 Here is a summary of all the options specific to GNU Fortran, grouped
113 by type.  Explanations are in the following sections.
114
115 @table @emph
116 @item Fortran Language Options
117 @xref{Fortran Dialect Options,,Options controlling Fortran dialect}.
118 @gccoptlist{-fall-intrinsics  -ffree-form  -fno-fixed-form @gol
119 -fdollar-ok  -fimplicit-none  -fmax-identifier-length @gol
120 -std=@var{std} -fd-lines-as-code  -fd-lines-as-comments @gol
121 -ffixed-line-length-@var{n}  -ffixed-line-length-none @gol
122 -ffree-line-length-@var{n}  -ffree-line-length-none @gol
123 -fdefault-double-8  -fdefault-integer-8  -fdefault-real-8 @gol
124 -fcray-pointer  -fopenmp  -fno-range-check -fbackslash -fmodule-private}
125
126 @item Preprocessing Options
127 @xref{Preprocessing Options,,Enable and customize preprocessing}.
128 @gccoptlist{-cpp -dD -dI -dM -dN -dU -fworking-directory @gol
129 -imultilib @var{dir} -iprefix @var{file} -isysroot @var{dir} @gol
130 -iquote -isystem @var{dir} -nocpp -nostdinc -undef @gol
131 -A@var{question}=@var{answer} -A-@var{question}@r{[}=@var{answer}@r{]} @gol
132 -C -CC -D@var{macro}@r{[}=@var{defn}@r{]} -U@var{macro} -H -P}
133
134 @item Error and Warning Options
135 @xref{Error and Warning Options,,Options to request or suppress errors
136 and warnings}.
137 @gccoptlist{-fmax-errors=@var{n} @gol
138 -fsyntax-only  -pedantic  -pedantic-errors @gol
139 -Wall  -Waliasing  -Wampersand  -Warray-bounds -Wcharacter-truncation @gol
140 -Wconversion -Wimplicit-interface  -Wline-truncation  -Wintrinsics-std @gol
141 -Wsurprising -Wno-tabs  -Wunderflow -Wunused-parameter -Wintrinsics-shadow @gol
142 -Wno-align-commons}
143
144 @item Debugging Options
145 @xref{Debugging Options,,Options for debugging your program or GNU Fortran}.
146 @gccoptlist{-fdump-parse-tree  -ffpe-trap=@var{list} @gol
147 -fdump-core -fbacktrace}
148
149 @item Directory Options
150 @xref{Directory Options,,Options for directory search}.
151 @gccoptlist{-I@var{dir}  -J@var{dir}  -M@var{dir}  @gol
152 -fintrinsic-modules-path @var{dir}}
153
154 @item Link Options
155 @xref{Link Options,,Options for influencing the linking step}.
156 @gccoptlist{-static-libgfortran}
157
158 @item Runtime Options
159 @xref{Runtime Options,,Options for influencing runtime behavior}.
160 @gccoptlist{-fconvert=@var{conversion}  -fno-range-check
161 -frecord-marker=@var{length} @gol  -fmax-subrecord-length=@var{length}
162 -fsign-zero}
163
164 @item Code Generation Options
165 @xref{Code Gen Options,,Options for code generation conventions}.
166 @gccoptlist{-fno-automatic  -ff2c  -fno-underscoring @gol
167 -fsecond-underscore @gol
168 -fbounds-check -fcheck-array-temporaries  -fmax-array-constructor =@var{n} @gol
169 -fmax-stack-var-size=@var{n} @gol
170 -fpack-derived  -frepack-arrays  -fshort-enums  -fexternal-blas @gol
171 -fblas-matmul-limit=@var{n} -frecursive -finit-local-zero @gol
172 -finit-integer=@var{n} -finit-real=@var{<zero|inf|-inf|nan>} @gol
173 -finit-logical=@var{<true|false>} -finit-character=@var{n} -fno-align-commons}
174 @end table
175
176 @menu
177 * Fortran Dialect Options::  Controlling the variant of Fortran language
178                              compiled.
179 * Preprocessing Options::  Enable and customize preprocessing.
180 * Error and Warning Options::     How picky should the compiler be?
181 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
182 * Directory Options::   Where to find module files
183 * Link Options ::       Influencing the linking step
184 * Runtime Options::     Influencing runtime behavior
185 * Code Gen Options::    Specifying conventions for function calls, data layout
186                         and register usage.
187 @end menu
188
189 @node Fortran Dialect Options
190 @section Options controlling Fortran dialect
191 @cindex dialect options
192 @cindex language, dialect options
193 @cindex options, dialect
194
195 The following options control the details of the Fortran dialect
196 accepted by the compiler:
197
198 @table @gcctabopt
199 @item -ffree-form
200 @item -ffixed-form
201 @opindex @code{ffree-form}
202 @opindex @code{fno-fixed-form}
203 @cindex options, fortran dialect
204 @cindex file format, free
205 @cindex file format, fixed
206 Specify the layout used by the source file.  The free form layout
207 was introduced in Fortran 90.  Fixed form was traditionally used in
208 older Fortran programs.  When neither option is specified, the source
209 form is determined by the file extension.
210
211 @item -fall-intrinsics
212 @opindex @code{fall-intrinsics}
213 Accept all of the intrinsic procedures provided in libgfortran 
214 without regard to the setting of @option{-std}.  In particular, 
215 this option can be quite useful with @option{-std=f95}.  Additionally,
216 @command{gfortran} will ignore @option{-Wintrinsics-std} and will never try
217 to link to an @code{EXTERNAL} version if the intrinsic is not included in the
218 selected standard.
219
220 @item -fd-lines-as-code
221 @item -fd-lines-as-comments
222 @opindex @code{fd-lines-as-code}
223 @opindex @code{fd-lines-as-comments}
224 Enable special treatment for lines beginning with @code{d} or @code{D}
225 in fixed form sources.  If the @option{-fd-lines-as-code} option is
226 given they are treated as if the first column contained a blank.  If the
227 @option{-fd-lines-as-comments} option is given, they are treated as
228 comment lines.
229
230 @item -fdefault-double-8
231 @opindex @code{fdefault-double-8}
232 Set the @code{DOUBLE PRECISION} type to an 8 byte wide type.
233
234 @item -fdefault-integer-8
235 @opindex @code{fdefault-integer-8}
236 Set the default integer and logical types to an 8 byte wide type.
237 Do nothing if this is already the default.
238
239 @item -fdefault-real-8
240 @opindex @code{fdefault-real-8}
241 Set the default real type to an 8 byte wide type.
242 Do nothing if this is already the default.
243
244 @item -fdollar-ok
245 @opindex @code{fdollar-ok}
246 @cindex $
247 @cindex symbol names
248 @cindex character set
249 Allow @samp{$} as a valid character in a symbol name.
250
251 @item -fbackslash
252 @opindex @code{backslash}
253 @cindex backslash
254 @cindex escape characters
255 Change the interpretation of backslashes in string literals from a single
256 backslash character to ``C-style'' escape characters. The following
257 combinations are expanded @code{\a}, @code{\b}, @code{\f}, @code{\n},
258 @code{\r}, @code{\t}, @code{\v}, @code{\\}, and @code{\0} to the ASCII
259 characters alert, backspace, form feed, newline, carriage return,
260 horizontal tab, vertical tab, backslash, and NUL, respectively.
261 Additionally, @code{\x}@var{nn}, @code{\u}@var{nnnn} and
262 @code{\U}@var{nnnnnnnn} (where each @var{n} is a hexadecimal digit) are
263 translated into the Unicode characters corresponding to the specified code
264 points. All other combinations of a character preceded by \ are
265 unexpanded.
266
267 @item -fmodule-private
268 @opindex @code{fmodule-private}
269 @cindex module entities
270 @cindex private
271 Set the default accessibility of module entities to @code{PRIVATE}.
272 Use-associated entities will not be accessible unless they are explicitly
273 declared as @code{PUBLIC}.
274
275 @item -ffixed-line-length-@var{n}
276 @opindex @code{ffixed-line-length-}@var{n}
277 @cindex file format, fixed
278 Set column after which characters are ignored in typical fixed-form
279 lines in the source file, and through which spaces are assumed (as
280 if padded to that length) after the ends of short fixed-form lines.
281
282 Popular values for @var{n} include 72 (the
283 standard and the default), 80 (card image), and 132 (corresponding
284 to ``extended-source'' options in some popular compilers).
285 @var{n} may also be @samp{none}, meaning that the entire line is meaningful
286 and that continued character constants never have implicit spaces appended
287 to them to fill out the line.
288 @option{-ffixed-line-length-0} means the same thing as
289 @option{-ffixed-line-length-none}.
290
291 @item -ffree-line-length-@var{n}
292 @opindex @code{ffree-line-length-}@var{n}
293 @cindex file format, free
294 Set column after which characters are ignored in typical free-form
295 lines in the source file. The default value is 132.
296 @var{n} may be @samp{none}, meaning that the entire line is meaningful.
297 @option{-ffree-line-length-0} means the same thing as
298 @option{-ffree-line-length-none}.
299
300 @item -fmax-identifier-length=@var{n}
301 @opindex @code{fmax-identifier-length=}@var{n}
302 Specify the maximum allowed identifier length. Typical values are
303 31 (Fortran 95) and 63 (Fortran 2003 and Fortran 2008).
304
305 @item -fimplicit-none
306 @opindex @code{fimplicit-none}
307 Specify that no implicit typing is allowed, unless overridden by explicit
308 @code{IMPLICIT} statements.  This is the equivalent of adding
309 @code{implicit none} to the start of every procedure.
310
311 @item -fcray-pointer
312 @opindex @code{fcray-pointer}
313 Enable the Cray pointer extension, which provides C-like pointer
314 functionality.
315
316 @item -fopenmp
317 @opindex @code{fopenmp}
318 @cindex OpenMP
319 Enable the OpenMP extensions.  This includes OpenMP @code{!$omp} directives
320 in free form
321 and @code{c$omp}, @code{*$omp} and @code{!$omp} directives in fixed form,
322 @code{!$} conditional compilation sentinels in free form
323 and @code{c$}, @code{*$} and @code{!$} sentinels in fixed form, 
324 and when linking arranges for the OpenMP runtime library to be linked
325 in.  The option @option{-fopenmp} implies @option{-frecursive}.
326
327 @item -fno-range-check
328 @opindex @code{frange-check}
329 Disable range checking on results of simplification of constant
330 expressions during compilation.  For example, GNU Fortran will give
331 an error at compile time when simplifying @code{a = 1. / 0}.
332 With this option, no error will be given and @code{a} will be assigned
333 the value @code{+Infinity}.  If an expression evaluates to a value
334 outside of the relevant range of [@code{-HUGE()}:@code{HUGE()}],
335 then the expression will be replaced by @code{-Inf} or @code{+Inf}
336 as appropriate.
337 Similarly, @code{DATA i/Z'FFFFFFFF'/} will result in an integer overflow
338 on most systems, but with @option{-fno-range-check} the value will
339 ``wrap around'' and @code{i} will be initialized to @math{-1} instead.
340
341 @item -std=@var{std}
342 @opindex @code{std=}@var{std} option
343 Specify the standard to which the program is expected to conform, which
344 may be one of @samp{f95}, @samp{f2003}, @samp{f2008}, @samp{gnu}, or
345 @samp{legacy}.  The default value for @var{std} is @samp{gnu}, which
346 specifies a superset of the Fortran 95 standard that includes all of the
347 extensions supported by GNU Fortran, although warnings will be given for
348 obsolete extensions not recommended for use in new code.  The
349 @samp{legacy} value is equivalent but without the warnings for obsolete
350 extensions, and may be useful for old non-standard programs.  The
351 @samp{f95}, @samp{f2003} and @samp{f2008} values specify strict
352 conformance to the Fortran 95, Fortran 2003 and Fortran 2008 standards,
353 respectively; errors are given for all extensions beyond the relevant
354 language standard, and warnings are given for the Fortran 77 features
355 that are permitted but obsolescent in later standards.
356
357 @end table
358
359 @node Preprocessing Options
360 @section Enable and customize preprocessing
361 @cindex preprocessor
362 @cindex options, preprocessor
363 @cindex CPP
364
365 Preprocessor related options. See section 
366 @ref{Preprocessing and conditional compilation} for more detailed
367 information on preprocessing in @command{gfortran}.
368
369 @table @gcctabopt
370 @item -cpp
371 @item -nocpp
372 @opindex @code{cpp}
373 @opindex @code{fpp}
374 @cindex preprocessor, enable
375 @cindex preprocessor, disable
376 Enable preprocessing. The preprocessor is automatically invoked if
377 the file extension is @file{.fpp}, @file{.FPP},  @file{.F}, @file{.FOR},
378 @file{.FTN}, @file{.F90}, @file{.F95}, @file{.F03} or @file{.F08}. Use
379 this option to manually enable preprocessing of any kind of Fortran file.
380
381 To disable preprocessing of files with any of the above listed extensions,
382 use the negative form: @option{-nocpp}.
383
384 The preprocessor is run in traditional mode, be aware that any
385 restrictions of the file-format, e.g. fixed-form line width,
386 apply for preprocessed output as well.
387
388 @item -dM
389 @opindex @code{dM}
390 @cindex preprocessor, debugging
391 @cindex debugging, preprocessor
392 Instead of the normal output, generate a list of @code{'#define'}
393 directives for all the macros defined during the execution of the
394 preprocessor, including predefined macros. This gives you a way
395 of finding out what is predefined in your version of the preprocessor.
396 Assuming you have no file @file{foo.f90}, the command
397 @smallexample
398   touch foo.f90; gfortran -cpp -dM foo.f90
399 @end smallexample
400 will show all the predefined macros.
401
402 @item -dD
403 @opindex @code{dD}
404 @cindex preprocessor, debugging
405 @cindex debugging, preprocessor
406 Like @option{-dM} except in two respects: it does not include the
407 predefined macros, and it outputs both the @code{#define} directives
408 and the result of preprocessing. Both kinds of output go to the
409 standard output file.
410
411 @item -dN
412 @opindex @code{dN}
413 @cindex preprocessor, debugging
414 @cindex debugging, preprocessor
415 Like @option{-dD}, but emit only the macro names, not their expansions.
416
417 @item -dU
418 @opindex @code{dU}
419 @cindex preprocessor, debugging
420 @cindex debugging, preprocessor
421 Like @option{dD} except that only macros that are expanded, or whose
422 definedness is tested in preprocessor directives, are output; the 
423 output is delayed until the use or test of the macro; and @code{'#undef'}
424 directives are also output for macros tested but undefined at the time.
425
426 @item -dI
427 @opindex @code{dI}
428 @cindex preprocessor, debugging
429 @cindex debugging, preprocessor
430 Output @code{'#include'} directives in addition to the result
431 of preprocessing.
432
433 @item -fworking-directory
434 @opindex @code{fworking-directory}
435 @cindex preprocessor, working directory
436 Enable generation of linemarkers in the preprocessor output that will
437 let the compiler know the current working directory at the time of
438 preprocessing. When this option is enabled, the preprocessor will emit,
439 after the initial linemarker, a second linemarker with the current
440 working directory followed by two slashes. GCC will use this directory,
441 when it's present in the preprocessed input, as the directory emitted
442 as the current working directory in some debugging information formats.
443 This option is implicitly enabled if debugging information is enabled,
444 but this can be inhibited with the negated form
445 @option{-fno-working-directory}. If the @option{-P} flag is present
446 in the command line, this option has no effect, since no @code{#line}
447 directives are emitted whatsoever.
448
449 @item -imultilib @var{dir}
450 @opindex @code{imultilib @var{dir}}
451 @cindex preprocessing, include path
452 Use @var{dir} as a subdirectory of the directory containing target-specific
453 C++ headers.
454
455 @item -iprefix @var{prefix}
456 @opindex @code{iprefix @var{prefix}}
457 @cindex preprocessing, include path
458 Specify @var{prefix} as the prefix for subsequent @option{-iwithprefix}
459 options. If the @var{prefix} represents a directory, you should include
460 the final @code{'/'}.
461
462 @item -isysroot @var{dir}
463 @opindex @code{isysroot @var{dir}}
464 @cindex preprocessing, include path
465 This option is like the @option{--sysroot} option, but applies only to
466 header files. See the @option{--sysroot} option for more information.
467
468 @item -iquote @var{dir}
469 @opindex @code{iquote @var{dir}}
470 @cindex preprocessing, include path
471 Search @var{dir} only for header files requested with @code{#include "file"};
472 they are not searched for @code{#include <file>}, before all directories
473 specified by @option{-I} and before the standard system directories. If
474 @var{dir} begins with @code{=}, then the @code{=} will be replaced by the
475 sysroot prefix; see @option{--sysroot} and @option{-isysroot}.
476
477 @item -isystem @var{dir}
478 @opindex @code{isystem @var{dir}}
479 @cindex preprocessing, include path
480 Search @var{dir} for header files, after all directories specified by
481 @option{-I} but before the standard system directories. Mark it as a
482 system directory, so that it gets the same special treatment as is
483 applied to the standard system directories. If @var{dir} begins with
484 @code{=}, then the @code{=} will be replaced by the sysroot prefix;
485 see @option{--sysroot} and @option{-isysroot}.
486
487 @item -nostdinc
488 @opindex @code{nostdinc}
489 Do not search the standard system directories for header files. Only
490 the directories you have specified with @option{-I} options (and the
491 directory of the current file, if appropriate) are searched.
492
493 @item -undef
494 @opindex @code{undef}
495 Do not predefine any system-specific or GCC-specific macros.
496 The standard predefined macros remain defined.
497
498 @item -A@var{predicate}=@var{answer}
499 @opindex @code{A@var{predicate}=@var{answer}}
500 @cindex preprocessing, assertation
501 Make an assertion with the predicate @var{predicate} and answer @var{answer}.
502 This form is preferred to the older form -A predicate(answer), which is still
503 supported, because it does not use shell special characters.
504
505 @item -A-@var{predicate}=@var{answer}
506 @opindex @code{A-@var{predicate}=@var{answer}}
507 @cindex preprocessing, assertation
508 Cancel an assertion with the predicate @var{predicate} and answer @var{answer}.
509
510 @item -C
511 @opindex @code{C}
512 @cindex preprocessing, keep comments
513 Do not discard comments. All comments are passed through to the output
514 file, except for comments in processed directives, which are deleted
515 along with the directive.
516
517 You should be prepared for side effects when using @option{-C}; it causes
518 the preprocessor to treat comments as tokens in their own right. For example,
519 comments appearing at the start of what would be a directive line have the
520 effect of turning that line into an ordinary source line, since the first
521 token on the line is no longer a @code{'#'}.
522
523 Warning: this currently handles C-Style comments only. The preprocessor
524 does not yet recognize Fortran-style comments.
525
526 @item -CC
527 @opindex @code{CC}
528 @cindex preprocessing, keep comments
529 Do not discard comments, including during macro expansion. This is like
530 @option{-C}, except that comments contained within macros are also passed
531 through to the output file where the macro is expanded.
532
533 In addition to the side-effects of the @option{-C} option, the @option{-CC}
534 option causes all C++-style comments inside a macro to be converted to C-style
535 comments. This is to prevent later use of that macro from inadvertently
536 commenting out the remainder of the source line. The @option{-CC} option
537 is generally used to support lint comments.
538
539 Warning: this currently handles C- and C++-Style comments only. The
540 preprocessor does not yet recognize Fortran-style comments.
541
542 @item -D@var{name}
543 @opindex @code{D@var{name}}
544 @cindex preprocessing, define macros
545 Predefine name as a macro, with definition @code{1}.
546
547 @item -D@var{name}=@var{definition}
548 @opindex @code{D@var{name}=@var{definition}}
549 @cindex preprocessing, define macros
550 The contents of @var{definition} are tokenized and processed as if they
551 appeared during translation phase three in a @code{'#define'} directive.
552 In particular, the definition will be truncated by embedded newline
553 characters.
554
555 If you are invoking the preprocessor from a shell or shell-like program
556 you may need to use the shell's quoting syntax to protect characters such
557 as spaces that have a meaning in the shell syntax.
558
559 If you wish to define a function-like macro on the command line, write
560 its argument list with surrounding parentheses before the equals sign
561 (if any). Parentheses are meaningful to most shells, so you will need
562 to quote the option. With sh and csh, @code{-D'name(args...)=definition'}
563 works.
564
565 @option{-D} and @option{-U} options are processed in the order they are
566 given on the command line. All -imacros file and -include file options
567 are processed after all -D and -U options.
568
569 @item -H
570 @opindex @code{H}
571 Print the name of each header file used, in addition to other normal
572 activities. Each name is indented to show how deep in the @code{'#include'}
573 stack it is.
574
575 @item -P
576 @opindex @code{P}
577 @cindex preprocessing, no linemarkers
578 Inhibit generation of linemarkers in the output from the preprocessor.
579 This might be useful when running the preprocessor on something that
580 is not C code, and will be sent to a program which might be confused
581 by the linemarkers.
582
583 @item -U@var{name}
584 @opindex @code{U@var{name}}
585 @cindex preprocessing, undefine macros
586 Cancel any previous definition of @var{name}, either built in or provided
587 with a @option{-D} option.
588 @end table
589
590
591 @node Error and Warning Options
592 @section Options to request or suppress errors and warnings
593 @cindex options, warnings
594 @cindex options, errors
595 @cindex warnings, suppressing
596 @cindex messages, error
597 @cindex messages, warning
598 @cindex suppressing warnings
599
600 Errors are diagnostic messages that report that the GNU Fortran compiler
601 cannot compile the relevant piece of source code.  The compiler will
602 continue to process the program in an attempt to report further errors
603 to aid in debugging, but will not produce any compiled output.  
604
605 Warnings are diagnostic messages that report constructions which
606 are not inherently erroneous but which are risky or suggest there is
607 likely to be a bug in the program.  Unless @option{-Werror} is specified,
608 they do not prevent compilation of the program.
609
610 You can request many specific warnings with options beginning @option{-W},
611 for example @option{-Wimplicit} to request warnings on implicit
612 declarations.  Each of these specific warning options also has a
613 negative form beginning @option{-Wno-} to turn off warnings;
614 for example, @option{-Wno-implicit}.  This manual lists only one of the
615 two forms, whichever is not the default.
616
617 These options control the amount and kinds of errors and warnings produced
618 by GNU Fortran:
619
620 @table @gcctabopt
621 @item -fmax-errors=@var{n}
622 @opindex @code{fmax-errors=}@var{n}
623 @cindex errors, limiting
624 Limits the maximum number of error messages to @var{n}, at which point
625 GNU Fortran bails out rather than attempting to continue processing the
626 source code.  If @var{n} is 0, there is no limit on the number of error
627 messages produced.
628
629 @item -fsyntax-only
630 @opindex @code{fsyntax-only}
631 @cindex syntax checking
632 Check the code for syntax errors, but don't actually compile it.  This
633 will generate module files for each module present in the code, but no
634 other output file.
635
636 @item -pedantic
637 @opindex @code{pedantic}
638 Issue warnings for uses of extensions to Fortran 95.
639 @option{-pedantic} also applies to C-language constructs where they
640 occur in GNU Fortran source files, such as use of @samp{\e} in a
641 character constant within a directive like @code{#include}.
642
643 Valid Fortran 95 programs should compile properly with or without
644 this option.
645 However, without this option, certain GNU extensions and traditional
646 Fortran features are supported as well.
647 With this option, many of them are rejected.
648
649 Some users try to use @option{-pedantic} to check programs for conformance.
650 They soon find that it does not do quite what they want---it finds some
651 nonstandard practices, but not all.
652 However, improvements to GNU Fortran in this area are welcome.
653
654 This should be used in conjunction with @option{-std=f95},
655 @option{-std=f2003} or @option{-std=f2008}.
656
657 @item -pedantic-errors
658 @opindex @code{pedantic-errors}
659 Like @option{-pedantic}, except that errors are produced rather than
660 warnings.
661
662 @item -Wall
663 @opindex @code{Wall}
664 @cindex all warnings
665 @cindex warnings, all
666 Enables commonly used warning options pertaining to usage that
667 we recommend avoiding and that we believe are easy to avoid.
668 This currently includes @option{-Waliasing},
669 @option{-Wampersand}, @option{-Wsurprising}, @option{-Wintrinsics-std},
670 @option{-Wno-tabs}, @option{-Wintrinsic-shadow} and @option{-Wline-truncation}.
671
672 @item -Waliasing
673 @opindex @code{Waliasing}
674 @cindex aliasing
675 @cindex warnings, aliasing
676 Warn about possible aliasing of dummy arguments. Specifically, it warns
677 if the same actual argument is associated with a dummy argument with
678 @code{INTENT(IN)} and a dummy argument with @code{INTENT(OUT)} in a call
679 with an explicit interface.
680
681 The following example will trigger the warning.
682 @smallexample
683   interface
684     subroutine bar(a,b)
685       integer, intent(in) :: a
686       integer, intent(out) :: b
687     end subroutine
688   end interface
689   integer :: a
690
691   call bar(a,a)
692 @end smallexample
693
694 @item -Wampersand
695 @opindex @code{Wampersand}
696 @cindex warnings, ampersand
697 @cindex &
698 Warn about missing ampersand in continued character constants. The warning is
699 given with @option{-Wampersand}, @option{-pedantic}, @option{-std=f95},
700 @option{-std=f2003} and @option{-std=f2008}. Note: With no ampersand
701 given in a continued character constant, GNU Fortran assumes continuation
702 at the first non-comment, non-whitespace character after the ampersand
703 that initiated the continuation.
704
705 @item -Warray-temporaries
706 @opindex @code{Warray-temporaries}
707 @cindex warnings, array temporaries
708 Warn about array temporaries generated by the compiler.  The information
709 generated by this warning is sometimes useful in optimization, in order to
710 avoid such temporaries.
711
712 @item -Wcharacter-truncation
713 @opindex @code{Wcharacter-truncation}
714 @cindex warnings, character truncation
715 Warn when a character assignment will truncate the assigned string.
716
717 @item -Wline-truncation
718 @opindex @code{Wline-truncation}
719 @cindex warnings, line truncation
720 Warn when a source code line will be truncated.
721
722 @item -Wconversion
723 @opindex @code{Wconversion}
724 @cindex warnings, conversion
725 @cindex conversion
726 Warn about implicit conversions between different types.
727
728 @item -Wimplicit-interface
729 @opindex @code{Wimplicit-interface}
730 @cindex warnings, implicit interface
731 Warn if a procedure is called without an explicit interface.
732 Note this only checks that an explicit interface is present.  It does not
733 check that the declared interfaces are consistent across program units.
734
735 @item -Wintrinsics-std
736 @opindex @code{Wintrinsics-std}
737 @cindex warnings, non-standard intrinsics
738 @cindex warnings, intrinsics of other standards
739 Warn if @command{gfortran} finds a procedure named like an intrinsic not
740 available in the currently selected standard (with @option{-std}) and treats
741 it as @code{EXTERNAL} procedure because of this.  @option{-fall-intrinsics} can
742 be used to never trigger this behaviour and always link to the intrinsic
743 regardless of the selected standard.
744
745 @item -Wsurprising
746 @opindex @code{Wsurprising}
747 @cindex warnings, suspicious code
748 Produce a warning when ``suspicious'' code constructs are encountered.
749 While technically legal these usually indicate that an error has been made.
750
751 This currently produces a warning under the following circumstances:
752
753 @itemize @bullet
754 @item
755 An INTEGER SELECT construct has a CASE that can never be matched as its
756 lower value is greater than its upper value.
757
758 @item
759 A LOGICAL SELECT construct has three CASE statements.
760
761 @item
762 A TRANSFER specifies a source that is shorter than the destination.
763
764 @item
765 The type of a function result is declared more than once with the same type.  If
766 @option{-pedantic} or standard-conforming mode is enabled, this is an error.
767 @end itemize
768
769 @item -Wtabs
770 @opindex @code{Wtabs}
771 @cindex warnings, tabs
772 @cindex tabulators
773 By default, tabs are accepted as whitespace, but tabs are not members
774 of the Fortran Character Set.  For continuation lines, a tab followed
775 by a digit between 1 and 9 is supported.  @option{-Wno-tabs} will cause
776 a warning to be issued if a tab is encountered. Note, @option{-Wno-tabs}
777 is active for @option{-pedantic}, @option{-std=f95}, @option{-std=f2003},
778 @option{-std=f2008} and @option{-Wall}.
779
780 @item -Wunderflow
781 @opindex @code{Wunderflow}
782 @cindex warnings, underflow
783 @cindex underflow
784 Produce a warning when numerical constant expressions are
785 encountered, which yield an UNDERFLOW during compilation.
786
787 @item -Wintrinsic-shadow
788 @opindex @code{Wintrinsic-shadow}
789 @cindex warnings, intrinsic
790 @cindex intrinsic
791 Warn if a user-defined procedure or module procedure has the same name as an
792 intrinsic; in this case, an explicit interface or @code{EXTERNAL} or
793 @code{INTRINSIC} declaration might be needed to get calls later resolved to
794 the desired intrinsic/procedure.
795
796 @item -Wunused-parameter
797 @opindex @code{Wunused-parameter}
798 @cindex warnings, unused parameter
799 @cindex unused parameter
800 Contrary to @command{gcc}'s meaning of @option{-Wunused-parameter},
801 @command{gfortran}'s implementation of this option does not warn
802 about unused dummy arguments, but about unused @code{PARAMETER} values.
803 @option{-Wunused-parameter} is not included in @option{-Wall} but is
804 implied by @option{-Wall -Wextra}.
805
806 @item -Walign-commons
807 @opindex @code{Walign-commons}
808 @cindex warnings, alignment of COMMON blocks
809 @cindex alignment of COMMON blocks
810 By default, @command{gfortran} warns about any occasion of variables being
811 padded for proper alignment inside a COMMON block. This warning can be turned
812 off via @option{-Wno-align-commons}. See also @option{-falign-commons}.
813
814 @item -Werror
815 @opindex @code{Werror}
816 @cindex warnings, to errors
817 Turns all warnings into errors.
818 @end table
819
820 @xref{Error and Warning Options,,Options to Request or Suppress Errors and
821 Warnings, gcc,Using the GNU Compiler Collection (GCC)}, for information on
822 more options offered by the GBE shared by @command{gfortran}, @command{gcc}
823 and other GNU compilers.
824
825 Some of these have no effect when compiling programs written in Fortran.
826
827 @node Debugging Options
828 @section Options for debugging your program or GNU Fortran
829 @cindex options, debugging
830 @cindex debugging information options
831
832 GNU Fortran has various special options that are used for debugging
833 either your program or the GNU Fortran compiler.
834
835 @table @gcctabopt
836 @item -fdump-parse-tree
837 @opindex @code{fdump-parse-tree}
838 Output the internal parse tree before starting code generation.  Only
839 really useful for debugging the GNU Fortran compiler itself.
840
841 @item -ffpe-trap=@var{list}
842 @opindex @code{ffpe-trap=}@var{list}
843 Specify a list of IEEE exceptions when a Floating Point Exception
844 (FPE) should be raised.  On most systems, this will result in a SIGFPE
845 signal being sent and the program being interrupted, producing a core
846 file useful for debugging.  @var{list} is a (possibly empty) comma-separated
847 list of the following IEEE exceptions: @samp{invalid} (invalid floating
848 point operation, such as @code{SQRT(-1.0)}), @samp{zero} (division by
849 zero), @samp{overflow} (overflow in a floating point operation),
850 @samp{underflow} (underflow in a floating point operation),
851 @samp{precision} (loss of precision during operation) and @samp{denormal}
852 (operation produced a denormal value).
853
854 Some of the routines in the Fortran runtime library, like
855 @samp{CPU_TIME}, are likely to to trigger floating point exceptions when
856 @code{ffpe-trap=precision} is used. For this reason, the use of 
857 @code{ffpe-trap=precision} is not recommended.
858
859 @item -fbacktrace
860 @opindex @code{fbacktrace}
861 @cindex backtrace
862 @cindex trace
863 Specify that, when a runtime error is encountered or a deadly signal is
864 emitted (segmentation fault, illegal instruction, bus error or
865 floating-point exception), the Fortran runtime
866 library should output a backtrace of the error.  This option
867 only has influence for compilation of the Fortran main program.
868
869 @item -fdump-core
870 @cindex core, dump
871 @opindex @code{fdump-core}
872 Request that a core-dump file is written to disk when a runtime error
873 is encountered on systems that support core dumps. This option is
874 only effective for the compilation of the Fortran main program.
875 @end table
876
877 @xref{Debugging Options,,Options for Debugging Your Program or GCC,
878 gcc,Using the GNU Compiler Collection (GCC)}, for more information on
879 debugging options.
880
881 @node Directory Options
882 @section Options for directory search
883 @cindex directory, options
884 @cindex options, directory search
885 @cindex search path
886 @cindex INCLUDE directive
887 @cindex directive, INCLUDE
888 These options affect how GNU Fortran searches
889 for files specified by the @code{INCLUDE} directive and where it searches
890 for previously compiled modules.
891
892 It also affects the search paths used by @command{cpp} when used to preprocess
893 Fortran source.
894
895 @table @gcctabopt
896 @item -I@var{dir}
897 @opindex @code{I}@var{dir}
898 @cindex directory, search paths for inclusion
899 @cindex inclusion, directory search paths for
900 @cindex search paths, for included files
901 @cindex paths, search
902 @cindex module search path
903 These affect interpretation of the @code{INCLUDE} directive
904 (as well as of the @code{#include} directive of the @command{cpp}
905 preprocessor).
906
907 Also note that the general behavior of @option{-I} and
908 @code{INCLUDE} is pretty much the same as of @option{-I} with
909 @code{#include} in the @command{cpp} preprocessor, with regard to
910 looking for @file{header.gcc} files and other such things.
911
912 This path is also used to search for @file{.mod} files when previously
913 compiled modules are required by a @code{USE} statement.
914
915 @xref{Directory Options,,Options for Directory Search,
916 gcc,Using the GNU Compiler Collection (GCC)}, for information on the
917 @option{-I} option.
918
919 @item -J@var{dir}
920 @item -M@var{dir}
921 @opindex @code{J}@var{dir}
922 @opindex @code{M}@var{dir}
923 @cindex paths, search
924 @cindex module search path
925 This option specifies where to put @file{.mod} files for compiled modules.
926 It is also added to the list of directories to searched by an @code{USE}
927 statement.
928
929 The default is the current directory.
930
931 @option{-M} is deprecated to avoid conflicts with existing GCC options.
932
933 @item -fintrinsic-modules-path @var{dir}
934 @opindex @code{fintrinsic-modules-path} @var{dir}
935 @cindex paths, search
936 @cindex module search path
937 This option specifies the location of pre-compiled intrinsic modules, if
938 they are not in the default location expected by the compiler.
939 @end table
940
941 @node Link Options
942 @section Influencing the linking step
943 @cindex options, linking
944 @cindex linking, static
945
946 These options come into play when the compiler links object files into an 
947 executable output file. They are meaningless if the compiler is not doing 
948 a link step.
949
950 @table @gcctabopt
951 @item -static-libgfortran
952 @opindex @code{static-libgfortran}
953 On systems that provide @file{libgfortran} as a shared and a static
954 library, this option forces the use of the static version. If no
955 shared version of @file{libgfortran} was built when the compiler was
956 configured, this option has no effect.
957 @end table
958
959
960 @node Runtime Options
961 @section Influencing runtime behavior
962 @cindex options, runtime
963
964 These options affect the runtime behavior of programs compiled with GNU Fortran.
965 @table @gcctabopt
966 @item -fconvert=@var{conversion}
967 @opindex @code{fconvert=}@var{conversion}
968 Specify the representation of data for unformatted files.  Valid
969 values for conversion are: @samp{native}, the default; @samp{swap},
970 swap between big- and little-endian; @samp{big-endian}, use big-endian
971 representation for unformatted files; @samp{little-endian}, use little-endian
972 representation for unformatted files.
973
974 @emph{This option has an effect only when used in the main program.
975 The @code{CONVERT} specifier and the GFORTRAN_CONVERT_UNIT environment
976 variable override the default specified by @option{-fconvert}.}
977
978
979 @item -fno-range-check
980 @opindex @code{-fno-range-check}
981 Disable range checking of input values during integer @code{READ} operations.
982 For example, GNU Fortran will give an error if an input value is
983 outside of the relevant range of [@code{-HUGE()}:@code{HUGE()}]. In other words,
984 with @code{INTEGER (kind=4) :: i} , attempting to read @math{-2147483648} will
985 give an error unless @option{-fno-range-check} is given. 
986
987
988 @item -frecord-marker=@var{length}
989 @opindex @code{frecord-marker=}@var{length}
990 Specify the length of record markers for unformatted files.
991 Valid values for @var{length} are 4 and 8.  Default is 4.
992 @emph{This is different from previous versions of @command{gfortran}},
993 which specified a default record marker length of 8 on most
994 systems.  If you want to read or write files compatible
995 with earlier versions of @command{gfortran}, use @option{-frecord-marker=8}.
996
997 @item -fmax-subrecord-length=@var{length}
998 @opindex @code{fmax-subrecord-length=}@var{length}
999 Specify the maximum length for a subrecord.  The maximum permitted
1000 value for length is 2147483639, which is also the default.  Only
1001 really useful for use by the gfortran testsuite.
1002
1003 @item -fsign-zero
1004 @opindex @code{fsign-zero}
1005 When writing zero values, show the negative sign if the sign bit is set.
1006 @code{fno-sign-zero} does not print the negative sign of zero values for
1007 compatibility with F77.  Default behavior is to show the negative sign.
1008 @end table
1009
1010 @node Code Gen Options
1011 @section Options for code generation conventions
1012 @cindex code generation, conventions
1013 @cindex options, code generation
1014 @cindex options, run-time
1015
1016 These machine-independent options control the interface conventions
1017 used in code generation.
1018
1019 Most of them have both positive and negative forms; the negative form
1020 of @option{-ffoo} would be @option{-fno-foo}.  In the table below, only
1021 one of the forms is listed---the one which is not the default.  You
1022 can figure out the other form by either removing @option{no-} or adding
1023 it.
1024
1025 @table @gcctabopt
1026 @item -fno-automatic
1027 @opindex @code{fno-automatic}
1028 @cindex @code{SAVE} statement
1029 @cindex statement, @code{SAVE}
1030 Treat each program unit (except those marked as RECURSIVE) as if the
1031 @code{SAVE} statement were specified for every local variable and array
1032 referenced in it. Does not affect common blocks. (Some Fortran compilers
1033 provide this option under the name @option{-static} or @option{-save}.)
1034 The default, which is @option{-fautomatic}, uses the stack for local
1035 variables smaller than the value given by @option{-fmax-stack-var-size}.
1036 Use the option @option{-frecursive} to use no static memory. 
1037
1038 @item -ff2c
1039 @opindex ff2c
1040 @cindex calling convention
1041 @cindex @command{f2c} calling convention
1042 @cindex @command{g77} calling convention
1043 @cindex libf2c calling convention
1044 Generate code designed to be compatible with code generated
1045 by @command{g77} and @command{f2c}.
1046
1047 The calling conventions used by @command{g77} (originally implemented
1048 in @command{f2c}) require functions that return type
1049 default @code{REAL} to actually return the C type @code{double}, and
1050 functions that return type @code{COMPLEX} to return the values via an
1051 extra argument in the calling sequence that points to where to
1052 store the return value.  Under the default GNU calling conventions, such
1053 functions simply return their results as they would in GNU
1054 C---default @code{REAL} functions return the C type @code{float}, and
1055 @code{COMPLEX} functions return the GNU C type @code{complex}.
1056 Additionally, this option implies the @option{-fsecond-underscore}
1057 option, unless @option{-fno-second-underscore} is explicitly requested.
1058
1059 This does not affect the generation of code that interfaces with
1060 the @command{libgfortran} library.
1061
1062 @emph{Caution:} It is not a good idea to mix Fortran code compiled with
1063 @option{-ff2c} with code compiled with the default @option{-fno-f2c}
1064 calling conventions as, calling @code{COMPLEX} or default @code{REAL}
1065 functions between program parts which were compiled with different
1066 calling conventions will break at execution time.
1067
1068 @emph{Caution:} This will break code which passes intrinsic functions
1069 of type default @code{REAL} or @code{COMPLEX} as actual arguments, as
1070 the library implementations use the @option{-fno-f2c} calling conventions.
1071
1072 @item -fno-underscoring
1073 @opindex @code{fno-underscoring}
1074 @cindex underscore
1075 @cindex symbol names, underscores
1076 @cindex transforming symbol names
1077 @cindex symbol names, transforming
1078 Do not transform names of entities specified in the Fortran
1079 source file by appending underscores to them.
1080
1081 With @option{-funderscoring} in effect, GNU Fortran appends one
1082 underscore to external names with no underscores.  This is done to ensure
1083 compatibility with code produced by many UNIX Fortran compilers.
1084
1085 @emph{Caution}: The default behavior of GNU Fortran is
1086 incompatible with @command{f2c} and @command{g77}, please use the
1087 @option{-ff2c} option if you want object files compiled with
1088 GNU Fortran to be compatible with object code created with these
1089 tools.
1090
1091 Use of @option{-fno-underscoring} is not recommended unless you are
1092 experimenting with issues such as integration of GNU Fortran into
1093 existing system environments (vis-@`{a}-vis existing libraries, tools,
1094 and so on).
1095
1096 For example, with @option{-funderscoring}, and assuming other defaults like
1097 @option{-fcase-lower} and that @code{j()} and @code{max_count()} are
1098 external functions while @code{my_var} and @code{lvar} are local variables,
1099 a statement like
1100 @smallexample
1101 I = J() + MAX_COUNT (MY_VAR, LVAR)
1102 @end smallexample
1103 @noindent
1104 is implemented as something akin to:
1105 @smallexample
1106 i = j_() + max_count__(&my_var__, &lvar);
1107 @end smallexample
1108
1109 With @option{-fno-underscoring}, the same statement is implemented as:
1110
1111 @smallexample
1112 i = j() + max_count(&my_var, &lvar);
1113 @end smallexample
1114
1115 Use of @option{-fno-underscoring} allows direct specification of
1116 user-defined names while debugging and when interfacing GNU Fortran
1117 code with other languages.
1118
1119 Note that just because the names match does @emph{not} mean that the
1120 interface implemented by GNU Fortran for an external name matches the
1121 interface implemented by some other language for that same name.
1122 That is, getting code produced by GNU Fortran to link to code produced
1123 by some other compiler using this or any other method can be only a
1124 small part of the overall solution---getting the code generated by
1125 both compilers to agree on issues other than naming can require
1126 significant effort, and, unlike naming disagreements, linkers normally
1127 cannot detect disagreements in these other areas.
1128
1129 Also, note that with @option{-fno-underscoring}, the lack of appended
1130 underscores introduces the very real possibility that a user-defined
1131 external name will conflict with a name in a system library, which
1132 could make finding unresolved-reference bugs quite difficult in some
1133 cases---they might occur at program run time, and show up only as
1134 buggy behavior at run time.
1135
1136 In future versions of GNU Fortran we hope to improve naming and linking
1137 issues so that debugging always involves using the names as they appear
1138 in the source, even if the names as seen by the linker are mangled to
1139 prevent accidental linking between procedures with incompatible
1140 interfaces.
1141
1142 @item -fsecond-underscore
1143 @opindex @code{fsecond-underscore}
1144 @cindex underscore
1145 @cindex symbol names, underscores
1146 @cindex transforming symbol names
1147 @cindex symbol names, transforming
1148 @cindex @command{f2c} calling convention
1149 @cindex @command{g77} calling convention
1150 @cindex libf2c calling convention
1151 By default, GNU Fortran appends an underscore to external
1152 names.  If this option is used GNU Fortran appends two
1153 underscores to names with underscores and one underscore to external names
1154 with no underscores.  GNU Fortran also appends two underscores to
1155 internal names with underscores to avoid naming collisions with external
1156 names.
1157
1158 This option has no effect if @option{-fno-underscoring} is
1159 in effect.  It is implied by the @option{-ff2c} option.
1160
1161 Otherwise, with this option, an external name such as @code{MAX_COUNT}
1162 is implemented as a reference to the link-time external symbol
1163 @code{max_count__}, instead of @code{max_count_}.  This is required
1164 for compatibility with @command{g77} and @command{f2c}, and is implied
1165 by use of the @option{-ff2c} option.
1166
1167 @item -fbounds-check
1168 @opindex @code{fbounds-check}
1169 @cindex array, bounds checking
1170 @cindex bounds checking
1171 @cindex range checking
1172 @cindex subscript checking
1173 @cindex checking subscripts
1174 Enable generation of run-time checks for array subscripts
1175 and against the declared minimum and maximum values.  It also
1176 checks array indices for assumed and deferred
1177 shape arrays against the actual allocated bounds.
1178
1179 Some checks require that @option{-fbounds-check} is set for
1180 the compilation of the main program.
1181
1182 In the future this may also include other forms of checking, e.g., checking
1183 substring references.
1184
1185
1186 @item fcheck-array-temporaries
1187 @opindex @code{fcheck-array-temporaries}
1188 @cindex checking array temporaries
1189 Warns at run time when for passing an actual argument a temporary array
1190 had to be generated. The information generated by this warning is
1191 sometimes useful in optimization, in order to avoid such temporaries.
1192
1193 Note: The warning is only printed once per location.
1194
1195
1196 @item -fmax-array-constructor=@var{n}
1197 @opindex @code{fmax-array-constructor}
1198 This option can be used to increase the upper limit permitted in 
1199 array constructors.  The code below requires this option to expand
1200 the array at compile time.
1201
1202 @smallexample
1203 @code{program test}
1204 @code{implicit none}
1205 @code{integer j}
1206 @code{integer, parameter :: n = 100000}
1207 @code{integer, parameter :: i(n) = (/ (2*j, j = 1, n) /)}
1208 @code{print '(10(I0,1X))', i}
1209 @code{end program test}
1210 @end smallexample
1211
1212 @emph{Caution:  This option can lead to long compile times and excessively
1213 large object files.}
1214
1215 The default value for @var{n} is 65535.
1216
1217
1218 @item -fmax-stack-var-size=@var{n}
1219 @opindex @code{fmax-stack-var-size}
1220 This option specifies the size in bytes of the largest array that will be put
1221 on the stack; if the size is exceeded static memory is used (except in
1222 procedures marked as RECURSIVE). Use the option @option{-frecursive} to
1223 allow for recursive procedures which do not have a RECURSIVE attribute or
1224 for parallel programs. Use @option{-fno-automatic} to never use the stack.
1225
1226 This option currently only affects local arrays declared with constant
1227 bounds, and may not apply to all character variables.
1228 Future versions of GNU Fortran may improve this behavior.
1229
1230 The default value for @var{n} is 32768.
1231
1232 @item -fpack-derived
1233 @opindex @code{fpack-derived}
1234 @cindex structure packing
1235 This option tells GNU Fortran to pack derived type members as closely as
1236 possible.  Code compiled with this option is likely to be incompatible
1237 with code compiled without this option, and may execute slower.
1238
1239 @item -frepack-arrays
1240 @opindex @code{frepack-arrays}
1241 @cindex repacking arrays
1242 In some circumstances GNU Fortran may pass assumed shape array
1243 sections via a descriptor describing a noncontiguous area of memory.
1244 This option adds code to the function prologue to repack the data into
1245 a contiguous block at runtime.
1246
1247 This should result in faster accesses to the array.  However it can introduce
1248 significant overhead to the function call, especially  when the passed data
1249 is noncontiguous.
1250
1251 @item -fshort-enums
1252 @opindex @code{fshort-enums}
1253 This option is provided for interoperability with C code that was
1254 compiled with the @option{-fshort-enums} option.  It will make
1255 GNU Fortran choose the smallest @code{INTEGER} kind a given
1256 enumerator set will fit in, and give all its enumerators this kind.
1257
1258 @item -fexternal-blas
1259 @opindex @code{fexternal-blas}
1260 This option will make @command{gfortran} generate calls to BLAS functions
1261 for some matrix operations like @code{MATMUL}, instead of using our own
1262 algorithms, if the size of the matrices involved is larger than a given
1263 limit (see @option{-fblas-matmul-limit}).  This may be profitable if an
1264 optimized vendor BLAS library is available.  The BLAS library will have
1265 to be specified at link time.
1266
1267 @item -fblas-matmul-limit=@var{n}
1268 @opindex @code{fblas-matmul-limit}
1269 Only significant when @option{-fexternal-blas} is in effect.
1270 Matrix multiplication of matrices with size larger than (or equal to) @var{n}
1271 will be performed by calls to BLAS functions, while others will be
1272 handled by @command{gfortran} internal algorithms. If the matrices
1273 involved are not square, the size comparison is performed using the
1274 geometric mean of the dimensions of the argument and result matrices.
1275
1276 The default value for @var{n} is 30.
1277
1278 @item -frecursive
1279 @opindex @code{frecursive}
1280 Allow indirect recursion by forcing all local arrays to be allocated
1281 on the stack. This flag cannot be used together with
1282 @option{-fmax-stack-var-size=} or @option{-fno-automatic}.
1283
1284 @item -finit-local-zero
1285 @item -finit-integer=@var{n}
1286 @item -finit-real=@var{<zero|inf|-inf|nan>} 
1287 @item -finit-logical=@var{<true|false>}
1288 @item -finit-character=@var{n}
1289 @opindex @code{finit-local-zero}
1290 @opindex @code{finit-integer}
1291 @opindex @code{finit-real}
1292 @opindex @code{finit-logical}
1293 @opindex @code{finit-character}
1294 The @option{-finit-local-zero} option instructs the compiler to
1295 initialize local @code{INTEGER}, @code{REAL}, and @code{COMPLEX}
1296 variables to zero, @code{LOGICAL} variables to false, and
1297 @code{CHARACTER} variables to a string of null bytes.  Finer-grained
1298 initialization options are provided by the
1299 @option{-finit-integer=@var{n}},
1300 @option{-finit-real=@var{<zero|inf|-inf|nan>}} (which also initializes
1301 the real and imaginary parts of local @code{COMPLEX} variables),
1302 @option{-finit-logical=@var{<true|false>}}, and
1303 @option{-finit-character=@var{n}} (where @var{n} is an ASCII character
1304 value) options.  These options do not initialize components of derived
1305 type variables, nor do they initialize variables that appear in an
1306 @code{EQUIVALENCE} statement.  (This limitation may be removed in
1307 future releases).
1308
1309 Note that the @option{-finit-real=nan} option initializes @code{REAL}
1310 and @code{COMPLEX} variables with a quiet NaN.
1311
1312 @item -falign-commons
1313 @opindex @code{falign-commons}
1314 @cindex alignment of COMMON blocks
1315 By default, @command{gfortran} enforces proper alignment of all variables in a
1316 COMMON block by padding them as needed. On certain platforms this is mandatory,
1317 on others it increases performance. If a COMMON block is not declared with
1318 consistent data types everywhere, this padding can cause trouble, and
1319 @option{-fno-align-commons } can be used to disable automatic alignment. The
1320 same form of this option should be used for all files that share a COMMON block.
1321 To avoid potential alignment issues in COMMON blocks, it is recommended to order
1322 objects from largests to smallest.
1323 @end table
1324
1325 @xref{Code Gen Options,,Options for Code Generation Conventions,
1326 gcc,Using the GNU Compiler Collection (GCC)}, for information on more options
1327 offered by the GBE
1328 shared by @command{gfortran}, @command{gcc}, and other GNU compilers.
1329
1330
1331 @c man end
1332
1333 @node Environment Variables
1334 @section Environment variables affecting @command{gfortran}
1335 @cindex environment variable
1336
1337 @c man begin ENVIRONMENT
1338
1339 The @command{gfortran} compiler currently does not make use of any environment
1340 variables to control its operation above and beyond those
1341 that affect the operation of @command{gcc}.
1342
1343 @xref{Environment Variables,,Environment Variables Affecting GCC,
1344 gcc,Using the GNU Compiler Collection (GCC)}, for information on environment
1345 variables.
1346
1347 @xref{Runtime}, for environment variables that affect the
1348 run-time behavior of programs compiled with GNU Fortran.
1349 @c man end