OSDN Git Service

2007-01-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
[pf3gnuchains/gcc-fork.git] / gcc / fortran / invoke.texi
1 @c Copyright (C) 2004, 2005, 2006, 2007
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
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 ``GNU General Public License'' and ``Funding
15 Free Software'', the Front-Cover texts being (a) (see below), and with
16 the Back-Cover Texts being (b) (see below).  A copy of the license is
17 included in the gfdl(7) man page.
18  
19 (a) The FSF's Front-Cover Text is:
20
21      A GNU Manual
22
23 (b) The FSF's Back-Cover Text is:
24
25      You have freedom to copy and modify this GNU Manual, like GNU
26      software.  Copies published by the Free Software Foundation raise
27      funds for GNU development.
28 @c man end
29 @c Set file name and title for the man page.
30 @setfilename gfortran
31 @settitle GNU Fortran compiler.
32 @c man begin SYNOPSIS
33 gfortran [@option{-c}|@option{-S}|@option{-E}]
34          [@option{-g}] [@option{-pg}] [@option{-O}@var{level}]
35          [@option{-W}@var{warn}@dots{}] [@option{-pedantic}]
36          [@option{-I}@var{dir}@dots{}] [@option{-L}@var{dir}@dots{}]
37          [@option{-D}@var{macro}[=@var{defn}]@dots{}] [@option{-U}@var{macro}]
38          [@option{-f}@var{option}@dots{}]
39          [@option{-m}@var{machine-option}@dots{}]
40          [@option{-o} @var{outfile}] @var{infile}@dots{}
41
42 Only the most useful options are listed here; see below for the
43 remainder.
44 @c man end
45 @c man begin SEEALSO
46 gpl(7), gfdl(7), fsf-funding(7),
47 cpp(1), gcov(1), gcc(1), as(1), ld(1), gdb(1), adb(1), dbx(1), sdb(1)
48 and the Info entries for @file{gcc}, @file{cpp}, @file{gfortran}, @file{as},
49 @file{ld}, @file{binutils} and @file{gdb}.
50 @c man end
51 @c man begin BUGS
52 For instructions on reporting bugs, see
53 @w{@uref{http://gcc.gnu.org/bugs.html}}.
54 @c man end
55 @c man begin AUTHOR
56 See the Info entry for @command{gfortran} for contributors to GCC and
57 GNU Fortran.
58 @c man end
59 @end ignore
60
61 @node Invoking GNU Fortran
62 @chapter GNU Fortran Command Options
63 @cindex GNU Fortran command options
64 @cindex command options
65 @cindex options, @command{gfortran} command
66
67 @c man begin DESCRIPTION
68
69 The @command{gfortran} command supports all the options supported by the
70 @command{gcc} command.  Only options specific to GNU Fortran are documented here.
71
72 @xref{Invoking GCC,,GCC Command Options,gcc,Using the GNU Compiler
73 Collection (GCC)}, for information
74 on the non-Fortran-specific aspects of the @command{gcc} command (and,
75 therefore, the @command{gfortran} command).
76
77 @cindex options, negative forms
78 @cindex negative forms of options
79 All GCC and GNU Fortran options
80 are accepted both by @command{gfortran} and by @command{gcc}
81 (as well as any other drivers built at the same time,
82 such as @command{g++}),
83 since adding GNU Fortran to the GCC distribution
84 enables acceptance of GNU Fortran options
85 by all of the relevant drivers.
86
87 In some cases, options have positive and negative forms;
88 the negative form of @option{-ffoo} would be @option{-fno-foo}.
89 This manual documents only one of these two forms, whichever
90 one is not the default.
91 @c man end
92
93 @menu
94 * Option Summary::      Brief list of all @command{gfortran} options,
95                         without explanations.
96 * Fortran Dialect Options::  Controlling the variant of Fortran language
97                              compiled.
98 * Error and Warning Options::     How picky should the compiler be?
99 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
100 * Directory Options::   Where to find module files
101 * Runtime Options::     Influencing runtime behavior
102 * Code Gen Options::    Specifying conventions for function calls, data layout
103                         and register usage.
104 * Environment Variables:: Env vars 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  -frange-check -fno-backslash }
125
126 @item Error and Warning Options
127 @xref{Error and Warning Options,,Options to Request or Suppress Errors
128 and Warnings}.
129 @gccoptlist{-fmax-errors=@var{n} @gol
130 -fsyntax-only  -pedantic  -pedantic-errors @gol
131 -w  -Wall  -Waliasing  -Wampersand  -Wconversion  -Wimplicit-interface @gol
132 -Wtabs -Wnonstd-intrinsics -Wsurprising -Wunderflow @gol
133 -Wline-truncation -W}
134
135 @item Debugging Options
136 @xref{Debugging Options,,Options for Debugging Your Program or GCC}.
137 @gccoptlist{-fdump-parse-tree  -ffpe-trap=@var{list}
138 -fdump-core}
139
140 @item Directory Options
141 @xref{Directory Options,,Options for Directory Search}.
142 @gccoptlist{-I@var{dir}  -M@var{dir}}
143
144 @item Runtime Options
145 @xref{Runtime Options,,Options for influencing runtime behavior}.
146 @gccoptlist{-fconvert=@var{conversion} -frecord-marker=@var{length}}
147
148 @item Code Generation Options
149 @xref{Code Gen Options,,Options for Code Generation Conventions}.
150 @gccoptlist{-fno-automatic  -ff2c  -fno-underscoring
151 -fsecond-underscore @gol
152 -fbounds-check  -fmax-stack-var-size=@var{n} @gol
153 -fpack-derived  -frepack-arrays  -fshort-enums  -fexternal-blas @gol
154 -fblas-matmul-limit=@var{n}}
155 @end table
156
157 @menu
158 * Fortran Dialect Options::  Controlling the variant of Fortran language
159                              compiled.
160 * Error and Warning Options::     How picky should the compiler be?
161 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
162 * Directory Options::   Where to find module files
163 * Runtime Options::     Influencing runtime behavior
164 * Code Gen Options::    Specifying conventions for function calls, data layout
165                         and register usage.
166 @end menu
167
168 @node Fortran Dialect Options
169 @section Options Controlling Fortran Dialect
170 @cindex dialect options
171 @cindex language, dialect options
172 @cindex options, dialect
173
174 The following options control the details of the Fortran dialect
175 accepted by the compiler:
176
177 @table @gcctabopt
178 @item -ffree-form
179 @item -ffixed-form
180 @cindex @code{-ffree-form} option
181 @cindex option, @code{-ffree-form}
182 @cindex @code{-fno-fixed-form} option
183 @cindex option, @code{-fno-fixed-form}
184 @cindex source file format
185 @cindex free form
186 @cindex fixed form
187 @cindex Source Form
188 @cindex Fortran 90, features
189 Specify the layout used by the source file.  The free form layout
190 was introduced in Fortran 90.  Fixed form was traditionally used in
191 older Fortran programs.  When neither option is specified, the source
192 form is determined by the file extension.
193
194 @item -fall-intrinsics
195 @cindex @code{-fall-intrinsics} option
196 @cindex option, @code{-fall-intrinsics}
197 Accept all of the intrinsic procedures provided in libgfortran 
198 without regard to the setting of @option{-std}.  In particular, 
199 this option can be quite useful with @option{-std=f95}.  Additionally,
200 @command{gfortran} will ignore @option{-Wnonstd-intrinsics}.
201
202 @item -fd-lines-as-code
203 @item -fd-lines-as-comment
204 @cindex @code{-fd-lines-as-code}, option
205 @cindex option, @code{-fd-lines-as-code}
206 @cindex @code{-fd-lines-as-comments}, option
207 @cindex option, @code{-fd-lines-as-comments}
208 Enable special treatment for lines beginning with @code{d} or @code{D}
209 in fixed form sources.  If the @option{-fd-lines-as-code} option is
210 given they are treated as if the first column contained a blank.  If the
211 @option{-fd-lines-as-comments} option is given, they are treated as
212 comment lines.
213
214 @item -fdefault-double-8
215 @cindex @code{-fdefault-double-8}, option
216 @cindex option, @code{-fdefault-double-8}
217 Set the @code{DOUBLE PRECISION} type to an 8 byte wide type.
218
219 @item -fdefault-integer-8
220 @cindex @code{-fdefault-integer-8}, option
221 @cindex option, @code{-fdefault-integer-8}
222 Set the default integer and logical types to an 8 byte wide type.
223 Do nothing if this is already the default.
224
225 @item -fdefault-real-8
226 @cindex @code{-fdefault-real-8}, option
227 @cindex option, @code{-fdefault-real-8}
228 Set the default real type to an 8 byte wide type.
229 Do nothing if this is already the default.
230
231 @item -fdollar-ok
232 @cindex @code{-fdollar-ok} option
233 @cindex option, @code{-fdollar-ok}
234 @cindex dollar sign
235 @cindex symbol names
236 @cindex character set
237 Allow @samp{$} as a valid character in a symbol name.
238
239 @item -fno-backslash
240 @cindex @code{-fno-backslash} option
241 @cindex option, @code{-fno-backslash}
242 @cindex backslash
243 @cindex escape characters
244 Change the interpretation of backslashes in string literals from
245 ``C-style'' escape characters to a single backslash character.
246
247 @item -ffixed-line-length-@var{n}
248 @cindex @code{-ffixed-line-length-}@var{n} option
249 @cindex option, @code{-ffixed-line-length-}@var{n}
250 @cindex source file format
251 @cindex lines, length
252 @cindex length of source lines
253 @cindex fixed form
254 @cindex limits, lengths of source lines
255 Set column after which characters are ignored in typical fixed-form
256 lines in the source file, and through which spaces are assumed (as
257 if padded to that length) after the ends of short fixed-form lines.
258
259 @cindex card image
260 @cindex extended-source option
261 Popular values for @var{n} include 72 (the
262 standard and the default), 80 (card image), and 132 (corresponding
263 to ``extended-source'' options in some popular compilers).
264 @var{n} may also be @samp{none}, meaning that the entire line is meaningful
265 and that continued character constants never have implicit spaces appended
266 to them to fill out the line.
267 @option{-ffixed-line-length-0} means the same thing as
268 @option{-ffixed-line-length-none}.
269
270 @item -ffree-line-length-@var{n}
271 @cindex @code{-ffree-line-length-}@var{n} option
272 @cindex option, @code{-ffree-line-length-}@var{n}
273 @cindex source file format
274 @cindex lines, length
275 @cindex length of source lines
276 @cindex free form
277 @cindex limits, lengths of source lines
278 Set column after which characters are ignored in typical free-form
279 lines in the source file. The default value is 132.
280 @var{n} may be @samp{none}, meaning that the entire line is meaningful.
281 @option{-ffree-line-length-0} means the same thing as
282 @option{-ffree-line-length-none}.
283
284 @item -fmax-identifier-length=@var{n}
285 @cindex @code{-fmax-identifier-length=}@var{n} option
286 @cindex option @option{-fmax-identifier-length=}@var{n}
287 Specify the maximum allowed identifier length. Typical values are
288 31 (Fortran 95) and 63 (Fortran 2003).
289
290 @item -fimplicit-none
291 @cindex @code{-fimplicit-none} option
292 @cindex option, @code{-fimplicit-none}
293 Specify that no implicit typing is allowed, unless overridden by explicit
294 @code{IMPLICIT} statements.  This is the equivalent of adding
295 @code{implicit none} to the start of every procedure.
296
297 @item -fcray-pointer
298 @cindex @code{-fcray-pointer} option
299 @cindex option, @code{-fcray-pointer}
300 Enable the Cray pointer extension, which provides C-like pointer
301 functionality.
302
303 @item -fopenmp
304 @cindex @code{-fopenmp} option
305 @cindex option, @code{-fopenmp}
306 @cindex OpenMP
307 Enable the OpenMP extensions.  This includes OpenMP @code{!$omp} directives
308 in free form
309 and @code{c$omp}, @code{*$omp} and @code{!$omp} directives in fixed form,
310 @code{!$} conditional compilation sentinels in free form
311 and @code{c$}, @code{*$} and @code{!$} sentinels in fixed form, 
312 and when linking arranges for the OpenMP runtime library to be linked
313 in.
314
315 @item -frange-check
316 @cindex @code{-frange-check} option
317 @cindex option, @code{-frange-check}
318 Enable range checking on results of simplification of constant
319 expressions during compilation.  For example, by default, GNU Fortran
320 will give an overflow error at compile time when simplifying @code{a =
321 EXP(1000)}. With @option{-fno-range-check}, no error will be given and
322 the variable @code{a} will be assigned the value @code{+Infinity}.
323 Similarly, @code{DATA i/Z'FFFFFFFF'/} will result in an integer overflow
324 on most systems, but with @option{-fno-range-check} the value will
325 ``wrap around'' and @code{i} will be initialized to @math{-1} instead.
326
327 @item -std=@var{std}
328 @cindex @code{-std=}@var{std} option
329 @cindex option, @code{-std=}@var{std}
330 Conform to the specified standard.  The default value for @var{std} is
331 @samp{gnu}; a superset of the Fortran 95 standard which includes all
332 of the GNU extensions recommended for use in new code.  The @samp{legacy}
333 value also includes obsolete extensions that may be required for old 
334 non-standard programs.  Strict conformance to the Fortran 95 and Fortran 2003
335 standards is specified by @samp{f95} and @samp{f2003}, respectively.
336
337 @end table
338
339 @node Error and Warning Options
340 @section Options to Request or Suppress Errors and Warnings
341 @cindex options, warnings
342 @cindex options, errors
343 @cindex warnings, suppressing
344 @cindex messages, error
345 @cindex messages, warning
346 @cindex suppressing warnings
347
348 Errors are diagnostic messages that report that the GNU Fortran compiler
349 cannot compile the relevant piece of source code.  The compiler will
350 continue to process the program in an attempt to report further errors
351 to aid in debugging, but will not produce any compiled output.  
352
353 Warnings are diagnostic messages that report constructions which
354 are not inherently erroneous but which are risky or suggest there is
355 likely to be a bug in the program.  Unless @option{-Werror} is specified,
356 they do not prevent compilation of the program.
357
358 You can request many specific warnings with options beginning @option{-W},
359 for example @option{-Wimplicit} to request warnings on implicit
360 declarations.  Each of these specific warning options also has a
361 negative form beginning @option{-Wno-} to turn off warnings;
362 for example, @option{-Wno-implicit}.  This manual lists only one of the
363 two forms, whichever is not the default.
364
365 These options control the amount and kinds of errors and warnings produced
366 by GNU Fortran:
367
368 @table @gcctabopt
369 @item -fmax-errors-@var{n}
370 @cindex @code{-fmax-errors-}@var{n} option
371 @cindex option, @code{-fmax-errors-}@var{n}
372 @cindex errors, limiting
373 Limits the maximum number of error messages to @var{n}, at which point
374 GNU Fortran bails out rather than attempting to continue processing the
375 source code.  If @var{n} is 0, there is no limit on the number of error
376 messages produced.
377
378 @item -fsyntax-only
379 @cindex @code{-fsyntax-only} option
380 @cindex option, @code{-fsyntax-only}
381 @cindex syntax checking
382 Check the code for syntax errors, but don't do anything beyond that.
383
384 @item -pedantic
385 @cindex @code{-pedantic} option
386 @cindex option, @code{-pedantic}
387 Issue warnings for uses of extensions to Fortran 95.
388 @option{-pedantic} also applies to C-language constructs where they
389 occur in GNU Fortran source files, such as use of @samp{\e} in a
390 character constant within a directive like @code{#include}.
391
392 Valid Fortran 95 programs should compile properly with or without
393 this option.
394 However, without this option, certain GNU extensions and traditional
395 Fortran features are supported as well.
396 With this option, many of them are rejected.
397
398 Some users try to use @option{-pedantic} to check programs for conformance.
399 They soon find that it does not do quite what they want---it finds some
400 nonstandard practices, but not all.
401 However, improvements to GNU Fortran in this area are welcome.
402
403 This should be used in conjunction with @option{-std=f95} or
404 @option{-std=f2003}.
405
406 @item -pedantic-errors
407 @cindex @code{-pedantic-errors} option
408 @cindex option, @code{-pedantic-errors}
409 Like @option{-pedantic}, except that errors are produced rather than
410 warnings.
411
412 @item -w
413 @cindex @code{-w} option
414 @cindex option, @code{-w}
415 Inhibit all warning messages.
416
417 @item -Wall
418 @cindex @code{-Wall} option
419 @cindex option, @code{-Wall}
420 @cindex all warnings
421 @cindex warnings, all
422 Enables commonly used warning options pertaining to usage that
423 we recommend avoiding and that we believe are easy to avoid.
424 This currently includes @option{-Waliasing},
425 @option{-Wampersand}, @option{-Wsurprising}, @option{-Wnonstd-intrinsic},
426 @option{-Wno-tabs}, and @option{-Wline-truncation}.
427
428 @item -Waliasing
429 @cindex @code{-Waliasing} option
430 @cindex option, @code{-Waliasing}
431 @cindex aliasing
432 Warn about possible aliasing of dummy arguments. Specifically, it warns
433 if the same actual argument is associated with a dummy argument with
434 @code{INTENT(IN)} and a dummy argument with @code{INTENT(OUT)} in a call
435 with an explicit interface.
436
437 The following example will trigger the warning.
438 @smallexample
439   interface
440     subroutine bar(a,b)
441       integer, intent(in) :: a
442       integer, intent(out) :: b
443     end subroutine
444   end interface
445   integer :: a
446
447   call bar(a,a)
448 @end smallexample
449
450 @item -Wampersand
451 @cindex @code{-Wampersand} option
452 @cindex option, @code{-Wampersand}
453 @cindex ampersand
454 Warn about missing ampersand in continued character constants. The warning is
455 given with @option{-Wampersand}, @option{-pedantic}, @option{-std=f95}, and
456 @option{-std=f2003}. Note: With no ampersand given in a continued character
457 constant, GNU Fortran assumes continuation at the first non-comment,
458 non-whitespace character after the ampersand that initiated the continuation.
459
460 @item -Wconversion
461 @cindex @code{-Wconversion} option
462 @cindex option, @code{-Wconversion}
463 @cindex conversion
464 Warn about implicit conversions between different types.
465
466 @item -Wimplicit-interface
467 @cindex @code{-Wimplicit-interface} option
468 @cindex option, @code{-Wimplicit-interface}
469 Warn if a procedure is called without an explicit interface.
470 Note this only checks that an explicit interface is present.  It does not
471 check that the declared interfaces are consistent across program units.
472
473 @item -Wnonstd-intrinsic
474 @cindex @code{-Wnonstd-intrinsic} option
475 @cindex option, @code{-Wnonstd-intrinsic}
476 Warn if the user tries to use an intrinsic that does not belong to the 
477 standard the user has chosen via the -std option.
478
479 @item -Wsurprising
480 @cindex @code{-Wsurprising} option
481 @cindex option, @code{-Wsurprising}
482 @cindex Suspicious code
483 Produce a warning when ``suspicious'' code constructs are encountered.
484 While technically legal these usually indicate that an error has been made.
485
486 This currently produces a warning under the following circumstances:
487
488 @itemize @bullet
489 @item
490 An INTEGER SELECT construct has a CASE that can never be matched as its
491 lower value is greater than its upper value.
492
493 @item
494 A LOGICAL SELECT construct has three CASE statements.
495 @end itemize
496
497 @item -Wtabs
498 @cindex @code{-Wtabs} option
499 @cindex option, @code{-Wtabs}
500 @cindex Tabs
501 By default, tabs are accepted as whitespace, but tabs are not members
502 of the Fortran Character Set.  @option{-Wno-tabs} will cause a warning
503 to be issued if a tab is encountered. Note, @option{-Wno-tabs} is active
504 for @option{-pedantic}, @option{-std=f95}, and @option{-Wall}.
505
506 @item -Wunderflow
507 @cindex @code{-Wunderflow} option
508 @cindex option, @code{-Wunderflow}
509 @cindex UNDERFLOW
510 Produce a warning when numerical constant expressions are
511 encountered, which yield an UNDERFLOW during compilation.
512
513 @item -Werror
514 @cindex @code{-Werror} option
515 @cindex option, @code{-Werror}
516 Turns all warnings into errors.
517
518 @item -W
519 @cindex @code{-W} option
520 @cindex option, @code{-W}
521 @cindex extra warnings
522 @cindex warnings, extra
523 Turns on ``extra warnings'' and, if optimization is specified
524 via @option{-O}, the @option{-Wuninitialized} option.
525 (This might change in future versions of GNU Fortran.)
526 @end table
527
528 @xref{Error and Warning Options,,Options to Request or Suppress Errors and
529 Warnings, gcc,Using the GNU Compiler Collection (GCC)}, for information on
530 more options offered by the GBE shared by @command{gfortran}, @command{gcc}
531 and other GNU compilers.
532
533 Some of these have no effect when compiling programs written in Fortran.
534
535 @node Debugging Options
536 @section Options for Debugging Your Program or GNU Fortran
537 @cindex options, debugging
538 @cindex debugging information options
539
540 GNU Fortran has various special options that are used for debugging
541 either your program or the GNU Fortran compiler.
542
543 @table @gcctabopt
544 @item -fdump-parse-tree
545 @cindex @code{-fdump-parse-tree} option
546 @cindex option, @code{-fdump-parse-tree}
547 Output the internal parse tree before starting code generation.  Only
548 really useful for debugging the GNU Fortran compiler itself.
549
550 @item -ffpe-trap=@var{list}
551 @cindex @code{-ffpe-trap=}@var{list} option
552 @cindex option, @code{-ffpe-trap=}@var{list}
553 Specify a list of IEEE exceptions when a Floating Point Exception
554 (FPE) should be raised.  On most systems, this will result in a SIGFPE
555 signal being sent and the program being interrupted, producing a core
556 file useful for debugging.  @var{list} is a (possibly empty) comma-separated
557 list of the following IEEE exceptions: @samp{invalid} (invalid floating
558 point operation, such as @code{SQRT(-1.0)}), @samp{zero} (division by
559 zero), @samp{overflow} (overflow in a floating point operation),
560 @samp{underflow} (underflow in a floating point operation),
561 @samp{precision} (loss of precision during operation) and @samp{denormal}
562 (operation produced a denormal value).
563
564 @cindex -fdump-core option
565 @cindex options, -fdump-core
566 @item -fdump-core
567 @cindex core
568 Request that a core-dump file is written to disk when a runtime error
569 is encountered on systems that support core dumps. This option is
570 only effective for the compilation of the Fortran main program.
571
572 @end table
573
574 @xref{Debugging Options,,Options for Debugging Your Program or GCC,
575 gcc,Using the GNU Compiler Collection (GCC)}, for more information on
576 debugging options.
577
578 @node Directory Options
579 @section Options for Directory Search
580 @cindex directory, options
581 @cindex options, directory search
582 @cindex search path
583 @cindex INCLUDE directive
584 @cindex directive, INCLUDE
585 These options affect how GNU Fortran searches
586 for files specified by the @code{INCLUDE} directive and where it searches
587 for previously compiled modules.
588
589 It also affects the search paths used by @command{cpp} when used to preprocess
590 Fortran source.
591
592 @table @gcctabopt
593 @item -I@var{dir}
594 @cindex @code{-I}@var{dir} option
595 @cindex option, @code{-I}@var{dir}
596 @cindex directory, search paths for inclusion
597 @cindex inclusion, directory search paths for
598 @cindex search paths, for included files
599 @cindex paths, search
600 @cindex module search path
601 These affect interpretation of the @code{INCLUDE} directive
602 (as well as of the @code{#include} directive of the @command{cpp}
603 preprocessor).
604
605 Also note that the general behavior of @option{-I} and
606 @code{INCLUDE} is pretty much the same as of @option{-I} with
607 @code{#include} in the @command{cpp} preprocessor, with regard to
608 looking for @file{header.gcc} files and other such things.
609
610 This path is also used to search for @file{.mod} files when previously
611 compiled modules are required by a @code{USE} statement.
612
613 @xref{Directory Options,,Options for Directory Search,
614 gcc,Using the GNU Compiler Collection (GCC)}, for information on the
615 @option{-I} option.
616
617 @item -M@var{dir}
618 @item -J@var{dir}
619 @cindex @code{-M}@var{dir} option
620 @cindex option, -@code{-M}@var{dir}
621 @cindex @code{-J}@var{dir} option
622 @cindex option, -@code{-J}@var{dir}
623 This option specifies where to put @file{.mod} files for compiled modules.
624 It is also added to the list of directories to searched by an @code{USE}
625 statement.
626
627 The default is the current directory.
628
629 @option{-J} is an alias for @option{-M} to avoid conflicts with existing
630 GCC options.
631 @end table
632
633 @node Runtime Options
634 @section Influencing runtime behavior
635 @cindex runtime, options
636
637 These options affect the runtime behavior of programs compiled with GNU Fortran.
638 @table @gcctabopt
639 @item -fconvert=@var{conversion}
640 @cindex @code{-fconvert=}@var{conversion} option
641 @cindex option, @code{-fconvert=}@var{conversion}
642 Specify the representation of data for unformatted files.  Valid
643 values for conversion are: @samp{native}, the default; @samp{swap},
644 swap between big- and little-endian; @samp{big-endian}, use big-endian
645 representation for unformatted files; @samp{little-endian}, use little-endian
646 representation for unformatted files.
647
648 @emph{This option has an effect only when used in the main program.
649 The @code{CONVERT} specifier and the GFORTRAN_CONVERT_UNIT environment
650 variable override the default specified by @option{-fconvert}.}
651
652 @item -frecord-marker=@var{length}
653 @cindex @code{-frecord-marker=}@var{length} option
654 @cindex option, @code{-frecord-marker=}@var{length}
655 Specify the length of record markers for unformatted files.
656 Valid values for @var{length} are 4 and 8.  Default is 4.
657 @emph{This is different from previous versions of gfortran},
658 which specified a default record marker length of 8 on most
659 systems.  If you want to read or write files compatible
660 with earlier versions of gfortran, use @option{-frecord-marker=8}.
661
662 @item -fmax-subrecord-length=@var{length}
663 @cindex @code{-fmax-subrecord-length=}@var{length} option
664 @cindex option, @code{-fmax-subrecord-length=}@var{length}
665 Specify the maximum length for a subrecord.  The maximum permitted
666 value for length is 2147483639, which is also the default.  Only
667 really useful for use by the gfortran testsuite.
668 @end table
669
670 @node Code Gen Options
671 @section Options for Code Generation Conventions
672 @cindex code generation, conventions
673 @cindex options, code generation
674 @cindex run-time, options
675
676 These machine-independent options control the interface conventions
677 used in code generation.
678
679 Most of them have both positive and negative forms; the negative form
680 of @option{-ffoo} would be @option{-fno-foo}.  In the table below, only
681 one of the forms is listed---the one which is not the default.  You
682 can figure out the other form by either removing @option{no-} or adding
683 it.
684
685 @table @gcctabopt
686 @item -fno-automatic
687 @cindex @code{-fno-automatic} option
688 @cindex option, @code{-fno-automatic}
689 @cindex SAVE statement
690 @cindex statements, SAVE
691 Treat each program unit as if the @code{SAVE} statement was specified for
692 every local variable and array referenced in it. Does not affect common
693 blocks. (Some Fortran compilers provide this option under the name
694 @option{-static}.)
695
696 @item -ff2c
697 @cindex @code{-ff2c} option
698 @cindex option, @code{-ff2c}
699 @cindex calling convention
700 @cindex @command{f2c} calling convention
701 @cindex @command{g77} calling convention
702 @cindex libf2c calling convention
703 Generate code designed to be compatible with code generated
704 by @command{g77} and @command{f2c}.
705
706 The calling conventions used by @command{g77} (originally implemented
707 in @command{f2c}) require functions that return type
708 default @code{REAL} to actually return the C type @code{double}, and
709 functions that return type @code{COMPLEX} to return the values via an
710 extra argument in the calling sequence that points to where to
711 store the return value.  Under the default GNU calling conventions, such
712 functions simply return their results as they would in GNU
713 C---default @code{REAL} functions return the C type @code{float}, and
714 @code{COMPLEX} functions return the GNU C type @code{complex}.
715 Additionally, this option implies the @option{-fsecond-underscore}
716 option, unless @option{-fno-second-underscore} is explicitly requested.
717
718 This does not affect the generation of code that interfaces with
719 the @command{libgfortran} library.
720
721 @emph{Caution:} It is not a good idea to mix Fortran code compiled with
722 @option{-ff2c} with code compiled with the default @option{-fno-f2c}
723 calling conventions as, calling @code{COMPLEX} or default @code{REAL}
724 functions between program parts which were compiled with different
725 calling conventions will break at execution time.
726
727 @emph{Caution:} This will break code which passes intrinsic functions
728 of type default @code{REAL} or @code{COMPLEX} as actual arguments, as
729 the library implementations use the @option{-fno-f2c} calling conventions.
730
731 @item -fno-underscoring
732 @cindex @code{-fno-underscoring option}
733 @cindex option, @code{-fno-underscoring}
734 @cindex underscore
735 @cindex symbol names, underscores
736 @cindex transforming symbol names
737 @cindex symbol names, transforming
738 Do not transform names of entities specified in the Fortran
739 source file by appending underscores to them.
740
741 With @option{-funderscoring} in effect, GNU Fortran appends one
742 underscore to external names with no underscores.  This is done to ensure
743 compatibility with code produced by many UNIX Fortran compilers.
744
745 @emph{Caution}: The default behavior of GNU Fortran is
746 incompatible with @command{f2c} and @command{g77}, please use the
747 @option{-ff2c} option if you want object files compiled with
748 GNU Fortran to be compatible with object code created with these
749 tools.
750
751 Use of @option{-fno-underscoring} is not recommended unless you are
752 experimenting with issues such as integration of GNU Fortran into
753 existing system environments (vis-a-vis existing libraries, tools, and
754 so on).
755
756 For example, with @option{-funderscoring}, and assuming other defaults like
757 @option{-fcase-lower} and that @code{j()} and @code{max_count()} are
758 external functions while @code{my_var} and @code{lvar} are local variables,
759 a statement like
760 @smallexample
761 I = J() + MAX_COUNT (MY_VAR, LVAR)
762 @end smallexample
763 @noindent
764 is implemented as something akin to:
765 @smallexample
766 i = j_() + max_count__(&my_var__, &lvar);
767 @end smallexample
768
769 With @option{-fno-underscoring}, the same statement is implemented as:
770
771 @smallexample
772 i = j() + max_count(&my_var, &lvar);
773 @end smallexample
774
775 Use of @option{-fno-underscoring} allows direct specification of
776 user-defined names while debugging and when interfacing GNU Fortran
777 code with other languages.
778
779 Note that just because the names match does @emph{not} mean that the
780 interface implemented by GNU Fortran for an external name matches the
781 interface implemented by some other language for that same name.
782 That is, getting code produced by GNU Fortran to link to code produced
783 by some other compiler using this or any other method can be only a
784 small part of the overall solution---getting the code generated by
785 both compilers to agree on issues other than naming can require
786 significant effort, and, unlike naming disagreements, linkers normally
787 cannot detect disagreements in these other areas.
788
789 Also, note that with @option{-fno-underscoring}, the lack of appended
790 underscores introduces the very real possibility that a user-defined
791 external name will conflict with a name in a system library, which
792 could make finding unresolved-reference bugs quite difficult in some
793 cases---they might occur at program run time, and show up only as
794 buggy behavior at run time.
795
796 In future versions of GNU Fortran we hope to improve naming and linking
797 issues so that debugging always involves using the names as they appear
798 in the source, even if the names as seen by the linker are mangled to
799 prevent accidental linking between procedures with incompatible
800 interfaces.
801
802 @item -fsecond-underscore
803 @cindex @code{-fsecond-underscore option}
804 @cindex option, @code{-fsecond-underscore}
805 @cindex underscore
806 @cindex symbol names, underscores
807 @cindex transforming symbol names
808 @cindex symbol names, transforming
809 @cindex @command{f2c} calling convention
810 @cindex @command{g77} calling convention
811 @cindex libf2c calling convention
812 By default, GNU Fortran appends an underscore to external
813 names.  If this option is used GNU Fortran appends two
814 underscores to names with underscores and one underscore to external names
815 with no underscores.  GNU Fortran also appends two underscores to
816 internal names with underscores to avoid naming collisions with external
817 names.
818
819 This option has no effect if @option{-fno-underscoring} is
820 in effect.  It is implied by the @option{-ff2c} option.
821
822 Otherwise, with this option, an external name such as @code{MAX_COUNT}
823 is implemented as a reference to the link-time external symbol
824 @code{max_count__}, instead of @code{max_count_}.  This is required
825 for compatibility with @command{g77} and @command{f2c}, and is implied
826 by use of the @option{-ff2c} option.
827
828 @item -fbounds-check
829 @cindex @code{-fbounds-check} option
830 @cindex option, @code{-fbounds-check}
831 @cindex bounds checking
832 @cindex range checking
833 @cindex array bounds checking
834 @cindex subscript checking
835 @cindex checking subscripts
836 Enable generation of run-time checks for array subscripts
837 and against the declared minimum and maximum values.  It also
838 checks array indices for assumed and deferred
839 shape arrays against the actual allocated bounds.
840
841 In the future this may also include other forms of checking, e.g., checking
842 substring references.
843
844 @item -fmax-stack-var-size=@var{n}
845 @cindex @code{-fmax-stack-var-size} option
846 @cindex option, @code{-fmax-stack-var-size}
847 This option specifies the size in bytes of the largest array that will be put
848 on the stack.
849
850 This option currently only affects local arrays declared with constant
851 bounds, and may not apply to all character variables.
852 Future versions of GNU Fortran may improve this behavior.
853
854 The default value for @var{n} is 32768.
855
856 @item -fpack-derived
857 @cindex @code{-fpack-derived} option
858 @cindex option, @code{-fpack-derived}
859 @cindex Structure packing
860 This option tells GNU Fortran to pack derived type members as closely as
861 possible.  Code compiled with this option is likely to be incompatible
862 with code compiled without this option, and may execute slower.
863
864 @item -frepack-arrays
865 @cindex @code{-frepack-arrays} option
866 @cindex option, @code{-frepack-arrays}
867 @cindex Repacking arrays
868 In some circumstances GNU Fortran may pass assumed shape array
869 sections via a descriptor describing a noncontiguous area of memory.
870 This option adds code to the function prologue to repack the data into
871 a contiguous block at runtime.
872
873 This should result in faster accesses to the array.  However it can introduce
874 significant overhead to the function call, especially  when the passed data
875 is noncontiguous.
876
877 @item -fshort-enums
878 @cindex @code{-fshort-enums} option
879 @cindex option, @code{-fshort-enums}
880 This option is provided for interoperability with C code that was
881 compiled with the @option{-fshort-enums} option.  It will make
882 GNU Fortran choose the smallest @code{INTEGER} kind a given
883 enumerator set will fit in, and give all its enumerators this kind.
884
885 @item -fexternal-blas
886 @cindex @code{-fexternal-blas} option
887 @cindex option, @code{-fexternal-blas}
888 This option will make gfortran generate calls to BLAS functions for some
889 matrix operations like @code{MATMUL}, instead of using our own
890 algorithms, if the size of the matrices involved is larger than a given
891 limit (see @option{-fblas-matmul-limit}).  This may be profitable if an
892 optimized vendor BLAS library is available.  The BLAS library will have
893 to be specified at link time.
894
895 @item -fblas-matmul-limit=@var{n}
896 @cindex @code{-fblas-matmul-limit} option
897 @cindex option, @code{-fblas-matmul-limit}
898 Only significant when @option{-fexternal-blas} is in effect.
899 Matrix multiplication of matrices with size larger than (or equal to) @var{n}
900 will be performed by calls to BLAS functions, while others will be
901 handled by @command{gfortran} internal algorithms. If the matrices
902 involved are not square, the size comparison is performed using the
903 geometric mean of the dimensions of the argument and result matrices.
904
905 The default value for @var{n} is 30.
906
907 @end table
908
909 @xref{Code Gen Options,,Options for Code Generation Conventions,
910 gcc,Using the GNU Compiler Collection (GCC)}, for information on more options
911 offered by the GBE
912 shared by @command{gfortran}, @command{gcc}, and other GNU compilers.
913
914
915 @c man end
916
917 @node Environment Variables
918 @section Environment Variables Affecting @command{gfortran}
919 @cindex environment variables
920
921 @c man begin ENVIRONMENT
922
923 The @command{gfortran} compiler currently does not make use of any environment
924 variables to control its operation above and beyond those
925 that affect the operation of @command{gcc}.
926
927 @xref{Environment Variables,,Environment Variables Affecting GCC,
928 gcc,Using the GNU Compiler Collection (GCC)}, for information on environment
929 variables.
930
931 @xref{Runtime}, for environment variables that affect the
932 run-time behavior of programs compiled with GNU Fortran.
933 @c man end