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:
38 + char *ev = getenv ("GCC_NO_WERROR");
39 + if ((ev != NULL) && (*ev != '0'))
40 + cpp_opts->warnings_are_errors = 0;
48 flag_exceptions = value;
51 + case OPT_fhonour_copts:
52 + if (c_language == clk_c) {
57 case OPT_fimplement_inlines:
58 flag_implement_inlines = value;
60 @@ -1209,6 +1226,47 @@
64 + if (c_language == clk_c) {
65 + char *ev = getenv ("GCC_HONOUR_COPTS");
69 + else if ((*ev == '0') || (*ev == '\0'))
71 + else if (*ev == '1')
73 + else if (*ev == '2')
75 + else if (*ev == 's')
78 + warning (0, "unknown GCC_HONOUR_COPTS value, assuming 1");
79 + evv = 1; /* maybe depend this on something like MIRBSD_NATIVE? */
82 + if (honour_copts == 0) {
83 + error ("someone does not honour COPTS at all in lenient mode");
85 + } else if (honour_copts != 1) {
86 + warning (0, "someone does not honour COPTS correctly, passed %d times",
89 + } else if (evv == 2) {
90 + if (honour_copts == 0) {
91 + error ("someone does not honour COPTS at all in strict mode");
93 + } else if (honour_copts != 1) {
94 + error ("someone does not honour COPTS correctly, passed %d times",
98 + } else if (evv == 0) {
99 + if (honour_copts != 1)
100 + inform (0, "someone does not honour COPTS correctly, passed %d times",
111 C ObjC RejectNegative Warning
112 This switch is deprecated; use -Werror=implicit-function-declaration instead
116 +; Documented in common.opt
119 C ObjC C++ ObjC++ Var(warn_float_equal) Warning
120 Warn if testing floating point numbers for equality
126 +C ObjC C++ ObjC++ RejectNegative
130 Assume normal C execution environment
135 Treat specified warning as error
139 +If environment variable GCC_NO_WERROR is set, act as -Wno-error
143 Print extra (possibly unwanted) warnings
145 Common Report Var(flag_guess_branch_prob) Optimization
146 Enable guessing of branch probabilities
149 +Common RejectNegative
151 ; Nonzero means ignore `#ident' directives. 0 means handle them.
152 ; Generate position-independent code for executables if possible
153 ; On SVR4 targets, it also controls whether or not to emit a
157 flag_schedule_insns_after_reload = opt2;
160 - flag_strict_aliasing = opt2;
161 - flag_strict_overflow = opt2;
162 - flag_delete_null_pointer_checks = opt2;
163 flag_reorder_blocks = opt2;
164 flag_reorder_functions = opt2;
165 flag_tree_vrp = opt2;
168 /* -O3 optimizations. */
169 opt3 = (optimize >= 3);
170 + flag_strict_aliasing = opt3;
171 + flag_strict_overflow = opt3;
172 + flag_delete_null_pointer_checks = opt3;
173 flag_predictive_commoning = opt3;
174 flag_inline_functions = opt3;
175 flag_unswitch_loops = opt3;
176 @@ -1601,6 +1601,17 @@
177 enable_warning_as_error (arg, value, lang_mask);
180 + case OPT_Werror_maybe_reset:
182 + char *ev = getenv ("GCC_NO_WERROR");
183 + if ((ev != NULL) && (*ev != '0'))
184 + warnings_are_errors = 0;
188 + case OPT_fhonour_copts:
194 --- a/gcc/doc/cppopts.texi
195 +++ b/gcc/doc/cppopts.texi
197 Make all warnings into hard errors. Source code which triggers warnings
200 + at item -Werror-maybe-reset
201 + at opindex Werror-maybe-reset
202 +Act like @samp{-Wno-error} if the @env{GCC_NO_WERROR} environment
203 +variable is set to anything other than 0 or empty.
205 @item -Wsystem-headers
206 @opindex Wsystem-headers
207 Issue warnings for code in system headers. These are normally unhelpful
208 --- a/gcc/doc/invoke.texi
209 +++ b/gcc/doc/invoke.texi
211 -Wconversion -Wcoverage-mismatch -Wno-deprecated @gol
212 -Wno-deprecated-declarations -Wdisabled-optimization @gol
213 -Wno-div-by-zero -Wempty-body -Wenum-compare -Wno-endif-labels @gol
214 --Werror -Werror=* @gol
215 +-Werror -Werror=* -Werror-maybe-reset @gol
216 -Wfatal-errors -Wfloat-equal -Wformat -Wformat=2 @gol
217 -Wno-format-contains-nul -Wno-format-extra-args -Wformat-nonliteral @gol
218 -Wformat-security -Wformat-y2k @gol
219 @@ -4161,6 +4161,22 @@
220 @option{-Wall} and by @option{-pedantic}, which can be disabled with
221 @option{-Wno-pointer-sign}.
223 + at item -Werror-maybe-reset
224 + at opindex Werror-maybe-reset
225 +Act like @samp{-Wno-error} if the @env{GCC_NO_WERROR} environment
226 +variable is set to anything other than 0 or empty.
228 + at item -fhonour-copts
229 + at opindex fhonour-copts
230 +If @env{GCC_HONOUR_COPTS} is set to 1, abort if this option is not
231 +given at least once, and warn if it is given more than once.
232 +If @env{GCC_HONOUR_COPTS} is set to 2, abort if this option is not
234 +If @env{GCC_HONOUR_COPTS} is set to 0 or unset, warn if this option
235 +is not given exactly once.
236 +The warning is quelled if @env{GCC_HONOUR_COPTS} is set to @samp{s}.
237 +This flag and environment variable only affect the C language.
239 @item -Wstack-protector
240 @opindex Wstack-protector
241 @opindex Wno-stack-protector
242 @@ -5699,7 +5715,7 @@
243 second branch or a point immediately following it, depending on whether
244 the condition is known to be true or false.
246 -Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
247 +Enabled at levels @option{-O3}.
249 @item -fsplit-wide-types
250 @opindex fsplit-wide-types
251 @@ -5844,7 +5860,7 @@
252 @option{-fno-delete-null-pointer-checks} to disable this optimization
253 for programs which depend on that behavior.
255 -Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
256 +Enabled at levels @option{-O3}.
258 @item -fexpensive-optimizations
259 @opindex fexpensive-optimizations
260 --- a/gcc/java/jvspec.c
261 +++ b/gcc/java/jvspec.c
263 class name. Append dummy `.c' that can be stripped by set_input so %b
265 set_input (concat (main_class_name, "main.c", NULL));
266 + putenv ("GCC_HONOUR_COPTS=s"); /* XXX hack! */
267 err = do_spec (jvgenmain_spec);