annotate gcc/fortran/invoke.texi @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 @c Copyright (C) 2004-2017 Free Software Foundation, Inc.
kono
parents:
diff changeset
2 @c This is part of the GNU Fortran manual.
kono
parents:
diff changeset
3 @c For copying conditions, see the file gfortran.texi.
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 @ignore
kono
parents:
diff changeset
6 @c man begin COPYRIGHT
kono
parents:
diff changeset
7 Copyright @copyright{} 2004-2017 Free Software Foundation, Inc.
kono
parents:
diff changeset
8
kono
parents:
diff changeset
9 Permission is granted to copy, distribute and/or modify this document
kono
parents:
diff changeset
10 under the terms of the GNU Free Documentation License, Version 1.3 or
kono
parents:
diff changeset
11 any later version published by the Free Software Foundation; with the
kono
parents:
diff changeset
12 Invariant Sections being ``Funding Free Software'', the Front-Cover
kono
parents:
diff changeset
13 Texts being (a) (see below), and with the Back-Cover Texts being (b)
kono
parents:
diff changeset
14 (see below). A copy of the license is included in the gfdl(7) man page.
kono
parents:
diff changeset
15
kono
parents:
diff changeset
16 (a) The FSF's Front-Cover Text is:
kono
parents:
diff changeset
17
kono
parents:
diff changeset
18 A GNU Manual
kono
parents:
diff changeset
19
kono
parents:
diff changeset
20 (b) The FSF's Back-Cover Text is:
kono
parents:
diff changeset
21
kono
parents:
diff changeset
22 You have freedom to copy and modify this GNU Manual, like GNU
kono
parents:
diff changeset
23 software. Copies published by the Free Software Foundation raise
kono
parents:
diff changeset
24 funds for GNU development.
kono
parents:
diff changeset
25 @c man end
kono
parents:
diff changeset
26 @c Set file name and title for the man page.
kono
parents:
diff changeset
27 @setfilename gfortran
kono
parents:
diff changeset
28 @settitle GNU Fortran compiler.
kono
parents:
diff changeset
29 @c man begin SYNOPSIS
kono
parents:
diff changeset
30 gfortran [@option{-c}|@option{-S}|@option{-E}]
kono
parents:
diff changeset
31 [@option{-g}] [@option{-pg}] [@option{-O}@var{level}]
kono
parents:
diff changeset
32 [@option{-W}@var{warn}@dots{}] [@option{-pedantic}]
kono
parents:
diff changeset
33 [@option{-I}@var{dir}@dots{}] [@option{-L}@var{dir}@dots{}]
kono
parents:
diff changeset
34 [@option{-D}@var{macro}[=@var{defn}]@dots{}] [@option{-U}@var{macro}]
kono
parents:
diff changeset
35 [@option{-f}@var{option}@dots{}]
kono
parents:
diff changeset
36 [@option{-m}@var{machine-option}@dots{}]
kono
parents:
diff changeset
37 [@option{-o} @var{outfile}] @var{infile}@dots{}
kono
parents:
diff changeset
38
kono
parents:
diff changeset
39 Only the most useful options are listed here; see below for the
kono
parents:
diff changeset
40 remainder.
kono
parents:
diff changeset
41 @c man end
kono
parents:
diff changeset
42 @c man begin SEEALSO
kono
parents:
diff changeset
43 gpl(7), gfdl(7), fsf-funding(7),
kono
parents:
diff changeset
44 cpp(1), gcov(1), gcc(1), as(1), ld(1), gdb(1), adb(1), dbx(1), sdb(1)
kono
parents:
diff changeset
45 and the Info entries for @file{gcc}, @file{cpp}, @file{gfortran}, @file{as},
kono
parents:
diff changeset
46 @file{ld}, @file{binutils} and @file{gdb}.
kono
parents:
diff changeset
47 @c man end
kono
parents:
diff changeset
48 @c man begin BUGS
kono
parents:
diff changeset
49 For instructions on reporting bugs, see
kono
parents:
diff changeset
50 @w{@value{BUGURL}}.
kono
parents:
diff changeset
51 @c man end
kono
parents:
diff changeset
52 @c man begin AUTHOR
kono
parents:
diff changeset
53 See the Info entry for @command{gfortran} for contributors to GCC and
kono
parents:
diff changeset
54 GNU Fortran.
kono
parents:
diff changeset
55 @c man end
kono
parents:
diff changeset
56 @end ignore
kono
parents:
diff changeset
57
kono
parents:
diff changeset
58 @node Invoking GNU Fortran
kono
parents:
diff changeset
59 @chapter GNU Fortran Command Options
kono
parents:
diff changeset
60 @cindex GNU Fortran command options
kono
parents:
diff changeset
61 @cindex command options
kono
parents:
diff changeset
62 @cindex options, @command{gfortran} command
kono
parents:
diff changeset
63
kono
parents:
diff changeset
64 @c man begin DESCRIPTION
kono
parents:
diff changeset
65
kono
parents:
diff changeset
66 The @command{gfortran} command supports all the options supported by the
kono
parents:
diff changeset
67 @command{gcc} command. Only options specific to GNU Fortran are documented
kono
parents:
diff changeset
68 here.
kono
parents:
diff changeset
69
kono
parents:
diff changeset
70 @xref{Invoking GCC,,GCC Command Options,gcc,Using the GNU Compiler
kono
parents:
diff changeset
71 Collection (GCC)}, for information
kono
parents:
diff changeset
72 on the non-Fortran-specific aspects of the @command{gcc} command (and,
kono
parents:
diff changeset
73 therefore, the @command{gfortran} command).
kono
parents:
diff changeset
74
kono
parents:
diff changeset
75 @cindex options, negative forms
kono
parents:
diff changeset
76 All GCC and GNU Fortran options
kono
parents:
diff changeset
77 are accepted both by @command{gfortran} and by @command{gcc}
kono
parents:
diff changeset
78 (as well as any other drivers built at the same time,
kono
parents:
diff changeset
79 such as @command{g++}),
kono
parents:
diff changeset
80 since adding GNU Fortran to the GCC distribution
kono
parents:
diff changeset
81 enables acceptance of GNU Fortran options
kono
parents:
diff changeset
82 by all of the relevant drivers.
kono
parents:
diff changeset
83
kono
parents:
diff changeset
84 In some cases, options have positive and negative forms;
kono
parents:
diff changeset
85 the negative form of @option{-ffoo} would be @option{-fno-foo}.
kono
parents:
diff changeset
86 This manual documents only one of these two forms, whichever
kono
parents:
diff changeset
87 one is not the default.
kono
parents:
diff changeset
88 @c man end
kono
parents:
diff changeset
89
kono
parents:
diff changeset
90 @menu
kono
parents:
diff changeset
91 * Option Summary:: Brief list of all @command{gfortran} options,
kono
parents:
diff changeset
92 without explanations.
kono
parents:
diff changeset
93 * Fortran Dialect Options:: Controlling the variant of Fortran language
kono
parents:
diff changeset
94 compiled.
kono
parents:
diff changeset
95 * Preprocessing Options:: Enable and customize preprocessing.
kono
parents:
diff changeset
96 * Error and Warning Options:: How picky should the compiler be?
kono
parents:
diff changeset
97 * Debugging Options:: Symbol tables, measurements, and debugging dumps.
kono
parents:
diff changeset
98 * Directory Options:: Where to find module files
kono
parents:
diff changeset
99 * Link Options :: Influencing the linking step
kono
parents:
diff changeset
100 * Runtime Options:: Influencing runtime behavior
kono
parents:
diff changeset
101 * Code Gen Options:: Specifying conventions for function calls, data layout
kono
parents:
diff changeset
102 and register usage.
kono
parents:
diff changeset
103 * Interoperability Options:: Options for interoperability with other
kono
parents:
diff changeset
104 languages.
kono
parents:
diff changeset
105 * Environment Variables:: Environment variables that affect @command{gfortran}.
kono
parents:
diff changeset
106 @end menu
kono
parents:
diff changeset
107
kono
parents:
diff changeset
108 @node Option Summary
kono
parents:
diff changeset
109 @section Option summary
kono
parents:
diff changeset
110
kono
parents:
diff changeset
111 @c man begin OPTIONS
kono
parents:
diff changeset
112
kono
parents:
diff changeset
113 Here is a summary of all the options specific to GNU Fortran, grouped
kono
parents:
diff changeset
114 by type. Explanations are in the following sections.
kono
parents:
diff changeset
115
kono
parents:
diff changeset
116 @table @emph
kono
parents:
diff changeset
117 @item Fortran Language Options
kono
parents:
diff changeset
118 @xref{Fortran Dialect Options,,Options controlling Fortran dialect}.
kono
parents:
diff changeset
119 @gccoptlist{-fall-intrinsics -fbackslash -fcray-pointer -fd-lines-as-code @gol
kono
parents:
diff changeset
120 -fd-lines-as-comments @gol
kono
parents:
diff changeset
121 -fdec -fdec-structure -fdec-intrinsic-ints -fdec-static -fdec-math @gol
kono
parents:
diff changeset
122 -fdefault-double-8 -fdefault-integer-8 -fdefault-real-8 @gol
kono
parents:
diff changeset
123 -fdefault-real-10 -fdefault-real-16 -fdollar-ok -ffixed-line-length-@var{n} @gol
kono
parents:
diff changeset
124 -ffixed-line-length-none -ffree-form -ffree-line-length-@var{n} @gol
kono
parents:
diff changeset
125 -ffree-line-length-none -fimplicit-none -finteger-4-integer-8 @gol
kono
parents:
diff changeset
126 -fmax-identifier-length -fmodule-private -ffixed-form -fno-range-check @gol
kono
parents:
diff changeset
127 -fopenacc -fopenmp -freal-4-real-10 -freal-4-real-16 -freal-4-real-8 @gol
kono
parents:
diff changeset
128 -freal-8-real-10 -freal-8-real-16 -freal-8-real-4 -std=@var{std}
kono
parents:
diff changeset
129 -ftest-forall-temp
kono
parents:
diff changeset
130 }
kono
parents:
diff changeset
131
kono
parents:
diff changeset
132 @item Preprocessing Options
kono
parents:
diff changeset
133 @xref{Preprocessing Options,,Enable and customize preprocessing}.
kono
parents:
diff changeset
134 @gccoptlist{-A-@var{question}@r{[}=@var{answer}@r{]}
kono
parents:
diff changeset
135 -A@var{question}=@var{answer} -C -CC -D@var{macro}@r{[}=@var{defn}@r{]}
kono
parents:
diff changeset
136 -H -P @gol
kono
parents:
diff changeset
137 -U@var{macro} -cpp -dD -dI -dM -dN -dU -fworking-directory
kono
parents:
diff changeset
138 -imultilib @var{dir} @gol
kono
parents:
diff changeset
139 -iprefix @var{file} -iquote -isysroot @var{dir} -isystem @var{dir} -nocpp
kono
parents:
diff changeset
140 -nostdinc @gol
kono
parents:
diff changeset
141 -undef
kono
parents:
diff changeset
142 }
kono
parents:
diff changeset
143
kono
parents:
diff changeset
144 @item Error and Warning Options
kono
parents:
diff changeset
145 @xref{Error and Warning Options,,Options to request or suppress errors
kono
parents:
diff changeset
146 and warnings}.
kono
parents:
diff changeset
147 @gccoptlist{-Waliasing -Wall -Wampersand -Wargument-mismatch -Warray-bounds
kono
parents:
diff changeset
148 -Wc-binding-type -Wcharacter-truncation -Wconversion @gol
kono
parents:
diff changeset
149 -Wdo-subscript -Wfunction-elimination -Wimplicit-interface @gol
kono
parents:
diff changeset
150 -Wimplicit-procedure -Wintrinsic-shadow -Wuse-without-only -Wintrinsics-std @gol
kono
parents:
diff changeset
151 -Wline-truncation -Wno-align-commons -Wno-tabs -Wreal-q-constant @gol
kono
parents:
diff changeset
152 -Wsurprising -Wunderflow -Wunused-parameter -Wrealloc-lhs -Wrealloc-lhs-all @gol
kono
parents:
diff changeset
153 -Wtarget-lifetime -fmax-errors=@var{n} -fsyntax-only -pedantic -pedantic-errors
kono
parents:
diff changeset
154 }
kono
parents:
diff changeset
155
kono
parents:
diff changeset
156 @item Debugging Options
kono
parents:
diff changeset
157 @xref{Debugging Options,,Options for debugging your program or GNU Fortran}.
kono
parents:
diff changeset
158 @gccoptlist{-fbacktrace -fdump-fortran-optimized -fdump-fortran-original @gol
kono
parents:
diff changeset
159 -fdump-parse-tree -ffpe-trap=@var{list} -ffpe-summary=@var{list}
kono
parents:
diff changeset
160 }
kono
parents:
diff changeset
161
kono
parents:
diff changeset
162 @item Directory Options
kono
parents:
diff changeset
163 @xref{Directory Options,,Options for directory search}.
kono
parents:
diff changeset
164 @gccoptlist{-I@var{dir} -J@var{dir} -fintrinsic-modules-path @var{dir}}
kono
parents:
diff changeset
165
kono
parents:
diff changeset
166 @item Link Options
kono
parents:
diff changeset
167 @xref{Link Options,,Options for influencing the linking step}.
kono
parents:
diff changeset
168 @gccoptlist{-static-libgfortran}
kono
parents:
diff changeset
169
kono
parents:
diff changeset
170 @item Runtime Options
kono
parents:
diff changeset
171 @xref{Runtime Options,,Options for influencing runtime behavior}.
kono
parents:
diff changeset
172 @gccoptlist{-fconvert=@var{conversion} -fmax-subrecord-length=@var{length} @gol
kono
parents:
diff changeset
173 -frecord-marker=@var{length} -fsign-zero
kono
parents:
diff changeset
174 }
kono
parents:
diff changeset
175
kono
parents:
diff changeset
176 @item Interoperability Options
kono
parents:
diff changeset
177 @xref{Interoperability Options,,Options for interoperability}.
kono
parents:
diff changeset
178 @gccoptlist{-fc-prototypes}
kono
parents:
diff changeset
179
kono
parents:
diff changeset
180 @item Code Generation Options
kono
parents:
diff changeset
181 @xref{Code Gen Options,,Options for code generation conventions}.
kono
parents:
diff changeset
182 @gccoptlist{-faggressive-function-elimination -fblas-matmul-limit=@var{n} @gol
kono
parents:
diff changeset
183 -fbounds-check -fcheck-array-temporaries @gol
kono
parents:
diff changeset
184 -fcheck=@var{<all|array-temps|bounds|do|mem|pointer|recursion>} @gol
kono
parents:
diff changeset
185 -fcoarray=@var{<none|single|lib>} -fexternal-blas -ff2c
kono
parents:
diff changeset
186 -ffrontend-optimize @gol
kono
parents:
diff changeset
187 -finit-character=@var{n} -finit-integer=@var{n} -finit-local-zero @gol
kono
parents:
diff changeset
188 -finit-derived @gol
kono
parents:
diff changeset
189 -finit-logical=@var{<true|false>}
kono
parents:
diff changeset
190 -finit-real=@var{<zero|inf|-inf|nan|snan>} @gol
kono
parents:
diff changeset
191 -finline-matmul-limit=@var{n} @gol
kono
parents:
diff changeset
192 -fmax-array-constructor=@var{n} -fmax-stack-var-size=@var{n}
kono
parents:
diff changeset
193 -fno-align-commons @gol
kono
parents:
diff changeset
194 -fno-automatic -fno-protect-parens -fno-underscoring @gol
kono
parents:
diff changeset
195 -fsecond-underscore -fpack-derived -frealloc-lhs -frecursive @gol
kono
parents:
diff changeset
196 -frepack-arrays -fshort-enums -fstack-arrays
kono
parents:
diff changeset
197 }
kono
parents:
diff changeset
198 @end table
kono
parents:
diff changeset
199
kono
parents:
diff changeset
200 @node Fortran Dialect Options
kono
parents:
diff changeset
201 @section Options controlling Fortran dialect
kono
parents:
diff changeset
202 @cindex dialect options
kono
parents:
diff changeset
203 @cindex language, dialect options
kono
parents:
diff changeset
204 @cindex options, dialect
kono
parents:
diff changeset
205
kono
parents:
diff changeset
206 The following options control the details of the Fortran dialect
kono
parents:
diff changeset
207 accepted by the compiler:
kono
parents:
diff changeset
208
kono
parents:
diff changeset
209 @table @gcctabopt
kono
parents:
diff changeset
210 @item -ffree-form
kono
parents:
diff changeset
211 @itemx -ffixed-form
kono
parents:
diff changeset
212 @opindex @code{ffree-form}
kono
parents:
diff changeset
213 @opindex @code{ffixed-form}
kono
parents:
diff changeset
214 @cindex options, Fortran dialect
kono
parents:
diff changeset
215 @cindex file format, free
kono
parents:
diff changeset
216 @cindex file format, fixed
kono
parents:
diff changeset
217 Specify the layout used by the source file. The free form layout
kono
parents:
diff changeset
218 was introduced in Fortran 90. Fixed form was traditionally used in
kono
parents:
diff changeset
219 older Fortran programs. When neither option is specified, the source
kono
parents:
diff changeset
220 form is determined by the file extension.
kono
parents:
diff changeset
221
kono
parents:
diff changeset
222 @item -fall-intrinsics
kono
parents:
diff changeset
223 @opindex @code{fall-intrinsics}
kono
parents:
diff changeset
224 This option causes all intrinsic procedures (including the GNU-specific
kono
parents:
diff changeset
225 extensions) to be accepted. This can be useful with @option{-std=f95} to
kono
parents:
diff changeset
226 force standard-compliance but get access to the full range of intrinsics
kono
parents:
diff changeset
227 available with @command{gfortran}. As a consequence, @option{-Wintrinsics-std}
kono
parents:
diff changeset
228 will be ignored and no user-defined procedure with the same name as any
kono
parents:
diff changeset
229 intrinsic will be called except when it is explicitly declared @code{EXTERNAL}.
kono
parents:
diff changeset
230
kono
parents:
diff changeset
231 @item -fd-lines-as-code
kono
parents:
diff changeset
232 @itemx -fd-lines-as-comments
kono
parents:
diff changeset
233 @opindex @code{fd-lines-as-code}
kono
parents:
diff changeset
234 @opindex @code{fd-lines-as-comments}
kono
parents:
diff changeset
235 Enable special treatment for lines beginning with @code{d} or @code{D}
kono
parents:
diff changeset
236 in fixed form sources. If the @option{-fd-lines-as-code} option is
kono
parents:
diff changeset
237 given they are treated as if the first column contained a blank. If the
kono
parents:
diff changeset
238 @option{-fd-lines-as-comments} option is given, they are treated as
kono
parents:
diff changeset
239 comment lines.
kono
parents:
diff changeset
240
kono
parents:
diff changeset
241 @item -fdec
kono
parents:
diff changeset
242 @opindex @code{fdec}
kono
parents:
diff changeset
243 DEC compatibility mode. Enables extensions and other features that mimic
kono
parents:
diff changeset
244 the default behavior of older compilers (such as DEC).
kono
parents:
diff changeset
245 These features are non-standard and should be avoided at all costs.
kono
parents:
diff changeset
246 For details on GNU Fortran's implementation of these extensions see the
kono
parents:
diff changeset
247 full documentation.
kono
parents:
diff changeset
248
kono
parents:
diff changeset
249 Other flags enabled by this switch are:
kono
parents:
diff changeset
250 @option{-fdollar-ok} @option{-fcray-pointer} @option{-fdec-structure}
kono
parents:
diff changeset
251 @option{-fdec-intrinsic-ints} @option{-fdec-static} @option{-fdec-math}
kono
parents:
diff changeset
252
kono
parents:
diff changeset
253 If @option{-fd-lines-as-code}/@option{-fd-lines-as-comments} are unset, then
kono
parents:
diff changeset
254 @option{-fdec} also sets @option{-fd-lines-as-comments}.
kono
parents:
diff changeset
255
kono
parents:
diff changeset
256 @item -fdec-structure
kono
parents:
diff changeset
257 @opindex @code{fdec-structure}
kono
parents:
diff changeset
258 Enable DEC @code{STRUCTURE} and @code{RECORD} as well as @code{UNION},
kono
parents:
diff changeset
259 @code{MAP}, and dot ('.') as a member separator (in addition to '%'). This is
kono
parents:
diff changeset
260 provided for compatibility only; Fortran 90 derived types should be used
kono
parents:
diff changeset
261 instead where possible.
kono
parents:
diff changeset
262
kono
parents:
diff changeset
263 @item -fdec-intrinsic-ints
kono
parents:
diff changeset
264 @opindex @code{fdec-intrinsic-ints}
kono
parents:
diff changeset
265 Enable B/I/J/K kind variants of existing integer functions (e.g. BIAND, IIAND,
kono
parents:
diff changeset
266 JIAND, etc...). For a complete list of intrinsics see the full documentation.
kono
parents:
diff changeset
267
kono
parents:
diff changeset
268 @item -fdec-math
kono
parents:
diff changeset
269 @opindex @code{fdec-math}
kono
parents:
diff changeset
270 Enable legacy math intrinsics such as COTAN and degree-valued trigonometric
kono
parents:
diff changeset
271 functions (e.g. TAND, ATAND, etc...) for compatability with older code.
kono
parents:
diff changeset
272
kono
parents:
diff changeset
273 @item -fdec-static
kono
parents:
diff changeset
274 @opindex @code{fdec-static}
kono
parents:
diff changeset
275 Enable DEC-style STATIC and AUTOMATIC attributes to explicitly specify
kono
parents:
diff changeset
276 the storage of variables and other objects.
kono
parents:
diff changeset
277
kono
parents:
diff changeset
278 @item -fdollar-ok
kono
parents:
diff changeset
279 @opindex @code{fdollar-ok}
kono
parents:
diff changeset
280 @cindex @code{$}
kono
parents:
diff changeset
281 @cindex symbol names
kono
parents:
diff changeset
282 @cindex character set
kono
parents:
diff changeset
283 Allow @samp{$} as a valid non-first character in a symbol name. Symbols
kono
parents:
diff changeset
284 that start with @samp{$} are rejected since it is unclear which rules to
kono
parents:
diff changeset
285 apply to implicit typing as different vendors implement different rules.
kono
parents:
diff changeset
286 Using @samp{$} in @code{IMPLICIT} statements is also rejected.
kono
parents:
diff changeset
287
kono
parents:
diff changeset
288 @item -fbackslash
kono
parents:
diff changeset
289 @opindex @code{backslash}
kono
parents:
diff changeset
290 @cindex backslash
kono
parents:
diff changeset
291 @cindex escape characters
kono
parents:
diff changeset
292 Change the interpretation of backslashes in string literals from a single
kono
parents:
diff changeset
293 backslash character to ``C-style'' escape characters. The following
kono
parents:
diff changeset
294 combinations are expanded @code{\a}, @code{\b}, @code{\f}, @code{\n},
kono
parents:
diff changeset
295 @code{\r}, @code{\t}, @code{\v}, @code{\\}, and @code{\0} to the ASCII
kono
parents:
diff changeset
296 characters alert, backspace, form feed, newline, carriage return,
kono
parents:
diff changeset
297 horizontal tab, vertical tab, backslash, and NUL, respectively.
kono
parents:
diff changeset
298 Additionally, @code{\x}@var{nn}, @code{\u}@var{nnnn} and
kono
parents:
diff changeset
299 @code{\U}@var{nnnnnnnn} (where each @var{n} is a hexadecimal digit) are
kono
parents:
diff changeset
300 translated into the Unicode characters corresponding to the specified code
kono
parents:
diff changeset
301 points. All other combinations of a character preceded by \ are
kono
parents:
diff changeset
302 unexpanded.
kono
parents:
diff changeset
303
kono
parents:
diff changeset
304 @item -fmodule-private
kono
parents:
diff changeset
305 @opindex @code{fmodule-private}
kono
parents:
diff changeset
306 @cindex module entities
kono
parents:
diff changeset
307 @cindex private
kono
parents:
diff changeset
308 Set the default accessibility of module entities to @code{PRIVATE}.
kono
parents:
diff changeset
309 Use-associated entities will not be accessible unless they are explicitly
kono
parents:
diff changeset
310 declared as @code{PUBLIC}.
kono
parents:
diff changeset
311
kono
parents:
diff changeset
312 @item -ffixed-line-length-@var{n}
kono
parents:
diff changeset
313 @opindex @code{ffixed-line-length-}@var{n}
kono
parents:
diff changeset
314 @cindex file format, fixed
kono
parents:
diff changeset
315 Set column after which characters are ignored in typical fixed-form
kono
parents:
diff changeset
316 lines in the source file, and through which spaces are assumed (as
kono
parents:
diff changeset
317 if padded to that length) after the ends of short fixed-form lines.
kono
parents:
diff changeset
318
kono
parents:
diff changeset
319 Popular values for @var{n} include 72 (the
kono
parents:
diff changeset
320 standard and the default), 80 (card image), and 132 (corresponding
kono
parents:
diff changeset
321 to ``extended-source'' options in some popular compilers).
kono
parents:
diff changeset
322 @var{n} may also be @samp{none}, meaning that the entire line is meaningful
kono
parents:
diff changeset
323 and that continued character constants never have implicit spaces appended
kono
parents:
diff changeset
324 to them to fill out the line.
kono
parents:
diff changeset
325 @option{-ffixed-line-length-0} means the same thing as
kono
parents:
diff changeset
326 @option{-ffixed-line-length-none}.
kono
parents:
diff changeset
327
kono
parents:
diff changeset
328 @item -ffree-line-length-@var{n}
kono
parents:
diff changeset
329 @opindex @code{ffree-line-length-}@var{n}
kono
parents:
diff changeset
330 @cindex file format, free
kono
parents:
diff changeset
331 Set column after which characters are ignored in typical free-form
kono
parents:
diff changeset
332 lines in the source file. The default value is 132.
kono
parents:
diff changeset
333 @var{n} may be @samp{none}, meaning that the entire line is meaningful.
kono
parents:
diff changeset
334 @option{-ffree-line-length-0} means the same thing as
kono
parents:
diff changeset
335 @option{-ffree-line-length-none}.
kono
parents:
diff changeset
336
kono
parents:
diff changeset
337 @item -fmax-identifier-length=@var{n}
kono
parents:
diff changeset
338 @opindex @code{fmax-identifier-length=}@var{n}
kono
parents:
diff changeset
339 Specify the maximum allowed identifier length. Typical values are
kono
parents:
diff changeset
340 31 (Fortran 95) and 63 (Fortran 2003 and Fortran 2008).
kono
parents:
diff changeset
341
kono
parents:
diff changeset
342 @item -fimplicit-none
kono
parents:
diff changeset
343 @opindex @code{fimplicit-none}
kono
parents:
diff changeset
344 Specify that no implicit typing is allowed, unless overridden by explicit
kono
parents:
diff changeset
345 @code{IMPLICIT} statements. This is the equivalent of adding
kono
parents:
diff changeset
346 @code{implicit none} to the start of every procedure.
kono
parents:
diff changeset
347
kono
parents:
diff changeset
348 @item -fcray-pointer
kono
parents:
diff changeset
349 @opindex @code{fcray-pointer}
kono
parents:
diff changeset
350 Enable the Cray pointer extension, which provides C-like pointer
kono
parents:
diff changeset
351 functionality.
kono
parents:
diff changeset
352
kono
parents:
diff changeset
353 @item -fopenacc
kono
parents:
diff changeset
354 @opindex @code{fopenacc}
kono
parents:
diff changeset
355 @cindex OpenACC
kono
parents:
diff changeset
356 Enable the OpenACC extensions. This includes OpenACC @code{!$acc}
kono
parents:
diff changeset
357 directives in free form and @code{c$acc}, @code{*$acc} and
kono
parents:
diff changeset
358 @code{!$acc} directives in fixed form, @code{!$} conditional
kono
parents:
diff changeset
359 compilation sentinels in free form and @code{c$}, @code{*$} and
kono
parents:
diff changeset
360 @code{!$} sentinels in fixed form, and when linking arranges for the
kono
parents:
diff changeset
361 OpenACC runtime library to be linked in.
kono
parents:
diff changeset
362
kono
parents:
diff changeset
363 Note that this is an experimental feature, incomplete, and subject to
kono
parents:
diff changeset
364 change in future versions of GCC. See
kono
parents:
diff changeset
365 @w{@uref{https://gcc.gnu.org/wiki/OpenACC}} for more information.
kono
parents:
diff changeset
366
kono
parents:
diff changeset
367 @item -fopenmp
kono
parents:
diff changeset
368 @opindex @code{fopenmp}
kono
parents:
diff changeset
369 @cindex OpenMP
kono
parents:
diff changeset
370 Enable the OpenMP extensions. This includes OpenMP @code{!$omp} directives
kono
parents:
diff changeset
371 in free form
kono
parents:
diff changeset
372 and @code{c$omp}, @code{*$omp} and @code{!$omp} directives in fixed form,
kono
parents:
diff changeset
373 @code{!$} conditional compilation sentinels in free form
kono
parents:
diff changeset
374 and @code{c$}, @code{*$} and @code{!$} sentinels in fixed form,
kono
parents:
diff changeset
375 and when linking arranges for the OpenMP runtime library to be linked
kono
parents:
diff changeset
376 in. The option @option{-fopenmp} implies @option{-frecursive}.
kono
parents:
diff changeset
377
kono
parents:
diff changeset
378 @item -fno-range-check
kono
parents:
diff changeset
379 @opindex @code{frange-check}
kono
parents:
diff changeset
380 Disable range checking on results of simplification of constant
kono
parents:
diff changeset
381 expressions during compilation. For example, GNU Fortran will give
kono
parents:
diff changeset
382 an error at compile time when simplifying @code{a = 1. / 0}.
kono
parents:
diff changeset
383 With this option, no error will be given and @code{a} will be assigned
kono
parents:
diff changeset
384 the value @code{+Infinity}. If an expression evaluates to a value
kono
parents:
diff changeset
385 outside of the relevant range of [@code{-HUGE()}:@code{HUGE()}],
kono
parents:
diff changeset
386 then the expression will be replaced by @code{-Inf} or @code{+Inf}
kono
parents:
diff changeset
387 as appropriate.
kono
parents:
diff changeset
388 Similarly, @code{DATA i/Z'FFFFFFFF'/} will result in an integer overflow
kono
parents:
diff changeset
389 on most systems, but with @option{-fno-range-check} the value will
kono
parents:
diff changeset
390 ``wrap around'' and @code{i} will be initialized to @math{-1} instead.
kono
parents:
diff changeset
391
kono
parents:
diff changeset
392 @item -fdefault-integer-8
kono
parents:
diff changeset
393 @opindex @code{fdefault-integer-8}
kono
parents:
diff changeset
394 Set the default integer and logical types to an 8 byte wide type. This option
kono
parents:
diff changeset
395 also affects the kind of integer constants like @code{42}. Unlike
kono
parents:
diff changeset
396 @option{-finteger-4-integer-8}, it does not promote variables with explicit
kono
parents:
diff changeset
397 kind declaration.
kono
parents:
diff changeset
398
kono
parents:
diff changeset
399 @item -fdefault-real-8
kono
parents:
diff changeset
400 @opindex @code{fdefault-real-8}
kono
parents:
diff changeset
401 Set the default real type to an 8 byte wide type. This option also affects
kono
parents:
diff changeset
402 the kind of non-double real constants like @code{1.0}, and does promote
kono
parents:
diff changeset
403 the default width of @code{DOUBLE PRECISION} to 16 bytes if possible, unless
kono
parents:
diff changeset
404 @code{-fdefault-double-8} is given, too. Unlike @option{-freal-4-real-8},
kono
parents:
diff changeset
405 it does not promote variables with explicit kind declaration.
kono
parents:
diff changeset
406
kono
parents:
diff changeset
407 @item -fdefault-real-10
kono
parents:
diff changeset
408 @opindex @code{fdefault-real-10}
kono
parents:
diff changeset
409 Set the default real type to a 10 byte wide type. This option also affects
kono
parents:
diff changeset
410 the kind of non-double real constants like @code{1.0}, and does promote
kono
parents:
diff changeset
411 the default width of @code{DOUBLE PRECISION} to 16 bytes if possible, unless
kono
parents:
diff changeset
412 @code{-fdefault-double-8} is given. Unlike @option{-freal-4-real-10},
kono
parents:
diff changeset
413 it does not promote variables with explicit kind declaration.
kono
parents:
diff changeset
414
kono
parents:
diff changeset
415 @item -fdefault-real-16
kono
parents:
diff changeset
416 @opindex @code{fdefault-real-16}
kono
parents:
diff changeset
417 Set the default real type to a 16 byte wide type. This option also affects
kono
parents:
diff changeset
418 the kind of non-double real constants like @code{1.0}, and does promote
kono
parents:
diff changeset
419 the default width of @code{DOUBLE PRECISION} to 16 bytes if possible, unless
kono
parents:
diff changeset
420 @code{-fdefault-double-8} is given. Unlike @option{-freal-4-real-16},
kono
parents:
diff changeset
421 it does not promote variables with explicit kind declaration.
kono
parents:
diff changeset
422
kono
parents:
diff changeset
423 @item -fdefault-double-8
kono
parents:
diff changeset
424 @opindex @code{fdefault-double-8}
kono
parents:
diff changeset
425 Set the @code{DOUBLE PRECISION} type to an 8 byte wide type. Do nothing if this
kono
parents:
diff changeset
426 is already the default. If @option{-fdefault-real-8} is given,
kono
parents:
diff changeset
427 @code{DOUBLE PRECISION} would instead be promoted to 16 bytes if possible, and
kono
parents:
diff changeset
428 @option{-fdefault-double-8} can be used to prevent this. The kind of real
kono
parents:
diff changeset
429 constants like @code{1.d0} will not be changed by @option{-fdefault-real-8}
kono
parents:
diff changeset
430 though, so also @option{-fdefault-double-8} does not affect it.
kono
parents:
diff changeset
431
kono
parents:
diff changeset
432 @item -finteger-4-integer-8
kono
parents:
diff changeset
433 @opindex @code{finteger-4-integer-8}
kono
parents:
diff changeset
434 Promote all @code{INTEGER(KIND=4)} entities to an @code{INTEGER(KIND=8)}
kono
parents:
diff changeset
435 entities. If @code{KIND=8} is unavailable, then an error will be issued.
kono
parents:
diff changeset
436 This option should be used with care and may not be suitable for your codes.
kono
parents:
diff changeset
437 Areas of possible concern include calls to external procedures,
kono
parents:
diff changeset
438 alignment in @code{EQUIVALENCE} and/or @code{COMMON}, generic interfaces,
kono
parents:
diff changeset
439 BOZ literal constant conversion, and I/O. Inspection of the intermediate
kono
parents:
diff changeset
440 representation of the translated Fortran code, produced by
kono
parents:
diff changeset
441 @option{-fdump-tree-original}, is suggested.
kono
parents:
diff changeset
442
kono
parents:
diff changeset
443 @item -freal-4-real-8
kono
parents:
diff changeset
444 @itemx -freal-4-real-10
kono
parents:
diff changeset
445 @itemx -freal-4-real-16
kono
parents:
diff changeset
446 @itemx -freal-8-real-4
kono
parents:
diff changeset
447 @itemx -freal-8-real-10
kono
parents:
diff changeset
448 @itemx -freal-8-real-16
kono
parents:
diff changeset
449 @opindex @code{freal-4-real-8}
kono
parents:
diff changeset
450 @opindex @code{freal-4-real-10}
kono
parents:
diff changeset
451 @opindex @code{freal-4-real-16}
kono
parents:
diff changeset
452 @opindex @code{freal-8-real-4}
kono
parents:
diff changeset
453 @opindex @code{freal-8-real-10}
kono
parents:
diff changeset
454 @opindex @code{freal-8-real-16}
kono
parents:
diff changeset
455 @cindex options, real kind type promotion
kono
parents:
diff changeset
456 Promote all @code{REAL(KIND=M)} entities to @code{REAL(KIND=N)} entities.
kono
parents:
diff changeset
457 If @code{REAL(KIND=N)} is unavailable, then an error will be issued.
kono
parents:
diff changeset
458 All other real kind types are unaffected by this option.
kono
parents:
diff changeset
459 These options should be used with care and may not be suitable for your
kono
parents:
diff changeset
460 codes. Areas of possible concern include calls to external procedures,
kono
parents:
diff changeset
461 alignment in @code{EQUIVALENCE} and/or @code{COMMON}, generic interfaces,
kono
parents:
diff changeset
462 BOZ literal constant conversion, and I/O. Inspection of the intermediate
kono
parents:
diff changeset
463 representation of the translated Fortran code, produced by
kono
parents:
diff changeset
464 @option{-fdump-tree-original}, is suggested.
kono
parents:
diff changeset
465
kono
parents:
diff changeset
466 @item -std=@var{std}
kono
parents:
diff changeset
467 @opindex @code{std=}@var{std} option
kono
parents:
diff changeset
468 Specify the standard to which the program is expected to conform, which
kono
parents:
diff changeset
469 may be one of @samp{f95}, @samp{f2003}, @samp{f2008}, @samp{gnu}, or
kono
parents:
diff changeset
470 @samp{legacy}. The default value for @var{std} is @samp{gnu}, which
kono
parents:
diff changeset
471 specifies a superset of the Fortran 95 standard that includes all of the
kono
parents:
diff changeset
472 extensions supported by GNU Fortran, although warnings will be given for
kono
parents:
diff changeset
473 obsolete extensions not recommended for use in new code. The
kono
parents:
diff changeset
474 @samp{legacy} value is equivalent but without the warnings for obsolete
kono
parents:
diff changeset
475 extensions, and may be useful for old non-standard programs. The
kono
parents:
diff changeset
476 @samp{f95}, @samp{f2003} and @samp{f2008} values specify strict
kono
parents:
diff changeset
477 conformance to the Fortran 95, Fortran 2003 and Fortran 2008 standards,
kono
parents:
diff changeset
478 respectively; errors are given for all extensions beyond the relevant
kono
parents:
diff changeset
479 language standard, and warnings are given for the Fortran 77 features
kono
parents:
diff changeset
480 that are permitted but obsolescent in later standards. @samp{-std=f2008ts}
kono
parents:
diff changeset
481 allows the Fortran 2008 standard including the additions of the
kono
parents:
diff changeset
482 Technical Specification (TS) 29113 on Further Interoperability of Fortran
kono
parents:
diff changeset
483 with C and TS 18508 on Additional Parallel Features in Fortran.
kono
parents:
diff changeset
484
kono
parents:
diff changeset
485 @item -ftest-forall-temp
kono
parents:
diff changeset
486 @opindex @code{ftest-forall-temp}
kono
parents:
diff changeset
487 Enhance test coverage by forcing most forall assignments to use temporary.
kono
parents:
diff changeset
488
kono
parents:
diff changeset
489 @end table
kono
parents:
diff changeset
490
kono
parents:
diff changeset
491 @node Preprocessing Options
kono
parents:
diff changeset
492 @section Enable and customize preprocessing
kono
parents:
diff changeset
493 @cindex preprocessor
kono
parents:
diff changeset
494 @cindex options, preprocessor
kono
parents:
diff changeset
495 @cindex CPP
kono
parents:
diff changeset
496
kono
parents:
diff changeset
497 Preprocessor related options. See section
kono
parents:
diff changeset
498 @ref{Preprocessing and conditional compilation} for more detailed
kono
parents:
diff changeset
499 information on preprocessing in @command{gfortran}.
kono
parents:
diff changeset
500
kono
parents:
diff changeset
501 @table @gcctabopt
kono
parents:
diff changeset
502 @item -cpp
kono
parents:
diff changeset
503 @itemx -nocpp
kono
parents:
diff changeset
504 @opindex @code{cpp}
kono
parents:
diff changeset
505 @opindex @code{fpp}
kono
parents:
diff changeset
506 @cindex preprocessor, enable
kono
parents:
diff changeset
507 @cindex preprocessor, disable
kono
parents:
diff changeset
508 Enable preprocessing. The preprocessor is automatically invoked if
kono
parents:
diff changeset
509 the file extension is @file{.fpp}, @file{.FPP}, @file{.F}, @file{.FOR},
kono
parents:
diff changeset
510 @file{.FTN}, @file{.F90}, @file{.F95}, @file{.F03} or @file{.F08}. Use
kono
parents:
diff changeset
511 this option to manually enable preprocessing of any kind of Fortran file.
kono
parents:
diff changeset
512
kono
parents:
diff changeset
513 To disable preprocessing of files with any of the above listed extensions,
kono
parents:
diff changeset
514 use the negative form: @option{-nocpp}.
kono
parents:
diff changeset
515
kono
parents:
diff changeset
516 The preprocessor is run in traditional mode. Any restrictions of the
kono
parents:
diff changeset
517 file-format, especially the limits on line length, apply for
kono
parents:
diff changeset
518 preprocessed output as well, so it might be advisable to use the
kono
parents:
diff changeset
519 @option{-ffree-line-length-none} or @option{-ffixed-line-length-none}
kono
parents:
diff changeset
520 options.
kono
parents:
diff changeset
521
kono
parents:
diff changeset
522 @item -dM
kono
parents:
diff changeset
523 @opindex @code{dM}
kono
parents:
diff changeset
524 @cindex preprocessor, debugging
kono
parents:
diff changeset
525 @cindex debugging, preprocessor
kono
parents:
diff changeset
526 Instead of the normal output, generate a list of @code{'#define'}
kono
parents:
diff changeset
527 directives for all the macros defined during the execution of the
kono
parents:
diff changeset
528 preprocessor, including predefined macros. This gives you a way
kono
parents:
diff changeset
529 of finding out what is predefined in your version of the preprocessor.
kono
parents:
diff changeset
530 Assuming you have no file @file{foo.f90}, the command
kono
parents:
diff changeset
531 @smallexample
kono
parents:
diff changeset
532 touch foo.f90; gfortran -cpp -E -dM foo.f90
kono
parents:
diff changeset
533 @end smallexample
kono
parents:
diff changeset
534 will show all the predefined macros.
kono
parents:
diff changeset
535
kono
parents:
diff changeset
536 @item -dD
kono
parents:
diff changeset
537 @opindex @code{dD}
kono
parents:
diff changeset
538 @cindex preprocessor, debugging
kono
parents:
diff changeset
539 @cindex debugging, preprocessor
kono
parents:
diff changeset
540 Like @option{-dM} except in two respects: it does not include the
kono
parents:
diff changeset
541 predefined macros, and it outputs both the @code{#define} directives
kono
parents:
diff changeset
542 and the result of preprocessing. Both kinds of output go to the
kono
parents:
diff changeset
543 standard output file.
kono
parents:
diff changeset
544
kono
parents:
diff changeset
545 @item -dN
kono
parents:
diff changeset
546 @opindex @code{dN}
kono
parents:
diff changeset
547 @cindex preprocessor, debugging
kono
parents:
diff changeset
548 @cindex debugging, preprocessor
kono
parents:
diff changeset
549 Like @option{-dD}, but emit only the macro names, not their expansions.
kono
parents:
diff changeset
550
kono
parents:
diff changeset
551 @item -dU
kono
parents:
diff changeset
552 @opindex @code{dU}
kono
parents:
diff changeset
553 @cindex preprocessor, debugging
kono
parents:
diff changeset
554 @cindex debugging, preprocessor
kono
parents:
diff changeset
555 Like @option{dD} except that only macros that are expanded, or whose
kono
parents:
diff changeset
556 definedness is tested in preprocessor directives, are output; the
kono
parents:
diff changeset
557 output is delayed until the use or test of the macro; and @code{'#undef'}
kono
parents:
diff changeset
558 directives are also output for macros tested but undefined at the time.
kono
parents:
diff changeset
559
kono
parents:
diff changeset
560 @item -dI
kono
parents:
diff changeset
561 @opindex @code{dI}
kono
parents:
diff changeset
562 @cindex preprocessor, debugging
kono
parents:
diff changeset
563 @cindex debugging, preprocessor
kono
parents:
diff changeset
564 Output @code{'#include'} directives in addition to the result
kono
parents:
diff changeset
565 of preprocessing.
kono
parents:
diff changeset
566
kono
parents:
diff changeset
567 @item -fworking-directory
kono
parents:
diff changeset
568 @opindex @code{fworking-directory}
kono
parents:
diff changeset
569 @cindex preprocessor, working directory
kono
parents:
diff changeset
570 Enable generation of linemarkers in the preprocessor output that will
kono
parents:
diff changeset
571 let the compiler know the current working directory at the time of
kono
parents:
diff changeset
572 preprocessing. When this option is enabled, the preprocessor will emit,
kono
parents:
diff changeset
573 after the initial linemarker, a second linemarker with the current
kono
parents:
diff changeset
574 working directory followed by two slashes. GCC will use this directory,
kono
parents:
diff changeset
575 when it is present in the preprocessed input, as the directory emitted
kono
parents:
diff changeset
576 as the current working directory in some debugging information formats.
kono
parents:
diff changeset
577 This option is implicitly enabled if debugging information is enabled,
kono
parents:
diff changeset
578 but this can be inhibited with the negated form
kono
parents:
diff changeset
579 @option{-fno-working-directory}. If the @option{-P} flag is present
kono
parents:
diff changeset
580 in the command line, this option has no effect, since no @code{#line}
kono
parents:
diff changeset
581 directives are emitted whatsoever.
kono
parents:
diff changeset
582
kono
parents:
diff changeset
583 @item -idirafter @var{dir}
kono
parents:
diff changeset
584 @opindex @code{idirafter @var{dir}}
kono
parents:
diff changeset
585 @cindex preprocessing, include path
kono
parents:
diff changeset
586 Search @var{dir} for include files, but do it after all directories
kono
parents:
diff changeset
587 specified with @option{-I} and the standard system directories have
kono
parents:
diff changeset
588 been exhausted. @var{dir} is treated as a system include directory.
kono
parents:
diff changeset
589 If dir begins with @code{=}, then the @code{=} will be replaced by
kono
parents:
diff changeset
590 the sysroot prefix; see @option{--sysroot} and @option{-isysroot}.
kono
parents:
diff changeset
591
kono
parents:
diff changeset
592 @item -imultilib @var{dir}
kono
parents:
diff changeset
593 @opindex @code{imultilib @var{dir}}
kono
parents:
diff changeset
594 @cindex preprocessing, include path
kono
parents:
diff changeset
595 Use @var{dir} as a subdirectory of the directory containing target-specific
kono
parents:
diff changeset
596 C++ headers.
kono
parents:
diff changeset
597
kono
parents:
diff changeset
598 @item -iprefix @var{prefix}
kono
parents:
diff changeset
599 @opindex @code{iprefix @var{prefix}}
kono
parents:
diff changeset
600 @cindex preprocessing, include path
kono
parents:
diff changeset
601 Specify @var{prefix} as the prefix for subsequent @option{-iwithprefix}
kono
parents:
diff changeset
602 options. If the @var{prefix} represents a directory, you should include
kono
parents:
diff changeset
603 the final @code{'/'}.
kono
parents:
diff changeset
604
kono
parents:
diff changeset
605 @item -isysroot @var{dir}
kono
parents:
diff changeset
606 @opindex @code{isysroot @var{dir}}
kono
parents:
diff changeset
607 @cindex preprocessing, include path
kono
parents:
diff changeset
608 This option is like the @option{--sysroot} option, but applies only to
kono
parents:
diff changeset
609 header files. See the @option{--sysroot} option for more information.
kono
parents:
diff changeset
610
kono
parents:
diff changeset
611 @item -iquote @var{dir}
kono
parents:
diff changeset
612 @opindex @code{iquote @var{dir}}
kono
parents:
diff changeset
613 @cindex preprocessing, include path
kono
parents:
diff changeset
614 Search @var{dir} only for header files requested with @code{#include "file"};
kono
parents:
diff changeset
615 they are not searched for @code{#include <file>}, before all directories
kono
parents:
diff changeset
616 specified by @option{-I} and before the standard system directories. If
kono
parents:
diff changeset
617 @var{dir} begins with @code{=}, then the @code{=} will be replaced by the
kono
parents:
diff changeset
618 sysroot prefix; see @option{--sysroot} and @option{-isysroot}.
kono
parents:
diff changeset
619
kono
parents:
diff changeset
620 @item -isystem @var{dir}
kono
parents:
diff changeset
621 @opindex @code{isystem @var{dir}}
kono
parents:
diff changeset
622 @cindex preprocessing, include path
kono
parents:
diff changeset
623 Search @var{dir} for header files, after all directories specified by
kono
parents:
diff changeset
624 @option{-I} but before the standard system directories. Mark it as a
kono
parents:
diff changeset
625 system directory, so that it gets the same special treatment as is
kono
parents:
diff changeset
626 applied to the standard system directories. If @var{dir} begins with
kono
parents:
diff changeset
627 @code{=}, then the @code{=} will be replaced by the sysroot prefix;
kono
parents:
diff changeset
628 see @option{--sysroot} and @option{-isysroot}.
kono
parents:
diff changeset
629
kono
parents:
diff changeset
630 @item -nostdinc
kono
parents:
diff changeset
631 @opindex @code{nostdinc}
kono
parents:
diff changeset
632 Do not search the standard system directories for header files. Only
kono
parents:
diff changeset
633 the directories you have specified with @option{-I} options (and the
kono
parents:
diff changeset
634 directory of the current file, if appropriate) are searched.
kono
parents:
diff changeset
635
kono
parents:
diff changeset
636 @item -undef
kono
parents:
diff changeset
637 @opindex @code{undef}
kono
parents:
diff changeset
638 Do not predefine any system-specific or GCC-specific macros.
kono
parents:
diff changeset
639 The standard predefined macros remain defined.
kono
parents:
diff changeset
640
kono
parents:
diff changeset
641 @item -A@var{predicate}=@var{answer}
kono
parents:
diff changeset
642 @opindex @code{A@var{predicate}=@var{answer}}
kono
parents:
diff changeset
643 @cindex preprocessing, assertion
kono
parents:
diff changeset
644 Make an assertion with the predicate @var{predicate} and answer @var{answer}.
kono
parents:
diff changeset
645 This form is preferred to the older form -A predicate(answer), which is still
kono
parents:
diff changeset
646 supported, because it does not use shell special characters.
kono
parents:
diff changeset
647
kono
parents:
diff changeset
648 @item -A-@var{predicate}=@var{answer}
kono
parents:
diff changeset
649 @opindex @code{A-@var{predicate}=@var{answer}}
kono
parents:
diff changeset
650 @cindex preprocessing, assertion
kono
parents:
diff changeset
651 Cancel an assertion with the predicate @var{predicate} and answer @var{answer}.
kono
parents:
diff changeset
652
kono
parents:
diff changeset
653 @item -C
kono
parents:
diff changeset
654 @opindex @code{C}
kono
parents:
diff changeset
655 @cindex preprocessing, keep comments
kono
parents:
diff changeset
656 Do not discard comments. All comments are passed through to the output
kono
parents:
diff changeset
657 file, except for comments in processed directives, which are deleted
kono
parents:
diff changeset
658 along with the directive.
kono
parents:
diff changeset
659
kono
parents:
diff changeset
660 You should be prepared for side effects when using @option{-C}; it causes
kono
parents:
diff changeset
661 the preprocessor to treat comments as tokens in their own right. For example,
kono
parents:
diff changeset
662 comments appearing at the start of what would be a directive line have the
kono
parents:
diff changeset
663 effect of turning that line into an ordinary source line, since the first
kono
parents:
diff changeset
664 token on the line is no longer a @code{'#'}.
kono
parents:
diff changeset
665
kono
parents:
diff changeset
666 Warning: this currently handles C-Style comments only. The preprocessor
kono
parents:
diff changeset
667 does not yet recognize Fortran-style comments.
kono
parents:
diff changeset
668
kono
parents:
diff changeset
669 @item -CC
kono
parents:
diff changeset
670 @opindex @code{CC}
kono
parents:
diff changeset
671 @cindex preprocessing, keep comments
kono
parents:
diff changeset
672 Do not discard comments, including during macro expansion. This is like
kono
parents:
diff changeset
673 @option{-C}, except that comments contained within macros are also passed
kono
parents:
diff changeset
674 through to the output file where the macro is expanded.
kono
parents:
diff changeset
675
kono
parents:
diff changeset
676 In addition to the side-effects of the @option{-C} option, the @option{-CC}
kono
parents:
diff changeset
677 option causes all C++-style comments inside a macro to be converted to C-style
kono
parents:
diff changeset
678 comments. This is to prevent later use of that macro from inadvertently
kono
parents:
diff changeset
679 commenting out the remainder of the source line. The @option{-CC} option
kono
parents:
diff changeset
680 is generally used to support lint comments.
kono
parents:
diff changeset
681
kono
parents:
diff changeset
682 Warning: this currently handles C- and C++-Style comments only. The
kono
parents:
diff changeset
683 preprocessor does not yet recognize Fortran-style comments.
kono
parents:
diff changeset
684
kono
parents:
diff changeset
685 @item -D@var{name}
kono
parents:
diff changeset
686 @opindex @code{D@var{name}}
kono
parents:
diff changeset
687 @cindex preprocessing, define macros
kono
parents:
diff changeset
688 Predefine name as a macro, with definition @code{1}.
kono
parents:
diff changeset
689
kono
parents:
diff changeset
690 @item -D@var{name}=@var{definition}
kono
parents:
diff changeset
691 @opindex @code{D@var{name}=@var{definition}}
kono
parents:
diff changeset
692 @cindex preprocessing, define macros
kono
parents:
diff changeset
693 The contents of @var{definition} are tokenized and processed as if they
kono
parents:
diff changeset
694 appeared during translation phase three in a @code{'#define'} directive.
kono
parents:
diff changeset
695 In particular, the definition will be truncated by embedded newline
kono
parents:
diff changeset
696 characters.
kono
parents:
diff changeset
697
kono
parents:
diff changeset
698 If you are invoking the preprocessor from a shell or shell-like program
kono
parents:
diff changeset
699 you may need to use the shell's quoting syntax to protect characters such
kono
parents:
diff changeset
700 as spaces that have a meaning in the shell syntax.
kono
parents:
diff changeset
701
kono
parents:
diff changeset
702 If you wish to define a function-like macro on the command line, write
kono
parents:
diff changeset
703 its argument list with surrounding parentheses before the equals sign
kono
parents:
diff changeset
704 (if any). Parentheses are meaningful to most shells, so you will need
kono
parents:
diff changeset
705 to quote the option. With sh and csh, @code{-D'name(args...)=definition'}
kono
parents:
diff changeset
706 works.
kono
parents:
diff changeset
707
kono
parents:
diff changeset
708 @option{-D} and @option{-U} options are processed in the order they are
kono
parents:
diff changeset
709 given on the command line. All -imacros file and -include file options
kono
parents:
diff changeset
710 are processed after all -D and -U options.
kono
parents:
diff changeset
711
kono
parents:
diff changeset
712 @item -H
kono
parents:
diff changeset
713 @opindex @code{H}
kono
parents:
diff changeset
714 Print the name of each header file used, in addition to other normal
kono
parents:
diff changeset
715 activities. Each name is indented to show how deep in the @code{'#include'}
kono
parents:
diff changeset
716 stack it is.
kono
parents:
diff changeset
717
kono
parents:
diff changeset
718 @item -P
kono
parents:
diff changeset
719 @opindex @code{P}
kono
parents:
diff changeset
720 @cindex preprocessing, no linemarkers
kono
parents:
diff changeset
721 Inhibit generation of linemarkers in the output from the preprocessor.
kono
parents:
diff changeset
722 This might be useful when running the preprocessor on something that
kono
parents:
diff changeset
723 is not C code, and will be sent to a program which might be confused
kono
parents:
diff changeset
724 by the linemarkers.
kono
parents:
diff changeset
725
kono
parents:
diff changeset
726 @item -U@var{name}
kono
parents:
diff changeset
727 @opindex @code{U@var{name}}
kono
parents:
diff changeset
728 @cindex preprocessing, undefine macros
kono
parents:
diff changeset
729 Cancel any previous definition of @var{name}, either built in or provided
kono
parents:
diff changeset
730 with a @option{-D} option.
kono
parents:
diff changeset
731 @end table
kono
parents:
diff changeset
732
kono
parents:
diff changeset
733
kono
parents:
diff changeset
734 @node Error and Warning Options
kono
parents:
diff changeset
735 @section Options to request or suppress errors and warnings
kono
parents:
diff changeset
736 @cindex options, warnings
kono
parents:
diff changeset
737 @cindex options, errors
kono
parents:
diff changeset
738 @cindex warnings, suppressing
kono
parents:
diff changeset
739 @cindex messages, error
kono
parents:
diff changeset
740 @cindex messages, warning
kono
parents:
diff changeset
741 @cindex suppressing warnings
kono
parents:
diff changeset
742
kono
parents:
diff changeset
743 Errors are diagnostic messages that report that the GNU Fortran compiler
kono
parents:
diff changeset
744 cannot compile the relevant piece of source code. The compiler will
kono
parents:
diff changeset
745 continue to process the program in an attempt to report further errors
kono
parents:
diff changeset
746 to aid in debugging, but will not produce any compiled output.
kono
parents:
diff changeset
747
kono
parents:
diff changeset
748 Warnings are diagnostic messages that report constructions which
kono
parents:
diff changeset
749 are not inherently erroneous but which are risky or suggest there is
kono
parents:
diff changeset
750 likely to be a bug in the program. Unless @option{-Werror} is specified,
kono
parents:
diff changeset
751 they do not prevent compilation of the program.
kono
parents:
diff changeset
752
kono
parents:
diff changeset
753 You can request many specific warnings with options beginning @option{-W},
kono
parents:
diff changeset
754 for example @option{-Wimplicit} to request warnings on implicit
kono
parents:
diff changeset
755 declarations. Each of these specific warning options also has a
kono
parents:
diff changeset
756 negative form beginning @option{-Wno-} to turn off warnings;
kono
parents:
diff changeset
757 for example, @option{-Wno-implicit}. This manual lists only one of the
kono
parents:
diff changeset
758 two forms, whichever is not the default.
kono
parents:
diff changeset
759
kono
parents:
diff changeset
760 These options control the amount and kinds of errors and warnings produced
kono
parents:
diff changeset
761 by GNU Fortran:
kono
parents:
diff changeset
762
kono
parents:
diff changeset
763 @table @gcctabopt
kono
parents:
diff changeset
764 @item -fmax-errors=@var{n}
kono
parents:
diff changeset
765 @opindex @code{fmax-errors=}@var{n}
kono
parents:
diff changeset
766 @cindex errors, limiting
kono
parents:
diff changeset
767 Limits the maximum number of error messages to @var{n}, at which point
kono
parents:
diff changeset
768 GNU Fortran bails out rather than attempting to continue processing the
kono
parents:
diff changeset
769 source code. If @var{n} is 0, there is no limit on the number of error
kono
parents:
diff changeset
770 messages produced.
kono
parents:
diff changeset
771
kono
parents:
diff changeset
772 @item -fsyntax-only
kono
parents:
diff changeset
773 @opindex @code{fsyntax-only}
kono
parents:
diff changeset
774 @cindex syntax checking
kono
parents:
diff changeset
775 Check the code for syntax errors, but do not actually compile it. This
kono
parents:
diff changeset
776 will generate module files for each module present in the code, but no
kono
parents:
diff changeset
777 other output file.
kono
parents:
diff changeset
778
kono
parents:
diff changeset
779 @item -Wpedantic
kono
parents:
diff changeset
780 @itemx -pedantic
kono
parents:
diff changeset
781 @opindex @code{pedantic}
kono
parents:
diff changeset
782 @opindex @code{Wpedantic}
kono
parents:
diff changeset
783 Issue warnings for uses of extensions to Fortran 95.
kono
parents:
diff changeset
784 @option{-pedantic} also applies to C-language constructs where they
kono
parents:
diff changeset
785 occur in GNU Fortran source files, such as use of @samp{\e} in a
kono
parents:
diff changeset
786 character constant within a directive like @code{#include}.
kono
parents:
diff changeset
787
kono
parents:
diff changeset
788 Valid Fortran 95 programs should compile properly with or without
kono
parents:
diff changeset
789 this option.
kono
parents:
diff changeset
790 However, without this option, certain GNU extensions and traditional
kono
parents:
diff changeset
791 Fortran features are supported as well.
kono
parents:
diff changeset
792 With this option, many of them are rejected.
kono
parents:
diff changeset
793
kono
parents:
diff changeset
794 Some users try to use @option{-pedantic} to check programs for conformance.
kono
parents:
diff changeset
795 They soon find that it does not do quite what they want---it finds some
kono
parents:
diff changeset
796 nonstandard practices, but not all.
kono
parents:
diff changeset
797 However, improvements to GNU Fortran in this area are welcome.
kono
parents:
diff changeset
798
kono
parents:
diff changeset
799 This should be used in conjunction with @option{-std=f95},
kono
parents:
diff changeset
800 @option{-std=f2003} or @option{-std=f2008}.
kono
parents:
diff changeset
801
kono
parents:
diff changeset
802 @item -pedantic-errors
kono
parents:
diff changeset
803 @opindex @code{pedantic-errors}
kono
parents:
diff changeset
804 Like @option{-pedantic}, except that errors are produced rather than
kono
parents:
diff changeset
805 warnings.
kono
parents:
diff changeset
806
kono
parents:
diff changeset
807 @item -Wall
kono
parents:
diff changeset
808 @opindex @code{Wall}
kono
parents:
diff changeset
809 @cindex all warnings
kono
parents:
diff changeset
810 @cindex warnings, all
kono
parents:
diff changeset
811 Enables commonly used warning options pertaining to usage that
kono
parents:
diff changeset
812 we recommend avoiding and that we believe are easy to avoid.
kono
parents:
diff changeset
813 This currently includes @option{-Waliasing}, @option{-Wampersand},
kono
parents:
diff changeset
814 @option{-Wconversion}, @option{-Wsurprising}, @option{-Wc-binding-type},
kono
parents:
diff changeset
815 @option{-Wintrinsics-std}, @option{-Wtabs}, @option{-Wintrinsic-shadow},
kono
parents:
diff changeset
816 @option{-Wline-truncation}, @option{-Wtarget-lifetime},
kono
parents:
diff changeset
817 @option{-Winteger-division}, @option{-Wreal-q-constant}, @option{-Wunused}
kono
parents:
diff changeset
818 and @option{-Wundefined-do-loop}.
kono
parents:
diff changeset
819
kono
parents:
diff changeset
820 @item -Waliasing
kono
parents:
diff changeset
821 @opindex @code{Waliasing}
kono
parents:
diff changeset
822 @cindex aliasing
kono
parents:
diff changeset
823 @cindex warnings, aliasing
kono
parents:
diff changeset
824 Warn about possible aliasing of dummy arguments. Specifically, it warns
kono
parents:
diff changeset
825 if the same actual argument is associated with a dummy argument with
kono
parents:
diff changeset
826 @code{INTENT(IN)} and a dummy argument with @code{INTENT(OUT)} in a call
kono
parents:
diff changeset
827 with an explicit interface.
kono
parents:
diff changeset
828
kono
parents:
diff changeset
829 The following example will trigger the warning.
kono
parents:
diff changeset
830 @smallexample
kono
parents:
diff changeset
831 interface
kono
parents:
diff changeset
832 subroutine bar(a,b)
kono
parents:
diff changeset
833 integer, intent(in) :: a
kono
parents:
diff changeset
834 integer, intent(out) :: b
kono
parents:
diff changeset
835 end subroutine
kono
parents:
diff changeset
836 end interface
kono
parents:
diff changeset
837 integer :: a
kono
parents:
diff changeset
838
kono
parents:
diff changeset
839 call bar(a,a)
kono
parents:
diff changeset
840 @end smallexample
kono
parents:
diff changeset
841
kono
parents:
diff changeset
842 @item -Wampersand
kono
parents:
diff changeset
843 @opindex @code{Wampersand}
kono
parents:
diff changeset
844 @cindex warnings, ampersand
kono
parents:
diff changeset
845 @cindex @code{&}
kono
parents:
diff changeset
846 Warn about missing ampersand in continued character constants. The warning is
kono
parents:
diff changeset
847 given with @option{-Wampersand}, @option{-pedantic}, @option{-std=f95},
kono
parents:
diff changeset
848 @option{-std=f2003} and @option{-std=f2008}. Note: With no ampersand
kono
parents:
diff changeset
849 given in a continued character constant, GNU Fortran assumes continuation
kono
parents:
diff changeset
850 at the first non-comment, non-whitespace character after the ampersand
kono
parents:
diff changeset
851 that initiated the continuation.
kono
parents:
diff changeset
852
kono
parents:
diff changeset
853 @item -Wargument-mismatch
kono
parents:
diff changeset
854 @opindex @code{Wargument-mismatch}
kono
parents:
diff changeset
855 @cindex warnings, argument mismatch
kono
parents:
diff changeset
856 @cindex warnings, parameter mismatch
kono
parents:
diff changeset
857 @cindex warnings, interface mismatch
kono
parents:
diff changeset
858 Warn about type, rank, and other mismatches between formal parameters and actual
kono
parents:
diff changeset
859 arguments to functions and subroutines. These warnings are recommended and
kono
parents:
diff changeset
860 thus enabled by default.
kono
parents:
diff changeset
861
kono
parents:
diff changeset
862 @item -Warray-temporaries
kono
parents:
diff changeset
863 @opindex @code{Warray-temporaries}
kono
parents:
diff changeset
864 @cindex warnings, array temporaries
kono
parents:
diff changeset
865 Warn about array temporaries generated by the compiler. The information
kono
parents:
diff changeset
866 generated by this warning is sometimes useful in optimization, in order to
kono
parents:
diff changeset
867 avoid such temporaries.
kono
parents:
diff changeset
868
kono
parents:
diff changeset
869 @item -Wc-binding-type
kono
parents:
diff changeset
870 @opindex @code{Wc-binding-type}
kono
parents:
diff changeset
871 @cindex warning, C binding type
kono
parents:
diff changeset
872 Warn if the a variable might not be C interoperable. In particular, warn if
kono
parents:
diff changeset
873 the variable has been declared using an intrinsic type with default kind
kono
parents:
diff changeset
874 instead of using a kind parameter defined for C interoperability in the
kono
parents:
diff changeset
875 intrinsic @code{ISO_C_Binding} module. This option is implied by
kono
parents:
diff changeset
876 @option{-Wall}.
kono
parents:
diff changeset
877
kono
parents:
diff changeset
878 @item -Wcharacter-truncation
kono
parents:
diff changeset
879 @opindex @code{Wcharacter-truncation}
kono
parents:
diff changeset
880 @cindex warnings, character truncation
kono
parents:
diff changeset
881 Warn when a character assignment will truncate the assigned string.
kono
parents:
diff changeset
882
kono
parents:
diff changeset
883 @item -Wline-truncation
kono
parents:
diff changeset
884 @opindex @code{Wline-truncation}
kono
parents:
diff changeset
885 @cindex warnings, line truncation
kono
parents:
diff changeset
886 Warn when a source code line will be truncated. This option is
kono
parents:
diff changeset
887 implied by @option{-Wall}. For free-form source code, the default is
kono
parents:
diff changeset
888 @option{-Werror=line-truncation} such that truncations are reported as
kono
parents:
diff changeset
889 error.
kono
parents:
diff changeset
890
kono
parents:
diff changeset
891 @item -Wconversion
kono
parents:
diff changeset
892 @opindex @code{Wconversion}
kono
parents:
diff changeset
893 @cindex warnings, conversion
kono
parents:
diff changeset
894 @cindex conversion
kono
parents:
diff changeset
895 Warn about implicit conversions that are likely to change the value of
kono
parents:
diff changeset
896 the expression after conversion. Implied by @option{-Wall}.
kono
parents:
diff changeset
897
kono
parents:
diff changeset
898 @item -Wconversion-extra
kono
parents:
diff changeset
899 @opindex @code{Wconversion-extra}
kono
parents:
diff changeset
900 @cindex warnings, conversion
kono
parents:
diff changeset
901 @cindex conversion
kono
parents:
diff changeset
902 Warn about implicit conversions between different types and kinds. This
kono
parents:
diff changeset
903 option does @emph{not} imply @option{-Wconversion}.
kono
parents:
diff changeset
904
kono
parents:
diff changeset
905 @item -Wextra
kono
parents:
diff changeset
906 @opindex @code{Wextra}
kono
parents:
diff changeset
907 @cindex extra warnings
kono
parents:
diff changeset
908 @cindex warnings, extra
kono
parents:
diff changeset
909 Enables some warning options for usages of language features which
kono
parents:
diff changeset
910 may be problematic. This currently includes @option{-Wcompare-reals},
kono
parents:
diff changeset
911 @option{-Wunused-parameter} and @option{-Wdo-subscript}.
kono
parents:
diff changeset
912
kono
parents:
diff changeset
913 @item -Wimplicit-interface
kono
parents:
diff changeset
914 @opindex @code{Wimplicit-interface}
kono
parents:
diff changeset
915 @cindex warnings, implicit interface
kono
parents:
diff changeset
916 Warn if a procedure is called without an explicit interface.
kono
parents:
diff changeset
917 Note this only checks that an explicit interface is present. It does not
kono
parents:
diff changeset
918 check that the declared interfaces are consistent across program units.
kono
parents:
diff changeset
919
kono
parents:
diff changeset
920 @item -Wimplicit-procedure
kono
parents:
diff changeset
921 @opindex @code{Wimplicit-procedure}
kono
parents:
diff changeset
922 @cindex warnings, implicit procedure
kono
parents:
diff changeset
923 Warn if a procedure is called that has neither an explicit interface
kono
parents:
diff changeset
924 nor has been declared as @code{EXTERNAL}.
kono
parents:
diff changeset
925
kono
parents:
diff changeset
926 @item -Winteger-division
kono
parents:
diff changeset
927 @opindex @code{Winteger-division}
kono
parents:
diff changeset
928 @cindex warnings, integer division
kono
parents:
diff changeset
929 @cindex warnings, division of integers
kono
parents:
diff changeset
930 Warn if a constant integer division truncates it result.
kono
parents:
diff changeset
931 As an example, 3/5 evaluates to 0.
kono
parents:
diff changeset
932
kono
parents:
diff changeset
933 @item -Wintrinsics-std
kono
parents:
diff changeset
934 @opindex @code{Wintrinsics-std}
kono
parents:
diff changeset
935 @cindex warnings, non-standard intrinsics
kono
parents:
diff changeset
936 @cindex warnings, intrinsics of other standards
kono
parents:
diff changeset
937 Warn if @command{gfortran} finds a procedure named like an intrinsic not
kono
parents:
diff changeset
938 available in the currently selected standard (with @option{-std}) and treats
kono
parents:
diff changeset
939 it as @code{EXTERNAL} procedure because of this. @option{-fall-intrinsics} can
kono
parents:
diff changeset
940 be used to never trigger this behavior and always link to the intrinsic
kono
parents:
diff changeset
941 regardless of the selected standard.
kono
parents:
diff changeset
942
kono
parents:
diff changeset
943 @item -Wreal-q-constant
kono
parents:
diff changeset
944 @opindex @code{Wreal-q-constant}
kono
parents:
diff changeset
945 @cindex warnings, @code{q} exponent-letter
kono
parents:
diff changeset
946 Produce a warning if a real-literal-constant contains a @code{q}
kono
parents:
diff changeset
947 exponent-letter.
kono
parents:
diff changeset
948
kono
parents:
diff changeset
949 @item -Wsurprising
kono
parents:
diff changeset
950 @opindex @code{Wsurprising}
kono
parents:
diff changeset
951 @cindex warnings, suspicious code
kono
parents:
diff changeset
952 Produce a warning when ``suspicious'' code constructs are encountered.
kono
parents:
diff changeset
953 While technically legal these usually indicate that an error has been made.
kono
parents:
diff changeset
954
kono
parents:
diff changeset
955 This currently produces a warning under the following circumstances:
kono
parents:
diff changeset
956
kono
parents:
diff changeset
957 @itemize @bullet
kono
parents:
diff changeset
958 @item
kono
parents:
diff changeset
959 An INTEGER SELECT construct has a CASE that can never be matched as its
kono
parents:
diff changeset
960 lower value is greater than its upper value.
kono
parents:
diff changeset
961
kono
parents:
diff changeset
962 @item
kono
parents:
diff changeset
963 A LOGICAL SELECT construct has three CASE statements.
kono
parents:
diff changeset
964
kono
parents:
diff changeset
965 @item
kono
parents:
diff changeset
966 A TRANSFER specifies a source that is shorter than the destination.
kono
parents:
diff changeset
967
kono
parents:
diff changeset
968 @item
kono
parents:
diff changeset
969 The type of a function result is declared more than once with the same type. If
kono
parents:
diff changeset
970 @option{-pedantic} or standard-conforming mode is enabled, this is an error.
kono
parents:
diff changeset
971
kono
parents:
diff changeset
972 @item
kono
parents:
diff changeset
973 A @code{CHARACTER} variable is declared with negative length.
kono
parents:
diff changeset
974 @end itemize
kono
parents:
diff changeset
975
kono
parents:
diff changeset
976 @item -Wtabs
kono
parents:
diff changeset
977 @opindex @code{Wtabs}
kono
parents:
diff changeset
978 @cindex warnings, tabs
kono
parents:
diff changeset
979 @cindex tabulators
kono
parents:
diff changeset
980 By default, tabs are accepted as whitespace, but tabs are not members
kono
parents:
diff changeset
981 of the Fortran Character Set. For continuation lines, a tab followed
kono
parents:
diff changeset
982 by a digit between 1 and 9 is supported. @option{-Wtabs} will cause
kono
parents:
diff changeset
983 a warning to be issued if a tab is encountered. Note, @option{-Wtabs}
kono
parents:
diff changeset
984 is active for @option{-pedantic}, @option{-std=f95}, @option{-std=f2003},
kono
parents:
diff changeset
985 @option{-std=f2008}, @option{-std=f2008ts} and @option{-Wall}.
kono
parents:
diff changeset
986
kono
parents:
diff changeset
987 @item -Wundefined-do-loop
kono
parents:
diff changeset
988 @opindex @code{Wundefined-do-loop}
kono
parents:
diff changeset
989 @cindex warnings, undefined do loop
kono
parents:
diff changeset
990 Warn if a DO loop with step either 1 or -1 yields an underflow or an overflow
kono
parents:
diff changeset
991 during iteration of an induction variable of the loop.
kono
parents:
diff changeset
992 This option is implied by @option{-Wall}.
kono
parents:
diff changeset
993
kono
parents:
diff changeset
994 @item -Wunderflow
kono
parents:
diff changeset
995 @opindex @code{Wunderflow}
kono
parents:
diff changeset
996 @cindex warnings, underflow
kono
parents:
diff changeset
997 @cindex underflow
kono
parents:
diff changeset
998 Produce a warning when numerical constant expressions are
kono
parents:
diff changeset
999 encountered, which yield an UNDERFLOW during compilation. Enabled by default.
kono
parents:
diff changeset
1000
kono
parents:
diff changeset
1001 @item -Wintrinsic-shadow
kono
parents:
diff changeset
1002 @opindex @code{Wintrinsic-shadow}
kono
parents:
diff changeset
1003 @cindex warnings, intrinsic
kono
parents:
diff changeset
1004 @cindex intrinsic
kono
parents:
diff changeset
1005 Warn if a user-defined procedure or module procedure has the same name as an
kono
parents:
diff changeset
1006 intrinsic; in this case, an explicit interface or @code{EXTERNAL} or
kono
parents:
diff changeset
1007 @code{INTRINSIC} declaration might be needed to get calls later resolved to
kono
parents:
diff changeset
1008 the desired intrinsic/procedure. This option is implied by @option{-Wall}.
kono
parents:
diff changeset
1009
kono
parents:
diff changeset
1010 @item -Wuse-without-only
kono
parents:
diff changeset
1011 @opindex @code{Wuse-without-only}
kono
parents:
diff changeset
1012 @cindex warnings, use statements
kono
parents:
diff changeset
1013 @cindex intrinsic
kono
parents:
diff changeset
1014 Warn if a @code{USE} statement has no @code{ONLY} qualifier and
kono
parents:
diff changeset
1015 thus implicitly imports all public entities of the used module.
kono
parents:
diff changeset
1016
kono
parents:
diff changeset
1017 @item -Wunused-dummy-argument
kono
parents:
diff changeset
1018 @opindex @code{Wunused-dummy-argument}
kono
parents:
diff changeset
1019 @cindex warnings, unused dummy argument
kono
parents:
diff changeset
1020 @cindex unused dummy argument
kono
parents:
diff changeset
1021 @cindex dummy argument, unused
kono
parents:
diff changeset
1022 Warn about unused dummy arguments. This option is implied by @option{-Wall}.
kono
parents:
diff changeset
1023
kono
parents:
diff changeset
1024 @item -Wunused-parameter
kono
parents:
diff changeset
1025 @opindex @code{Wunused-parameter}
kono
parents:
diff changeset
1026 @cindex warnings, unused parameter
kono
parents:
diff changeset
1027 @cindex unused parameter
kono
parents:
diff changeset
1028 Contrary to @command{gcc}'s meaning of @option{-Wunused-parameter},
kono
parents:
diff changeset
1029 @command{gfortran}'s implementation of this option does not warn
kono
parents:
diff changeset
1030 about unused dummy arguments (see @option{-Wunused-dummy-argument}),
kono
parents:
diff changeset
1031 but about unused @code{PARAMETER} values. @option{-Wunused-parameter}
kono
parents:
diff changeset
1032 is implied by @option{-Wextra} if also @option{-Wunused} or
kono
parents:
diff changeset
1033 @option{-Wall} is used.
kono
parents:
diff changeset
1034
kono
parents:
diff changeset
1035 @item -Walign-commons
kono
parents:
diff changeset
1036 @opindex @code{Walign-commons}
kono
parents:
diff changeset
1037 @cindex warnings, alignment of @code{COMMON} blocks
kono
parents:
diff changeset
1038 @cindex alignment of @code{COMMON} blocks
kono
parents:
diff changeset
1039 By default, @command{gfortran} warns about any occasion of variables being
kono
parents:
diff changeset
1040 padded for proper alignment inside a @code{COMMON} block. This warning can be turned
kono
parents:
diff changeset
1041 off via @option{-Wno-align-commons}. See also @option{-falign-commons}.
kono
parents:
diff changeset
1042
kono
parents:
diff changeset
1043 @item -Wfunction-elimination
kono
parents:
diff changeset
1044 @opindex @code{Wfunction-elimination}
kono
parents:
diff changeset
1045 @cindex function elimination
kono
parents:
diff changeset
1046 @cindex warnings, function elimination
kono
parents:
diff changeset
1047 Warn if any calls to functions are eliminated by the optimizations
kono
parents:
diff changeset
1048 enabled by the @option{-ffrontend-optimize} option.
kono
parents:
diff changeset
1049
kono
parents:
diff changeset
1050 @item -Wrealloc-lhs
kono
parents:
diff changeset
1051 @opindex @code{Wrealloc-lhs}
kono
parents:
diff changeset
1052 @cindex Reallocate the LHS in assignments, notification
kono
parents:
diff changeset
1053 Warn when the compiler might insert code to for allocation or reallocation of
kono
parents:
diff changeset
1054 an allocatable array variable of intrinsic type in intrinsic assignments. In
kono
parents:
diff changeset
1055 hot loops, the Fortran 2003 reallocation feature may reduce the performance.
kono
parents:
diff changeset
1056 If the array is already allocated with the correct shape, consider using a
kono
parents:
diff changeset
1057 whole-array array-spec (e.g. @code{(:,:,:)}) for the variable on the left-hand
kono
parents:
diff changeset
1058 side to prevent the reallocation check. Note that in some cases the warning
kono
parents:
diff changeset
1059 is shown, even if the compiler will optimize reallocation checks away. For
kono
parents:
diff changeset
1060 instance, when the right-hand side contains the same variable multiplied by
kono
parents:
diff changeset
1061 a scalar. See also @option{-frealloc-lhs}.
kono
parents:
diff changeset
1062
kono
parents:
diff changeset
1063 @item -Wrealloc-lhs-all
kono
parents:
diff changeset
1064 @opindex @code{Wrealloc-lhs-all}
kono
parents:
diff changeset
1065 Warn when the compiler inserts code to for allocation or reallocation of an
kono
parents:
diff changeset
1066 allocatable variable; this includes scalars and derived types.
kono
parents:
diff changeset
1067
kono
parents:
diff changeset
1068 @item -Wcompare-reals
kono
parents:
diff changeset
1069 @opindex @code{Wcompare-reals}
kono
parents:
diff changeset
1070 Warn when comparing real or complex types for equality or inequality.
kono
parents:
diff changeset
1071 This option is implied by @option{-Wextra}.
kono
parents:
diff changeset
1072
kono
parents:
diff changeset
1073 @item -Wtarget-lifetime
kono
parents:
diff changeset
1074 @opindex @code{Wtargt-lifetime}
kono
parents:
diff changeset
1075 Warn if the pointer in a pointer assignment might be longer than the its
kono
parents:
diff changeset
1076 target. This option is implied by @option{-Wall}.
kono
parents:
diff changeset
1077
kono
parents:
diff changeset
1078 @item -Wzerotrip
kono
parents:
diff changeset
1079 @opindex @code{Wzerotrip}
kono
parents:
diff changeset
1080 Warn if a @code{DO} loop is known to execute zero times at compile
kono
parents:
diff changeset
1081 time. This option is implied by @option{-Wall}.
kono
parents:
diff changeset
1082
kono
parents:
diff changeset
1083 @item -Wdo-subscript
kono
parents:
diff changeset
1084 @opindex @code{Wdo-subscript}
kono
parents:
diff changeset
1085 Warn if an array subscript inside a DO loop could lead to an
kono
parents:
diff changeset
1086 out-of-bounds access even if the compiler can not prove that the
kono
parents:
diff changeset
1087 statement is actually executed, in cases like
kono
parents:
diff changeset
1088 @smallexample
kono
parents:
diff changeset
1089 real a(3)
kono
parents:
diff changeset
1090 do i=1,4
kono
parents:
diff changeset
1091 if (condition(i)) then
kono
parents:
diff changeset
1092 a(i) = 1.2
kono
parents:
diff changeset
1093 end if
kono
parents:
diff changeset
1094 end do
kono
parents:
diff changeset
1095 @end smallexample
kono
parents:
diff changeset
1096 This option is implied by @option{-Wextra}.
kono
parents:
diff changeset
1097
kono
parents:
diff changeset
1098 @item -Werror
kono
parents:
diff changeset
1099 @opindex @code{Werror}
kono
parents:
diff changeset
1100 @cindex warnings, to errors
kono
parents:
diff changeset
1101 Turns all warnings into errors.
kono
parents:
diff changeset
1102 @end table
kono
parents:
diff changeset
1103
kono
parents:
diff changeset
1104 @xref{Warning Options,,Options to Request or Suppress Errors and
kono
parents:
diff changeset
1105 Warnings, gcc,Using the GNU Compiler Collection (GCC)}, for information on
kono
parents:
diff changeset
1106 more options offered by the GBE shared by @command{gfortran}, @command{gcc}
kono
parents:
diff changeset
1107 and other GNU compilers.
kono
parents:
diff changeset
1108
kono
parents:
diff changeset
1109 Some of these have no effect when compiling programs written in Fortran.
kono
parents:
diff changeset
1110
kono
parents:
diff changeset
1111 @node Debugging Options
kono
parents:
diff changeset
1112 @section Options for debugging your program or GNU Fortran
kono
parents:
diff changeset
1113 @cindex options, debugging
kono
parents:
diff changeset
1114 @cindex debugging information options
kono
parents:
diff changeset
1115
kono
parents:
diff changeset
1116 GNU Fortran has various special options that are used for debugging
kono
parents:
diff changeset
1117 either your program or the GNU Fortran compiler.
kono
parents:
diff changeset
1118
kono
parents:
diff changeset
1119 @table @gcctabopt
kono
parents:
diff changeset
1120 @item -fdump-fortran-original
kono
parents:
diff changeset
1121 @opindex @code{fdump-fortran-original}
kono
parents:
diff changeset
1122 Output the internal parse tree after translating the source program
kono
parents:
diff changeset
1123 into internal representation. This option is mostly useful for
kono
parents:
diff changeset
1124 debugging the GNU Fortran compiler itself. The output generated by
kono
parents:
diff changeset
1125 this option might change between releases. This option may also
kono
parents:
diff changeset
1126 generate internal compiler errors for features which have only
kono
parents:
diff changeset
1127 recently been added.
kono
parents:
diff changeset
1128
kono
parents:
diff changeset
1129 @item -fdump-fortran-optimized
kono
parents:
diff changeset
1130 @opindex @code{fdump-fortran-optimized}
kono
parents:
diff changeset
1131 Output the parse tree after front-end optimization. Mostly useful for
kono
parents:
diff changeset
1132 debugging the GNU Fortran compiler itself. The output generated by
kono
parents:
diff changeset
1133 this option might change between releases. This option may also
kono
parents:
diff changeset
1134 generate internal compiler errors for features which have only
kono
parents:
diff changeset
1135 recently been added.
kono
parents:
diff changeset
1136
kono
parents:
diff changeset
1137 @item -fdump-parse-tree
kono
parents:
diff changeset
1138 @opindex @code{fdump-parse-tree}
kono
parents:
diff changeset
1139 Output the internal parse tree after translating the source program
kono
parents:
diff changeset
1140 into internal representation. Mostly useful for debugging the GNU
kono
parents:
diff changeset
1141 Fortran compiler itself. The output generated by this option might
kono
parents:
diff changeset
1142 change between releases. This option may also generate internal
kono
parents:
diff changeset
1143 compiler errors for features which have only recently been added. This
kono
parents:
diff changeset
1144 option is deprecated; use @code{-fdump-fortran-original} instead.
kono
parents:
diff changeset
1145
kono
parents:
diff changeset
1146 @item -ffpe-trap=@var{list}
kono
parents:
diff changeset
1147 @opindex @code{ffpe-trap=}@var{list}
kono
parents:
diff changeset
1148 Specify a list of floating point exception traps to enable. On most
kono
parents:
diff changeset
1149 systems, if a floating point exception occurs and the trap for that
kono
parents:
diff changeset
1150 exception is enabled, a SIGFPE signal will be sent and the program
kono
parents:
diff changeset
1151 being aborted, producing a core file useful for debugging. @var{list}
kono
parents:
diff changeset
1152 is a (possibly empty) comma-separated list of the following
kono
parents:
diff changeset
1153 exceptions: @samp{invalid} (invalid floating point operation, such as
kono
parents:
diff changeset
1154 @code{SQRT(-1.0)}), @samp{zero} (division by zero), @samp{overflow}
kono
parents:
diff changeset
1155 (overflow in a floating point operation), @samp{underflow} (underflow
kono
parents:
diff changeset
1156 in a floating point operation), @samp{inexact} (loss of precision
kono
parents:
diff changeset
1157 during operation), and @samp{denormal} (operation performed on a
kono
parents:
diff changeset
1158 denormal value). The first five exceptions correspond to the five
kono
parents:
diff changeset
1159 IEEE 754 exceptions, whereas the last one (@samp{denormal}) is not
kono
parents:
diff changeset
1160 part of the IEEE 754 standard but is available on some common
kono
parents:
diff changeset
1161 architectures such as x86.
kono
parents:
diff changeset
1162
kono
parents:
diff changeset
1163 The first three exceptions (@samp{invalid}, @samp{zero}, and
kono
parents:
diff changeset
1164 @samp{overflow}) often indicate serious errors, and unless the program
kono
parents:
diff changeset
1165 has provisions for dealing with these exceptions, enabling traps for
kono
parents:
diff changeset
1166 these three exceptions is probably a good idea.
kono
parents:
diff changeset
1167
kono
parents:
diff changeset
1168 Many, if not most, floating point operations incur loss of precision
kono
parents:
diff changeset
1169 due to rounding, and hence the @code{ffpe-trap=inexact} is likely to
kono
parents:
diff changeset
1170 be uninteresting in practice.
kono
parents:
diff changeset
1171
kono
parents:
diff changeset
1172 By default no exception traps are enabled.
kono
parents:
diff changeset
1173
kono
parents:
diff changeset
1174 @item -ffpe-summary=@var{list}
kono
parents:
diff changeset
1175 @opindex @code{ffpe-summary=}@var{list}
kono
parents:
diff changeset
1176 Specify a list of floating-point exceptions, whose flag status is printed
kono
parents:
diff changeset
1177 to @code{ERROR_UNIT} when invoking @code{STOP} and @code{ERROR STOP}.
kono
parents:
diff changeset
1178 @var{list} can be either @samp{none}, @samp{all} or a comma-separated list
kono
parents:
diff changeset
1179 of the following exceptions: @samp{invalid}, @samp{zero}, @samp{overflow},
kono
parents:
diff changeset
1180 @samp{underflow}, @samp{inexact} and @samp{denormal}. (See
kono
parents:
diff changeset
1181 @option{-ffpe-trap} for a description of the exceptions.)
kono
parents:
diff changeset
1182
kono
parents:
diff changeset
1183 By default, a summary for all exceptions but @samp{inexact} is shown.
kono
parents:
diff changeset
1184
kono
parents:
diff changeset
1185 @item -fno-backtrace
kono
parents:
diff changeset
1186 @opindex @code{fno-backtrace}
kono
parents:
diff changeset
1187 @cindex backtrace
kono
parents:
diff changeset
1188 @cindex trace
kono
parents:
diff changeset
1189 When a serious runtime error is encountered or a deadly signal is
kono
parents:
diff changeset
1190 emitted (segmentation fault, illegal instruction, bus error,
kono
parents:
diff changeset
1191 floating-point exception, and the other POSIX signals that have the
kono
parents:
diff changeset
1192 action @samp{core}), the Fortran runtime library tries to output a
kono
parents:
diff changeset
1193 backtrace of the error. @code{-fno-backtrace} disables the backtrace
kono
parents:
diff changeset
1194 generation. This option only has influence for compilation of the
kono
parents:
diff changeset
1195 Fortran main program.
kono
parents:
diff changeset
1196
kono
parents:
diff changeset
1197 @end table
kono
parents:
diff changeset
1198
kono
parents:
diff changeset
1199 @xref{Debugging Options,,Options for Debugging Your Program or GCC,
kono
parents:
diff changeset
1200 gcc,Using the GNU Compiler Collection (GCC)}, for more information on
kono
parents:
diff changeset
1201 debugging options.
kono
parents:
diff changeset
1202
kono
parents:
diff changeset
1203 @node Directory Options
kono
parents:
diff changeset
1204 @section Options for directory search
kono
parents:
diff changeset
1205 @cindex directory, options
kono
parents:
diff changeset
1206 @cindex options, directory search
kono
parents:
diff changeset
1207 @cindex search path
kono
parents:
diff changeset
1208 @cindex @code{INCLUDE} directive
kono
parents:
diff changeset
1209 @cindex directive, @code{INCLUDE}
kono
parents:
diff changeset
1210 These options affect how GNU Fortran searches
kono
parents:
diff changeset
1211 for files specified by the @code{INCLUDE} directive and where it searches
kono
parents:
diff changeset
1212 for previously compiled modules.
kono
parents:
diff changeset
1213
kono
parents:
diff changeset
1214 It also affects the search paths used by @command{cpp} when used to preprocess
kono
parents:
diff changeset
1215 Fortran source.
kono
parents:
diff changeset
1216
kono
parents:
diff changeset
1217 @table @gcctabopt
kono
parents:
diff changeset
1218 @item -I@var{dir}
kono
parents:
diff changeset
1219 @opindex @code{I}@var{dir}
kono
parents:
diff changeset
1220 @cindex directory, search paths for inclusion
kono
parents:
diff changeset
1221 @cindex inclusion, directory search paths for
kono
parents:
diff changeset
1222 @cindex search paths, for included files
kono
parents:
diff changeset
1223 @cindex paths, search
kono
parents:
diff changeset
1224 @cindex module search path
kono
parents:
diff changeset
1225 These affect interpretation of the @code{INCLUDE} directive
kono
parents:
diff changeset
1226 (as well as of the @code{#include} directive of the @command{cpp}
kono
parents:
diff changeset
1227 preprocessor).
kono
parents:
diff changeset
1228
kono
parents:
diff changeset
1229 Also note that the general behavior of @option{-I} and
kono
parents:
diff changeset
1230 @code{INCLUDE} is pretty much the same as of @option{-I} with
kono
parents:
diff changeset
1231 @code{#include} in the @command{cpp} preprocessor, with regard to
kono
parents:
diff changeset
1232 looking for @file{header.gcc} files and other such things.
kono
parents:
diff changeset
1233
kono
parents:
diff changeset
1234 This path is also used to search for @file{.mod} files when previously
kono
parents:
diff changeset
1235 compiled modules are required by a @code{USE} statement.
kono
parents:
diff changeset
1236
kono
parents:
diff changeset
1237 @xref{Directory Options,,Options for Directory Search,
kono
parents:
diff changeset
1238 gcc,Using the GNU Compiler Collection (GCC)}, for information on the
kono
parents:
diff changeset
1239 @option{-I} option.
kono
parents:
diff changeset
1240
kono
parents:
diff changeset
1241 @item -J@var{dir}
kono
parents:
diff changeset
1242 @opindex @code{J}@var{dir}
kono
parents:
diff changeset
1243 @opindex @code{M}@var{dir}
kono
parents:
diff changeset
1244 @cindex paths, search
kono
parents:
diff changeset
1245 @cindex module search path
kono
parents:
diff changeset
1246 This option specifies where to put @file{.mod} files for compiled modules.
kono
parents:
diff changeset
1247 It is also added to the list of directories to searched by an @code{USE}
kono
parents:
diff changeset
1248 statement.
kono
parents:
diff changeset
1249
kono
parents:
diff changeset
1250 The default is the current directory.
kono
parents:
diff changeset
1251
kono
parents:
diff changeset
1252 @item -fintrinsic-modules-path @var{dir}
kono
parents:
diff changeset
1253 @opindex @code{fintrinsic-modules-path} @var{dir}
kono
parents:
diff changeset
1254 @cindex paths, search
kono
parents:
diff changeset
1255 @cindex module search path
kono
parents:
diff changeset
1256 This option specifies the location of pre-compiled intrinsic modules, if
kono
parents:
diff changeset
1257 they are not in the default location expected by the compiler.
kono
parents:
diff changeset
1258 @end table
kono
parents:
diff changeset
1259
kono
parents:
diff changeset
1260 @node Link Options
kono
parents:
diff changeset
1261 @section Influencing the linking step
kono
parents:
diff changeset
1262 @cindex options, linking
kono
parents:
diff changeset
1263 @cindex linking, static
kono
parents:
diff changeset
1264
kono
parents:
diff changeset
1265 These options come into play when the compiler links object files into an
kono
parents:
diff changeset
1266 executable output file. They are meaningless if the compiler is not doing
kono
parents:
diff changeset
1267 a link step.
kono
parents:
diff changeset
1268
kono
parents:
diff changeset
1269 @table @gcctabopt
kono
parents:
diff changeset
1270 @item -static-libgfortran
kono
parents:
diff changeset
1271 @opindex @code{static-libgfortran}
kono
parents:
diff changeset
1272 On systems that provide @file{libgfortran} as a shared and a static
kono
parents:
diff changeset
1273 library, this option forces the use of the static version. If no
kono
parents:
diff changeset
1274 shared version of @file{libgfortran} was built when the compiler was
kono
parents:
diff changeset
1275 configured, this option has no effect.
kono
parents:
diff changeset
1276 @end table
kono
parents:
diff changeset
1277
kono
parents:
diff changeset
1278
kono
parents:
diff changeset
1279 @node Runtime Options
kono
parents:
diff changeset
1280 @section Influencing runtime behavior
kono
parents:
diff changeset
1281 @cindex options, runtime
kono
parents:
diff changeset
1282
kono
parents:
diff changeset
1283 These options affect the runtime behavior of programs compiled with GNU Fortran.
kono
parents:
diff changeset
1284
kono
parents:
diff changeset
1285 @table @gcctabopt
kono
parents:
diff changeset
1286 @item -fconvert=@var{conversion}
kono
parents:
diff changeset
1287 @opindex @code{fconvert=}@var{conversion}
kono
parents:
diff changeset
1288 Specify the representation of data for unformatted files. Valid
kono
parents:
diff changeset
1289 values for conversion are: @samp{native}, the default; @samp{swap},
kono
parents:
diff changeset
1290 swap between big- and little-endian; @samp{big-endian}, use big-endian
kono
parents:
diff changeset
1291 representation for unformatted files; @samp{little-endian}, use little-endian
kono
parents:
diff changeset
1292 representation for unformatted files.
kono
parents:
diff changeset
1293
kono
parents:
diff changeset
1294 @emph{This option has an effect only when used in the main program.
kono
parents:
diff changeset
1295 The @code{CONVERT} specifier and the GFORTRAN_CONVERT_UNIT environment
kono
parents:
diff changeset
1296 variable override the default specified by @option{-fconvert}.}
kono
parents:
diff changeset
1297
kono
parents:
diff changeset
1298 @item -frecord-marker=@var{length}
kono
parents:
diff changeset
1299 @opindex @code{frecord-marker=}@var{length}
kono
parents:
diff changeset
1300 Specify the length of record markers for unformatted files.
kono
parents:
diff changeset
1301 Valid values for @var{length} are 4 and 8. Default is 4.
kono
parents:
diff changeset
1302 @emph{This is different from previous versions of @command{gfortran}},
kono
parents:
diff changeset
1303 which specified a default record marker length of 8 on most
kono
parents:
diff changeset
1304 systems. If you want to read or write files compatible
kono
parents:
diff changeset
1305 with earlier versions of @command{gfortran}, use @option{-frecord-marker=8}.
kono
parents:
diff changeset
1306
kono
parents:
diff changeset
1307 @item -fmax-subrecord-length=@var{length}
kono
parents:
diff changeset
1308 @opindex @code{fmax-subrecord-length=}@var{length}
kono
parents:
diff changeset
1309 Specify the maximum length for a subrecord. The maximum permitted
kono
parents:
diff changeset
1310 value for length is 2147483639, which is also the default. Only
kono
parents:
diff changeset
1311 really useful for use by the gfortran testsuite.
kono
parents:
diff changeset
1312
kono
parents:
diff changeset
1313 @item -fsign-zero
kono
parents:
diff changeset
1314 @opindex @code{fsign-zero}
kono
parents:
diff changeset
1315 When enabled, floating point numbers of value zero with the sign bit set
kono
parents:
diff changeset
1316 are written as negative number in formatted output and treated as
kono
parents:
diff changeset
1317 negative in the @code{SIGN} intrinsic. @option{-fno-sign-zero} does not
kono
parents:
diff changeset
1318 print the negative sign of zero values (or values rounded to zero for I/O)
kono
parents:
diff changeset
1319 and regards zero as positive number in the @code{SIGN} intrinsic for
kono
parents:
diff changeset
1320 compatibility with Fortran 77. The default is @option{-fsign-zero}.
kono
parents:
diff changeset
1321 @end table
kono
parents:
diff changeset
1322
kono
parents:
diff changeset
1323 @node Code Gen Options
kono
parents:
diff changeset
1324 @section Options for code generation conventions
kono
parents:
diff changeset
1325 @cindex code generation, conventions
kono
parents:
diff changeset
1326 @cindex options, code generation
kono
parents:
diff changeset
1327 @cindex options, run-time
kono
parents:
diff changeset
1328
kono
parents:
diff changeset
1329 These machine-independent options control the interface conventions
kono
parents:
diff changeset
1330 used in code generation.
kono
parents:
diff changeset
1331
kono
parents:
diff changeset
1332 Most of them have both positive and negative forms; the negative form
kono
parents:
diff changeset
1333 of @option{-ffoo} would be @option{-fno-foo}. In the table below, only
kono
parents:
diff changeset
1334 one of the forms is listed---the one which is not the default. You
kono
parents:
diff changeset
1335 can figure out the other form by either removing @option{no-} or adding
kono
parents:
diff changeset
1336 it.
kono
parents:
diff changeset
1337
kono
parents:
diff changeset
1338 @table @gcctabopt
kono
parents:
diff changeset
1339 @item -fno-automatic
kono
parents:
diff changeset
1340 @opindex @code{fno-automatic}
kono
parents:
diff changeset
1341 @cindex @code{SAVE} statement
kono
parents:
diff changeset
1342 @cindex statement, @code{SAVE}
kono
parents:
diff changeset
1343 Treat each program unit (except those marked as RECURSIVE) as if the
kono
parents:
diff changeset
1344 @code{SAVE} statement were specified for every local variable and array
kono
parents:
diff changeset
1345 referenced in it. Does not affect common blocks. (Some Fortran compilers
kono
parents:
diff changeset
1346 provide this option under the name @option{-static} or @option{-save}.)
kono
parents:
diff changeset
1347 The default, which is @option{-fautomatic}, uses the stack for local
kono
parents:
diff changeset
1348 variables smaller than the value given by @option{-fmax-stack-var-size}.
kono
parents:
diff changeset
1349 Use the option @option{-frecursive} to use no static memory.
kono
parents:
diff changeset
1350
kono
parents:
diff changeset
1351 @item -ff2c
kono
parents:
diff changeset
1352 @opindex ff2c
kono
parents:
diff changeset
1353 @cindex calling convention
kono
parents:
diff changeset
1354 @cindex @command{f2c} calling convention
kono
parents:
diff changeset
1355 @cindex @command{g77} calling convention
kono
parents:
diff changeset
1356 @cindex libf2c calling convention
kono
parents:
diff changeset
1357 Generate code designed to be compatible with code generated
kono
parents:
diff changeset
1358 by @command{g77} and @command{f2c}.
kono
parents:
diff changeset
1359
kono
parents:
diff changeset
1360 The calling conventions used by @command{g77} (originally implemented
kono
parents:
diff changeset
1361 in @command{f2c}) require functions that return type
kono
parents:
diff changeset
1362 default @code{REAL} to actually return the C type @code{double}, and
kono
parents:
diff changeset
1363 functions that return type @code{COMPLEX} to return the values via an
kono
parents:
diff changeset
1364 extra argument in the calling sequence that points to where to
kono
parents:
diff changeset
1365 store the return value. Under the default GNU calling conventions, such
kono
parents:
diff changeset
1366 functions simply return their results as they would in GNU
kono
parents:
diff changeset
1367 C---default @code{REAL} functions return the C type @code{float}, and
kono
parents:
diff changeset
1368 @code{COMPLEX} functions return the GNU C type @code{complex}.
kono
parents:
diff changeset
1369 Additionally, this option implies the @option{-fsecond-underscore}
kono
parents:
diff changeset
1370 option, unless @option{-fno-second-underscore} is explicitly requested.
kono
parents:
diff changeset
1371
kono
parents:
diff changeset
1372 This does not affect the generation of code that interfaces with
kono
parents:
diff changeset
1373 the @command{libgfortran} library.
kono
parents:
diff changeset
1374
kono
parents:
diff changeset
1375 @emph{Caution:} It is not a good idea to mix Fortran code compiled with
kono
parents:
diff changeset
1376 @option{-ff2c} with code compiled with the default @option{-fno-f2c}
kono
parents:
diff changeset
1377 calling conventions as, calling @code{COMPLEX} or default @code{REAL}
kono
parents:
diff changeset
1378 functions between program parts which were compiled with different
kono
parents:
diff changeset
1379 calling conventions will break at execution time.
kono
parents:
diff changeset
1380
kono
parents:
diff changeset
1381 @emph{Caution:} This will break code which passes intrinsic functions
kono
parents:
diff changeset
1382 of type default @code{REAL} or @code{COMPLEX} as actual arguments, as
kono
parents:
diff changeset
1383 the library implementations use the @option{-fno-f2c} calling conventions.
kono
parents:
diff changeset
1384
kono
parents:
diff changeset
1385 @item -fno-underscoring
kono
parents:
diff changeset
1386 @opindex @code{fno-underscoring}
kono
parents:
diff changeset
1387 @cindex underscore
kono
parents:
diff changeset
1388 @cindex symbol names, underscores
kono
parents:
diff changeset
1389 @cindex transforming symbol names
kono
parents:
diff changeset
1390 @cindex symbol names, transforming
kono
parents:
diff changeset
1391 Do not transform names of entities specified in the Fortran
kono
parents:
diff changeset
1392 source file by appending underscores to them.
kono
parents:
diff changeset
1393
kono
parents:
diff changeset
1394 With @option{-funderscoring} in effect, GNU Fortran appends one
kono
parents:
diff changeset
1395 underscore to external names with no underscores. This is done to ensure
kono
parents:
diff changeset
1396 compatibility with code produced by many UNIX Fortran compilers.
kono
parents:
diff changeset
1397
kono
parents:
diff changeset
1398 @emph{Caution}: The default behavior of GNU Fortran is
kono
parents:
diff changeset
1399 incompatible with @command{f2c} and @command{g77}, please use the
kono
parents:
diff changeset
1400 @option{-ff2c} option if you want object files compiled with
kono
parents:
diff changeset
1401 GNU Fortran to be compatible with object code created with these
kono
parents:
diff changeset
1402 tools.
kono
parents:
diff changeset
1403
kono
parents:
diff changeset
1404 Use of @option{-fno-underscoring} is not recommended unless you are
kono
parents:
diff changeset
1405 experimenting with issues such as integration of GNU Fortran into
kono
parents:
diff changeset
1406 existing system environments (vis-@`{a}-vis existing libraries, tools,
kono
parents:
diff changeset
1407 and so on).
kono
parents:
diff changeset
1408
kono
parents:
diff changeset
1409 For example, with @option{-funderscoring}, and assuming that @code{j()} and
kono
parents:
diff changeset
1410 @code{max_count()} are external functions while @code{my_var} and
kono
parents:
diff changeset
1411 @code{lvar} are local variables, a statement like
kono
parents:
diff changeset
1412 @smallexample
kono
parents:
diff changeset
1413 I = J() + MAX_COUNT (MY_VAR, LVAR)
kono
parents:
diff changeset
1414 @end smallexample
kono
parents:
diff changeset
1415 @noindent
kono
parents:
diff changeset
1416 is implemented as something akin to:
kono
parents:
diff changeset
1417 @smallexample
kono
parents:
diff changeset
1418 i = j_() + max_count__(&my_var__, &lvar);
kono
parents:
diff changeset
1419 @end smallexample
kono
parents:
diff changeset
1420
kono
parents:
diff changeset
1421 With @option{-fno-underscoring}, the same statement is implemented as:
kono
parents:
diff changeset
1422
kono
parents:
diff changeset
1423 @smallexample
kono
parents:
diff changeset
1424 i = j() + max_count(&my_var, &lvar);
kono
parents:
diff changeset
1425 @end smallexample
kono
parents:
diff changeset
1426
kono
parents:
diff changeset
1427 Use of @option{-fno-underscoring} allows direct specification of
kono
parents:
diff changeset
1428 user-defined names while debugging and when interfacing GNU Fortran
kono
parents:
diff changeset
1429 code with other languages.
kono
parents:
diff changeset
1430
kono
parents:
diff changeset
1431 Note that just because the names match does @emph{not} mean that the
kono
parents:
diff changeset
1432 interface implemented by GNU Fortran for an external name matches the
kono
parents:
diff changeset
1433 interface implemented by some other language for that same name.
kono
parents:
diff changeset
1434 That is, getting code produced by GNU Fortran to link to code produced
kono
parents:
diff changeset
1435 by some other compiler using this or any other method can be only a
kono
parents:
diff changeset
1436 small part of the overall solution---getting the code generated by
kono
parents:
diff changeset
1437 both compilers to agree on issues other than naming can require
kono
parents:
diff changeset
1438 significant effort, and, unlike naming disagreements, linkers normally
kono
parents:
diff changeset
1439 cannot detect disagreements in these other areas.
kono
parents:
diff changeset
1440
kono
parents:
diff changeset
1441 Also, note that with @option{-fno-underscoring}, the lack of appended
kono
parents:
diff changeset
1442 underscores introduces the very real possibility that a user-defined
kono
parents:
diff changeset
1443 external name will conflict with a name in a system library, which
kono
parents:
diff changeset
1444 could make finding unresolved-reference bugs quite difficult in some
kono
parents:
diff changeset
1445 cases---they might occur at program run time, and show up only as
kono
parents:
diff changeset
1446 buggy behavior at run time.
kono
parents:
diff changeset
1447
kono
parents:
diff changeset
1448 In future versions of GNU Fortran we hope to improve naming and linking
kono
parents:
diff changeset
1449 issues so that debugging always involves using the names as they appear
kono
parents:
diff changeset
1450 in the source, even if the names as seen by the linker are mangled to
kono
parents:
diff changeset
1451 prevent accidental linking between procedures with incompatible
kono
parents:
diff changeset
1452 interfaces.
kono
parents:
diff changeset
1453
kono
parents:
diff changeset
1454 @item -fsecond-underscore
kono
parents:
diff changeset
1455 @opindex @code{fsecond-underscore}
kono
parents:
diff changeset
1456 @cindex underscore
kono
parents:
diff changeset
1457 @cindex symbol names, underscores
kono
parents:
diff changeset
1458 @cindex transforming symbol names
kono
parents:
diff changeset
1459 @cindex symbol names, transforming
kono
parents:
diff changeset
1460 @cindex @command{f2c} calling convention
kono
parents:
diff changeset
1461 @cindex @command{g77} calling convention
kono
parents:
diff changeset
1462 @cindex libf2c calling convention
kono
parents:
diff changeset
1463 By default, GNU Fortran appends an underscore to external
kono
parents:
diff changeset
1464 names. If this option is used GNU Fortran appends two
kono
parents:
diff changeset
1465 underscores to names with underscores and one underscore to external names
kono
parents:
diff changeset
1466 with no underscores. GNU Fortran also appends two underscores to
kono
parents:
diff changeset
1467 internal names with underscores to avoid naming collisions with external
kono
parents:
diff changeset
1468 names.
kono
parents:
diff changeset
1469
kono
parents:
diff changeset
1470 This option has no effect if @option{-fno-underscoring} is
kono
parents:
diff changeset
1471 in effect. It is implied by the @option{-ff2c} option.
kono
parents:
diff changeset
1472
kono
parents:
diff changeset
1473 Otherwise, with this option, an external name such as @code{MAX_COUNT}
kono
parents:
diff changeset
1474 is implemented as a reference to the link-time external symbol
kono
parents:
diff changeset
1475 @code{max_count__}, instead of @code{max_count_}. This is required
kono
parents:
diff changeset
1476 for compatibility with @command{g77} and @command{f2c}, and is implied
kono
parents:
diff changeset
1477 by use of the @option{-ff2c} option.
kono
parents:
diff changeset
1478
kono
parents:
diff changeset
1479 @item -fcoarray=@var{<keyword>}
kono
parents:
diff changeset
1480 @opindex @code{fcoarray}
kono
parents:
diff changeset
1481 @cindex coarrays
kono
parents:
diff changeset
1482
kono
parents:
diff changeset
1483 @table @asis
kono
parents:
diff changeset
1484 @item @samp{none}
kono
parents:
diff changeset
1485 Disable coarray support; using coarray declarations and image-control
kono
parents:
diff changeset
1486 statements will produce a compile-time error. (Default)
kono
parents:
diff changeset
1487
kono
parents:
diff changeset
1488 @item @samp{single}
kono
parents:
diff changeset
1489 Single-image mode, i.e. @code{num_images()} is always one.
kono
parents:
diff changeset
1490
kono
parents:
diff changeset
1491 @item @samp{lib}
kono
parents:
diff changeset
1492 Library-based coarray parallelization; a suitable GNU Fortran coarray
kono
parents:
diff changeset
1493 library needs to be linked.
kono
parents:
diff changeset
1494 @end table
kono
parents:
diff changeset
1495
kono
parents:
diff changeset
1496
kono
parents:
diff changeset
1497 @item -fcheck=@var{<keyword>}
kono
parents:
diff changeset
1498 @opindex @code{fcheck}
kono
parents:
diff changeset
1499 @cindex array, bounds checking
kono
parents:
diff changeset
1500 @cindex bounds checking
kono
parents:
diff changeset
1501 @cindex pointer checking
kono
parents:
diff changeset
1502 @cindex memory checking
kono
parents:
diff changeset
1503 @cindex range checking
kono
parents:
diff changeset
1504 @cindex subscript checking
kono
parents:
diff changeset
1505 @cindex checking subscripts
kono
parents:
diff changeset
1506 @cindex run-time checking
kono
parents:
diff changeset
1507 @cindex checking array temporaries
kono
parents:
diff changeset
1508
kono
parents:
diff changeset
1509 Enable the generation of run-time checks; the argument shall be
kono
parents:
diff changeset
1510 a comma-delimited list of the following keywords. Prefixing a check with
kono
parents:
diff changeset
1511 @option{no-} disables it if it was activated by a previous specification.
kono
parents:
diff changeset
1512
kono
parents:
diff changeset
1513 @table @asis
kono
parents:
diff changeset
1514 @item @samp{all}
kono
parents:
diff changeset
1515 Enable all run-time test of @option{-fcheck}.
kono
parents:
diff changeset
1516
kono
parents:
diff changeset
1517 @item @samp{array-temps}
kono
parents:
diff changeset
1518 Warns at run time when for passing an actual argument a temporary array
kono
parents:
diff changeset
1519 had to be generated. The information generated by this warning is
kono
parents:
diff changeset
1520 sometimes useful in optimization, in order to avoid such temporaries.
kono
parents:
diff changeset
1521
kono
parents:
diff changeset
1522 Note: The warning is only printed once per location.
kono
parents:
diff changeset
1523
kono
parents:
diff changeset
1524 @item @samp{bounds}
kono
parents:
diff changeset
1525 Enable generation of run-time checks for array subscripts
kono
parents:
diff changeset
1526 and against the declared minimum and maximum values. It also
kono
parents:
diff changeset
1527 checks array indices for assumed and deferred
kono
parents:
diff changeset
1528 shape arrays against the actual allocated bounds and ensures that all string
kono
parents:
diff changeset
1529 lengths are equal for character array constructors without an explicit
kono
parents:
diff changeset
1530 typespec.
kono
parents:
diff changeset
1531
kono
parents:
diff changeset
1532 Some checks require that @option{-fcheck=bounds} is set for
kono
parents:
diff changeset
1533 the compilation of the main program.
kono
parents:
diff changeset
1534
kono
parents:
diff changeset
1535 Note: In the future this may also include other forms of checking, e.g.,
kono
parents:
diff changeset
1536 checking substring references.
kono
parents:
diff changeset
1537
kono
parents:
diff changeset
1538 @item @samp{do}
kono
parents:
diff changeset
1539 Enable generation of run-time checks for invalid modification of loop
kono
parents:
diff changeset
1540 iteration variables.
kono
parents:
diff changeset
1541
kono
parents:
diff changeset
1542 @item @samp{mem}
kono
parents:
diff changeset
1543 Enable generation of run-time checks for memory allocation.
kono
parents:
diff changeset
1544 Note: This option does not affect explicit allocations using the
kono
parents:
diff changeset
1545 @code{ALLOCATE} statement, which will be always checked.
kono
parents:
diff changeset
1546
kono
parents:
diff changeset
1547 @item @samp{pointer}
kono
parents:
diff changeset
1548 Enable generation of run-time checks for pointers and allocatables.
kono
parents:
diff changeset
1549
kono
parents:
diff changeset
1550 @item @samp{recursion}
kono
parents:
diff changeset
1551 Enable generation of run-time checks for recursively called subroutines and
kono
parents:
diff changeset
1552 functions which are not marked as recursive. See also @option{-frecursive}.
kono
parents:
diff changeset
1553 Note: This check does not work for OpenMP programs and is disabled if used
kono
parents:
diff changeset
1554 together with @option{-frecursive} and @option{-fopenmp}.
kono
parents:
diff changeset
1555 @end table
kono
parents:
diff changeset
1556
kono
parents:
diff changeset
1557 Example: Assuming you have a file @file{foo.f90}, the command
kono
parents:
diff changeset
1558 @smallexample
kono
parents:
diff changeset
1559 gfortran -fcheck=all,no-array-temps foo.f90
kono
parents:
diff changeset
1560 @end smallexample
kono
parents:
diff changeset
1561 will compile the file with all checks enabled as specified above except
kono
parents:
diff changeset
1562 warnings for generated array temporaries.
kono
parents:
diff changeset
1563
kono
parents:
diff changeset
1564
kono
parents:
diff changeset
1565 @item -fbounds-check
kono
parents:
diff changeset
1566 @opindex @code{fbounds-check}
kono
parents:
diff changeset
1567 @c Note: This option is also referred in gcc's manpage
kono
parents:
diff changeset
1568 Deprecated alias for @option{-fcheck=bounds}.
kono
parents:
diff changeset
1569
kono
parents:
diff changeset
1570 @item -fcheck-array-temporaries
kono
parents:
diff changeset
1571 @opindex @code{fcheck-array-temporaries}
kono
parents:
diff changeset
1572 Deprecated alias for @option{-fcheck=array-temps}.
kono
parents:
diff changeset
1573
kono
parents:
diff changeset
1574 @item -fmax-array-constructor=@var{n}
kono
parents:
diff changeset
1575 @opindex @code{fmax-array-constructor}
kono
parents:
diff changeset
1576 This option can be used to increase the upper limit permitted in
kono
parents:
diff changeset
1577 array constructors. The code below requires this option to expand
kono
parents:
diff changeset
1578 the array at compile time.
kono
parents:
diff changeset
1579
kono
parents:
diff changeset
1580 @smallexample
kono
parents:
diff changeset
1581 program test
kono
parents:
diff changeset
1582 implicit none
kono
parents:
diff changeset
1583 integer j
kono
parents:
diff changeset
1584 integer, parameter :: n = 100000
kono
parents:
diff changeset
1585 integer, parameter :: i(n) = (/ (2*j, j = 1, n) /)
kono
parents:
diff changeset
1586 print '(10(I0,1X))', i
kono
parents:
diff changeset
1587 end program test
kono
parents:
diff changeset
1588 @end smallexample
kono
parents:
diff changeset
1589
kono
parents:
diff changeset
1590 @emph{Caution: This option can lead to long compile times and excessively
kono
parents:
diff changeset
1591 large object files.}
kono
parents:
diff changeset
1592
kono
parents:
diff changeset
1593 The default value for @var{n} is 65535.
kono
parents:
diff changeset
1594
kono
parents:
diff changeset
1595
kono
parents:
diff changeset
1596 @item -fmax-stack-var-size=@var{n}
kono
parents:
diff changeset
1597 @opindex @code{fmax-stack-var-size}
kono
parents:
diff changeset
1598 This option specifies the size in bytes of the largest array that will be put
kono
parents:
diff changeset
1599 on the stack; if the size is exceeded static memory is used (except in
kono
parents:
diff changeset
1600 procedures marked as RECURSIVE). Use the option @option{-frecursive} to
kono
parents:
diff changeset
1601 allow for recursive procedures which do not have a RECURSIVE attribute or
kono
parents:
diff changeset
1602 for parallel programs. Use @option{-fno-automatic} to never use the stack.
kono
parents:
diff changeset
1603
kono
parents:
diff changeset
1604 This option currently only affects local arrays declared with constant
kono
parents:
diff changeset
1605 bounds, and may not apply to all character variables.
kono
parents:
diff changeset
1606 Future versions of GNU Fortran may improve this behavior.
kono
parents:
diff changeset
1607
kono
parents:
diff changeset
1608 The default value for @var{n} is 32768.
kono
parents:
diff changeset
1609
kono
parents:
diff changeset
1610 @item -fstack-arrays
kono
parents:
diff changeset
1611 @opindex @code{fstack-arrays}
kono
parents:
diff changeset
1612 Adding this option will make the Fortran compiler put all arrays of
kono
parents:
diff changeset
1613 unknown size and array temporaries onto stack memory. If your program uses very
kono
parents:
diff changeset
1614 large local arrays it is possible that you will have to extend your runtime
kono
parents:
diff changeset
1615 limits for stack memory on some operating systems. This flag is enabled
kono
parents:
diff changeset
1616 by default at optimization level @option{-Ofast} unless
kono
parents:
diff changeset
1617 @option{-fmax-stack-var-size} is specified.
kono
parents:
diff changeset
1618
kono
parents:
diff changeset
1619 @item -fpack-derived
kono
parents:
diff changeset
1620 @opindex @code{fpack-derived}
kono
parents:
diff changeset
1621 @cindex structure packing
kono
parents:
diff changeset
1622 This option tells GNU Fortran to pack derived type members as closely as
kono
parents:
diff changeset
1623 possible. Code compiled with this option is likely to be incompatible
kono
parents:
diff changeset
1624 with code compiled without this option, and may execute slower.
kono
parents:
diff changeset
1625
kono
parents:
diff changeset
1626 @item -frepack-arrays
kono
parents:
diff changeset
1627 @opindex @code{frepack-arrays}
kono
parents:
diff changeset
1628 @cindex repacking arrays
kono
parents:
diff changeset
1629 In some circumstances GNU Fortran may pass assumed shape array
kono
parents:
diff changeset
1630 sections via a descriptor describing a noncontiguous area of memory.
kono
parents:
diff changeset
1631 This option adds code to the function prologue to repack the data into
kono
parents:
diff changeset
1632 a contiguous block at runtime.
kono
parents:
diff changeset
1633
kono
parents:
diff changeset
1634 This should result in faster accesses to the array. However it can introduce
kono
parents:
diff changeset
1635 significant overhead to the function call, especially when the passed data
kono
parents:
diff changeset
1636 is noncontiguous.
kono
parents:
diff changeset
1637
kono
parents:
diff changeset
1638 @item -fshort-enums
kono
parents:
diff changeset
1639 @opindex @code{fshort-enums}
kono
parents:
diff changeset
1640 This option is provided for interoperability with C code that was
kono
parents:
diff changeset
1641 compiled with the @option{-fshort-enums} option. It will make
kono
parents:
diff changeset
1642 GNU Fortran choose the smallest @code{INTEGER} kind a given
kono
parents:
diff changeset
1643 enumerator set will fit in, and give all its enumerators this kind.
kono
parents:
diff changeset
1644
kono
parents:
diff changeset
1645 @item -fexternal-blas
kono
parents:
diff changeset
1646 @opindex @code{fexternal-blas}
kono
parents:
diff changeset
1647 This option will make @command{gfortran} generate calls to BLAS functions
kono
parents:
diff changeset
1648 for some matrix operations like @code{MATMUL}, instead of using our own
kono
parents:
diff changeset
1649 algorithms, if the size of the matrices involved is larger than a given
kono
parents:
diff changeset
1650 limit (see @option{-fblas-matmul-limit}). This may be profitable if an
kono
parents:
diff changeset
1651 optimized vendor BLAS library is available. The BLAS library will have
kono
parents:
diff changeset
1652 to be specified at link time.
kono
parents:
diff changeset
1653
kono
parents:
diff changeset
1654 @item -fblas-matmul-limit=@var{n}
kono
parents:
diff changeset
1655 @opindex @code{fblas-matmul-limit}
kono
parents:
diff changeset
1656 Only significant when @option{-fexternal-blas} is in effect.
kono
parents:
diff changeset
1657 Matrix multiplication of matrices with size larger than (or equal to) @var{n}
kono
parents:
diff changeset
1658 will be performed by calls to BLAS functions, while others will be
kono
parents:
diff changeset
1659 handled by @command{gfortran} internal algorithms. If the matrices
kono
parents:
diff changeset
1660 involved are not square, the size comparison is performed using the
kono
parents:
diff changeset
1661 geometric mean of the dimensions of the argument and result matrices.
kono
parents:
diff changeset
1662
kono
parents:
diff changeset
1663 The default value for @var{n} is 30.
kono
parents:
diff changeset
1664
kono
parents:
diff changeset
1665 @item -finline-matmul-limit=@var{n}
kono
parents:
diff changeset
1666 @opindex @code{finline-matmul-limit}
kono
parents:
diff changeset
1667 When front-end optimiztion is active, some calls to the @code{MATMUL}
kono
parents:
diff changeset
1668 intrinsic function will be inlined. This may result in code size
kono
parents:
diff changeset
1669 increase if the size of the matrix cannot be determined at compile
kono
parents:
diff changeset
1670 time, as code for both cases is generated. Setting
kono
parents:
diff changeset
1671 @code{-finline-matmul-limit=0} will disable inlining in all cases.
kono
parents:
diff changeset
1672 Setting this option with a value of @var{n} will produce inline code
kono
parents:
diff changeset
1673 for matrices with size up to @var{n}. If the matrices involved are not
kono
parents:
diff changeset
1674 square, the size comparison is performed using the geometric mean of
kono
parents:
diff changeset
1675 the dimensions of the argument and result matrices.
kono
parents:
diff changeset
1676
kono
parents:
diff changeset
1677 The default value for @var{n} is 30. The @code{-fblas-matmul-limit}
kono
parents:
diff changeset
1678 can be used to change this value.
kono
parents:
diff changeset
1679
kono
parents:
diff changeset
1680 @item -frecursive
kono
parents:
diff changeset
1681 @opindex @code{frecursive}
kono
parents:
diff changeset
1682 Allow indirect recursion by forcing all local arrays to be allocated
kono
parents:
diff changeset
1683 on the stack. This flag cannot be used together with
kono
parents:
diff changeset
1684 @option{-fmax-stack-var-size=} or @option{-fno-automatic}.
kono
parents:
diff changeset
1685
kono
parents:
diff changeset
1686 @item -finit-local-zero
kono
parents:
diff changeset
1687 @itemx -finit-derived
kono
parents:
diff changeset
1688 @itemx -finit-integer=@var{n}
kono
parents:
diff changeset
1689 @itemx -finit-real=@var{<zero|inf|-inf|nan|snan>}
kono
parents:
diff changeset
1690 @itemx -finit-logical=@var{<true|false>}
kono
parents:
diff changeset
1691 @itemx -finit-character=@var{n}
kono
parents:
diff changeset
1692 @opindex @code{finit-local-zero}
kono
parents:
diff changeset
1693 @opindex @code{finit-derived}
kono
parents:
diff changeset
1694 @opindex @code{finit-integer}
kono
parents:
diff changeset
1695 @opindex @code{finit-real}
kono
parents:
diff changeset
1696 @opindex @code{finit-logical}
kono
parents:
diff changeset
1697 @opindex @code{finit-character}
kono
parents:
diff changeset
1698 The @option{-finit-local-zero} option instructs the compiler to
kono
parents:
diff changeset
1699 initialize local @code{INTEGER}, @code{REAL}, and @code{COMPLEX}
kono
parents:
diff changeset
1700 variables to zero, @code{LOGICAL} variables to false, and
kono
parents:
diff changeset
1701 @code{CHARACTER} variables to a string of null bytes. Finer-grained
kono
parents:
diff changeset
1702 initialization options are provided by the
kono
parents:
diff changeset
1703 @option{-finit-integer=@var{n}},
kono
parents:
diff changeset
1704 @option{-finit-real=@var{<zero|inf|-inf|nan|snan>}} (which also initializes
kono
parents:
diff changeset
1705 the real and imaginary parts of local @code{COMPLEX} variables),
kono
parents:
diff changeset
1706 @option{-finit-logical=@var{<true|false>}}, and
kono
parents:
diff changeset
1707 @option{-finit-character=@var{n}} (where @var{n} is an ASCII character
kono
parents:
diff changeset
1708 value) options. Components of derived type variables will be initialized
kono
parents:
diff changeset
1709 according to these flags only with @option{-finit-derived}. These options do
kono
parents:
diff changeset
1710 not initialize
kono
parents:
diff changeset
1711 @itemize @bullet
kono
parents:
diff changeset
1712 @item
kono
parents:
diff changeset
1713 objects with the POINTER attribute
kono
parents:
diff changeset
1714 @item
kono
parents:
diff changeset
1715 allocatable arrays
kono
parents:
diff changeset
1716 @item
kono
parents:
diff changeset
1717 variables that appear in an @code{EQUIVALENCE} statement.
kono
parents:
diff changeset
1718 @end itemize
kono
parents:
diff changeset
1719 (These limitations may be removed in future releases).
kono
parents:
diff changeset
1720
kono
parents:
diff changeset
1721 Note that the @option{-finit-real=nan} option initializes @code{REAL}
kono
parents:
diff changeset
1722 and @code{COMPLEX} variables with a quiet NaN. For a signalling NaN
kono
parents:
diff changeset
1723 use @option{-finit-real=snan}; note, however, that compile-time
kono
parents:
diff changeset
1724 optimizations may convert them into quiet NaN and that trapping
kono
parents:
diff changeset
1725 needs to be enabled (e.g. via @option{-ffpe-trap}).
kono
parents:
diff changeset
1726
kono
parents:
diff changeset
1727 Finally, note that enabling any of the @option{-finit-*} options will
kono
parents:
diff changeset
1728 silence warnings that would have been emitted by @option{-Wuninitialized}
kono
parents:
diff changeset
1729 for the affected local variables.
kono
parents:
diff changeset
1730
kono
parents:
diff changeset
1731 @item -falign-commons
kono
parents:
diff changeset
1732 @opindex @code{falign-commons}
kono
parents:
diff changeset
1733 @cindex alignment of @code{COMMON} blocks
kono
parents:
diff changeset
1734 By default, @command{gfortran} enforces proper alignment of all variables in a
kono
parents:
diff changeset
1735 @code{COMMON} block by padding them as needed. On certain platforms this is mandatory,
kono
parents:
diff changeset
1736 on others it increases performance. If a @code{COMMON} block is not declared with
kono
parents:
diff changeset
1737 consistent data types everywhere, this padding can cause trouble, and
kono
parents:
diff changeset
1738 @option{-fno-align-commons} can be used to disable automatic alignment. The
kono
parents:
diff changeset
1739 same form of this option should be used for all files that share a @code{COMMON} block.
kono
parents:
diff changeset
1740 To avoid potential alignment issues in @code{COMMON} blocks, it is recommended to order
kono
parents:
diff changeset
1741 objects from largest to smallest.
kono
parents:
diff changeset
1742
kono
parents:
diff changeset
1743 @item -fno-protect-parens
kono
parents:
diff changeset
1744 @opindex @code{fno-protect-parens}
kono
parents:
diff changeset
1745 @cindex re-association of parenthesized expressions
kono
parents:
diff changeset
1746 By default the parentheses in expression are honored for all optimization
kono
parents:
diff changeset
1747 levels such that the compiler does not do any re-association. Using
kono
parents:
diff changeset
1748 @option{-fno-protect-parens} allows the compiler to reorder @code{REAL} and
kono
parents:
diff changeset
1749 @code{COMPLEX} expressions to produce faster code. Note that for the re-association
kono
parents:
diff changeset
1750 optimization @option{-fno-signed-zeros} and @option{-fno-trapping-math}
kono
parents:
diff changeset
1751 need to be in effect. The parentheses protection is enabled by default, unless
kono
parents:
diff changeset
1752 @option{-Ofast} is given.
kono
parents:
diff changeset
1753
kono
parents:
diff changeset
1754 @item -frealloc-lhs
kono
parents:
diff changeset
1755 @opindex @code{frealloc-lhs}
kono
parents:
diff changeset
1756 @cindex Reallocate the LHS in assignments
kono
parents:
diff changeset
1757 An allocatable left-hand side of an intrinsic assignment is automatically
kono
parents:
diff changeset
1758 (re)allocated if it is either unallocated or has a different shape. The
kono
parents:
diff changeset
1759 option is enabled by default except when @option{-std=f95} is given. See
kono
parents:
diff changeset
1760 also @option{-Wrealloc-lhs}.
kono
parents:
diff changeset
1761
kono
parents:
diff changeset
1762 @item -faggressive-function-elimination
kono
parents:
diff changeset
1763 @opindex @code{faggressive-function-elimination}
kono
parents:
diff changeset
1764 @cindex Elimination of functions with identical argument lists
kono
parents:
diff changeset
1765 Functions with identical argument lists are eliminated within
kono
parents:
diff changeset
1766 statements, regardless of whether these functions are marked
kono
parents:
diff changeset
1767 @code{PURE} or not. For example, in
kono
parents:
diff changeset
1768 @smallexample
kono
parents:
diff changeset
1769 a = f(b,c) + f(b,c)
kono
parents:
diff changeset
1770 @end smallexample
kono
parents:
diff changeset
1771 there will only be a single call to @code{f}. This option only works
kono
parents:
diff changeset
1772 if @option{-ffrontend-optimize} is in effect.
kono
parents:
diff changeset
1773
kono
parents:
diff changeset
1774 @item -ffrontend-optimize
kono
parents:
diff changeset
1775 @opindex @code{frontend-optimize}
kono
parents:
diff changeset
1776 @cindex Front-end optimization
kono
parents:
diff changeset
1777 This option performs front-end optimization, based on manipulating
kono
parents:
diff changeset
1778 parts the Fortran parse tree. Enabled by default by any @option{-O}
kono
parents:
diff changeset
1779 option. Optimizations enabled by this option include inlining calls
kono
parents:
diff changeset
1780 to @code{MATMUL}, elimination of identical function calls within
kono
parents:
diff changeset
1781 expressions, removing unnecessary calls to @code{TRIM} in comparisons
kono
parents:
diff changeset
1782 and assignments and replacing @code{TRIM(a)} with
kono
parents:
diff changeset
1783 @code{a(1:LEN_TRIM(a))}. It can be deselected by specifying
kono
parents:
diff changeset
1784 @option{-fno-frontend-optimize}.
kono
parents:
diff changeset
1785 @end table
kono
parents:
diff changeset
1786
kono
parents:
diff changeset
1787 @xref{Code Gen Options,,Options for Code Generation Conventions,
kono
parents:
diff changeset
1788 gcc,Using the GNU Compiler Collection (GCC)}, for information on more options
kono
parents:
diff changeset
1789 offered by the GBE
kono
parents:
diff changeset
1790 shared by @command{gfortran}, @command{gcc}, and other GNU compilers.
kono
parents:
diff changeset
1791
kono
parents:
diff changeset
1792 @c man end
kono
parents:
diff changeset
1793
kono
parents:
diff changeset
1794 @node Interoperability Options
kono
parents:
diff changeset
1795 @section Options for interoperability with other languages
kono
parents:
diff changeset
1796
kono
parents:
diff changeset
1797 @table @asis
kono
parents:
diff changeset
1798
kono
parents:
diff changeset
1799 @item -fc-prototypes
kono
parents:
diff changeset
1800 @opindex @code{c-prototypes}
kono
parents:
diff changeset
1801 @cindex Generating C prototypes from Fortran source code
kono
parents:
diff changeset
1802 This option will generate C prototypes from @code{BIND(C)} variable
kono
parents:
diff changeset
1803 declarations, types and procedure interfaces and writes them to
kono
parents:
diff changeset
1804 standard output. @code{ENUM} is not yet supported.
kono
parents:
diff changeset
1805
kono
parents:
diff changeset
1806 The generated prototypes may need inclusion of an appropriate header,
kono
parents:
diff changeset
1807 such as @code{<stdint.h>} or @code{<stdlib.h>}. For types which are
kono
parents:
diff changeset
1808 not specified using the appropriate kind from the @code{iso_c_binding}
kono
parents:
diff changeset
1809 module, a warning is added as a comment to the code.
kono
parents:
diff changeset
1810
kono
parents:
diff changeset
1811 For function pointers, a pointer to a function returning @code{int}
kono
parents:
diff changeset
1812 without an explicit argument list is generated.
kono
parents:
diff changeset
1813
kono
parents:
diff changeset
1814 Example of use:
kono
parents:
diff changeset
1815 @smallexample
kono
parents:
diff changeset
1816 $ gfortran -fc-prototypes -fsyntax-only foo.f90 > foo.h
kono
parents:
diff changeset
1817 @end smallexample
kono
parents:
diff changeset
1818 where the C code intended for interoperating with the Fortran code
kono
parents:
diff changeset
1819 then uses @code{#include "foo.h"}.
kono
parents:
diff changeset
1820 @end table
kono
parents:
diff changeset
1821
kono
parents:
diff changeset
1822 @node Environment Variables
kono
parents:
diff changeset
1823 @section Environment variables affecting @command{gfortran}
kono
parents:
diff changeset
1824 @cindex environment variable
kono
parents:
diff changeset
1825
kono
parents:
diff changeset
1826 @c man begin ENVIRONMENT
kono
parents:
diff changeset
1827
kono
parents:
diff changeset
1828 The @command{gfortran} compiler currently does not make use of any environment
kono
parents:
diff changeset
1829 variables to control its operation above and beyond those
kono
parents:
diff changeset
1830 that affect the operation of @command{gcc}.
kono
parents:
diff changeset
1831
kono
parents:
diff changeset
1832 @xref{Environment Variables,,Environment Variables Affecting GCC,
kono
parents:
diff changeset
1833 gcc,Using the GNU Compiler Collection (GCC)}, for information on environment
kono
parents:
diff changeset
1834 variables.
kono
parents:
diff changeset
1835
kono
parents:
diff changeset
1836 @xref{Runtime}, for environment variables that affect the
kono
parents:
diff changeset
1837 run-time behavior of programs compiled with GNU Fortran.
kono
parents:
diff changeset
1838 @c man end