blob: 5fcbfadcdb367a6cd336cff644fafb0f54fc2ca0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
; Options for the Algol 68 front end.
; Copyright (C) 2025 Free Software Foundation, Inc.
;
; GCC is free software; you can redistribute it and/or modify it under
; the terms of the GNU General Public License as published by the Free
; Software Foundation; either version 3, or (at your option) any later
; version.
;
; GCC is distributed in the hope that it will be useful, but WITHOUT ANY
; WARRANTY; without even the implied warranty of MERCHANTABILITY or
; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
; for more details.
;
; You should have received a copy of the GNU General Public License
; along with GCC; see the file COPYING3. If not see
; <http://www.gnu.org/licenses/>.
; See the GCC internals manual for a description of this file's format.
; Please try to keep this file in ASCII collating order.
; Describes command-line options used by this frontend
Language
Algol68
I
Algol68 Joined Separate
; Documented in c-family/c.opt
Wextensions
Algol68 Warning Var(warn_algol68_extensions) LangEnabledBy(Algol68, Wextra)
Warn for usage of non-portable extensions of Algol 68.
Wvoiding
Algol68 Warning Var(warn_algol68_voiding) LangEnabledBy(Algol68, Wextra)
Warn when voiding occurs.
Wextra
Algol68 Warning
; Documented in common.opt
Wscope
Algol68 Warning Var(warn_algol68_scope)
Warn for potential name scope violations.
Enum
Name(warn_hidden_declarations_level) Type(int) UnknownError(argument %qs to %<-Whidden-declaration%> not recognized)
EnumValue
Enum(warn_hidden_declarations_level) String(none) Value(0)
EnumValue
Enum(warn_hidden_declarations_level) String(prelude) Value(1)
EnumValue
Enum(warn_hidden_declarations_level) String(all) Value(2)
Whidden-declarations
Algol68 Alias(Whidden-declarations=,prelude,none)
Warn about hidden declarations in inner scopes.
Whidden-declarations=
Algol68 Warning Var(warn_algol68_hidden_declarations) Enum(warn_hidden_declarations_level) Joined RejectNegative LangEnabledBy(Algol68,Wall)
-Whidden-declarations=[none|prelude|all] Warn about declarations hidden in inner scopes.
fbrackets
Algol68 Var(flag_brackets)
-fbrackets Consider [ .. ] and { .. } as being equivalent to ( .. ).
fassert
Algol68 Var(flag_assert)
Generate code for assert contracts.
fcheck=
Algol68 RejectNegative JoinedOrMissing
-fcheck=[...] Specify which runtime checks are to be performed.
fa68-dump-modes
Algol68 Var(flag_a68_dump_modes)
Dump Algol 68 modes after parsing.
fa68-dump-ast
Algol68 Var(flag_a68_dump_ast)
Dump Algol 68 parse tree after parsing.
fa68-dump-module-interfaces
Algol68 Var(flag_a68_dump_moif)
Dump the interfaces of module definitions in the compiled packet.
static-libga68
Driver
Link the GNU Algol run-time library statically in the compilation.
shared-libga68
Driver
Link the GNU Algol 68 run-time library dynamically in the compilation.
std=algol68
Algol68
Compile strict Algol 68 as defined by the Revised Report
std=gnu68
Algol68
Accept GNU extensions to Algol 68
; Stropping regimes.
fstropping=
Algol68 Joined RejectNegative Enum(stropping_regime) Var(flag_stropping_regime)
-fstropping=[upper|supper] Stropping regime to expect in Algol 68 programs.
Enum
Name(stropping_regime) Type(int) UnknownError(unknown stropping_regime setting %qs)
EnumValue
Enum(stropping_regime) String(upper) Value(0)
EnumValue
Enum(stropping_regime) String(supper) Value(1)
; This comment is to ensure we retain the blank line above.
|