2 This patch brings over a few features from MirBSD:
4 If this option is not given, it's warned (depending
5 on environment variables). This is to catch errors
6 of misbuilt packages which override CFLAGS themselves.
8 Has the effect of -Wno-error if GCC_NO_WERROR is
9 set and not '0', a no-operation otherwise. This is
10 to be able to use -Werror in "make" but prevent
11 GNU autoconf generated configure scripts from
13 * Make -fno-strict-aliasing and -fno-delete-null-pointer-checks
14 the default for -O2/-Os, because they trigger gcc bugs
15 and can delete code with security implications.
17 This patch was authored by Thorsten Glaser <tg at mirbsd.de>
18 with copyright assignment to the FSF in effect.
23 /* Number of deferred options scanned for -include. */
24 static size_t include_cursor;
26 +/* Check if a port honours COPTS. */
27 +static int honour_copts = 0;
29 static void set_Wimplicit (int);
30 static void handle_OPT_d (const char *);
31 static void set_std_cxx98 (int);
33 enable_warning_as_error ("implicit-function-declaration", value, CL_C | CL_ObjC);
36 + case OPT_Werror_maybe_reset:
43 flag_exceptions = value;
46 + case OPT_fhonour_copts:
47 + if (c_language == clk_c) {
52 case OPT_fimplement_inlines:
53 flag_implement_inlines = value;
55 @@ -1209,6 +1226,47 @@
59 + if (c_language == clk_c) {
60 + char *ev = getenv ("GCC_HONOUR_COPTS");
64 + else if ((*ev == '0') || (*ev == '\0'))
66 + else if (*ev == '1')
68 + else if (*ev == '2')
70 + else if (*ev == 's')
73 + warning (0, "unknown GCC_HONOUR_COPTS value, assuming 1");
74 + evv = 1; /* maybe depend this on something like MIRBSD_NATIVE? */
77 + if (honour_copts == 0) {
78 + error ("someone does not honour COPTS at all in lenient mode");
80 + } else if (honour_copts != 1) {
81 + warning (0, "someone does not honour COPTS correctly, passed %d times",
84 + } else if (evv == 2) {
85 + if (honour_copts == 0) {
86 + error ("someone does not honour COPTS at all in strict mode");
88 + } else if (honour_copts != 1) {
89 + error ("someone does not honour COPTS correctly, passed %d times",
93 + } else if (evv == 0) {
94 + if (honour_copts != 1)
95 + inform (0, "someone does not honour COPTS correctly, passed %d times",
106 C ObjC RejectNegative Warning
107 This switch is deprecated; use -Werror=implicit-function-declaration instead
111 +; Documented in common.opt
114 C ObjC C++ ObjC++ Var(warn_float_equal) Warning
115 Warn if testing floating point numbers for equality
121 +C ObjC C++ ObjC++ RejectNegative
125 Assume normal C execution environment
130 Treat specified warning as error
134 +If environment variable GCC_NO_WERROR is set, act as -Wno-error
138 Print extra (possibly unwanted) warnings
140 Common Report Var(flag_guess_branch_prob) Optimization
141 Enable guessing of branch probabilities
144 +Common RejectNegative
146 ; Nonzero means ignore `#ident' directives. 0 means handle them.
147 ; Generate position-independent code for executables if possible
148 ; On SVR4 targets, it also controls whether or not to emit a
152 flag_schedule_insns_after_reload = opt2;
155 - flag_strict_aliasing = opt2;
156 - flag_strict_overflow = opt2;
157 flag_reorder_blocks = opt2;
158 flag_reorder_functions = opt2;
159 flag_tree_vrp = opt2;
162 /* -O3 optimizations. */
163 opt3 = (optimize >= 3);
164 + flag_strict_aliasing = opt3;
165 + flag_strict_overflow = opt3;
166 flag_predictive_commoning = opt3;
167 flag_inline_functions = opt3;
168 flag_unswitch_loops = opt3;
169 @@ -1601,6 +1601,17 @@
170 enable_warning_as_error (arg, value, lang_mask);
173 + case OPT_Werror_maybe_reset:
175 + char *ev = getenv ("GCC_NO_WERROR");
176 + if ((ev != NULL) && (*ev != '0'))
177 + warnings_are_errors = 0;
181 + case OPT_fhonour_copts:
184 case OPT_Wlarger_than_:
185 /* This form corresponds to -Wlarger-than-.
186 Kept for backward compatibility.
187 --- a/gcc/doc/cppopts.texi
188 +++ b/gcc/doc/cppopts.texi
190 Make all warnings into hard errors. Source code which triggers warnings
193 + at item -Werror-maybe-reset
194 + at opindex Werror-maybe-reset
195 +Act like @samp{-Wno-error} if the @env{GCC_NO_WERROR} environment
196 +variable is set to anything other than 0 or empty.
198 @item -Wsystem-headers
199 @opindex Wsystem-headers
200 Issue warnings for code in system headers. These are normally unhelpful
201 --- a/gcc/doc/invoke.texi
202 +++ b/gcc/doc/invoke.texi
204 -Wconversion -Wcoverage-mismatch -Wno-deprecated @gol
205 -Wno-deprecated-declarations -Wdisabled-optimization @gol
206 -Wno-div-by-zero -Wempty-body -Wenum-compare -Wno-endif-labels @gol
207 --Werror -Werror=* @gol
208 +-Werror -Werror=* -Werror-maybe-reset @gol
209 -Wfatal-errors -Wfloat-equal -Wformat -Wformat=2 @gol
210 -Wno-format-contains-nul -Wno-format-extra-args -Wformat-nonliteral @gol
211 -Wformat-security -Wformat-y2k @gol
212 @@ -4161,6 +4161,22 @@
213 @option{-Wall} and by @option{-pedantic}, which can be disabled with
214 @option{-Wno-pointer-sign}.
216 + at item -Werror-maybe-reset
217 + at opindex Werror-maybe-reset
218 +Act like @samp{-Wno-error} if the @env{GCC_NO_WERROR} environment
219 +variable is set to anything other than 0 or empty.
221 + at item -fhonour-copts
222 + at opindex fhonour-copts
223 +If @env{GCC_HONOUR_COPTS} is set to 1, abort if this option is not
224 +given at least once, and warn if it is given more than once.
225 +If @env{GCC_HONOUR_COPTS} is set to 2, abort if this option is not
227 +If @env{GCC_HONOUR_COPTS} is set to 0 or unset, warn if this option
228 +is not given exactly once.
229 +The warning is quelled if @env{GCC_HONOUR_COPTS} is set to @samp{s}.
230 +This flag and environment variable only affect the C language.
232 @item -Wstack-protector
233 @opindex Wstack-protector
234 @opindex Wno-stack-protector
235 @@ -5699,7 +5715,7 @@
236 second branch or a point immediately following it, depending on whether
237 the condition is known to be true or false.
239 -Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
240 +Enabled at levels @option{-O3}.
242 @item -fsplit-wide-types
243 @opindex fsplit-wide-types
244 --- a/gcc/java/jvspec.c
245 +++ b/gcc/java/jvspec.c
247 class name. Append dummy `.c' that can be stripped by set_input so %b
249 set_input (concat (main_class_name, "main.c", NULL));
250 + putenv ("GCC_HONOUR_COPTS=s"); /* XXX hack! */
251 err = do_spec (jvgenmain_spec);