diff options
| author | Michael Biebl <biebl@debian.org> | 2023-02-10 11:50:34 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2023-02-10 11:50:34 +0100 |
| commit | 1372848511cb896b80b51ed1a3e9606bd9816631 (patch) | |
| tree | 674792b9385bdef935988894b45f06b2af39f88c /m4 | |
| parent | 40ec077ea305994c1fc2130add6787ca0c73e2c6 (diff) | |
New upstream version 1.42.0 upstream/1.42.0
Diffstat (limited to 'm4')
| -rw-r--r-- | m4/compiler_options.m4 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/m4/compiler_options.m4 b/m4/compiler_options.m4 index b2e9d80e..843eb7b4 100644 --- a/m4/compiler_options.m4 +++ b/m4/compiler_options.m4 @@ -88,26 +88,35 @@ if test "$GCC" = "yes" -a "$set_more_warnings" != "no"; then for option in \ $_CFLAGS_MORE_WARNINGS_DISABLE_LTO \ + -Wall \ -Wextra \ + -Wcast-align=strict \ -Wdeclaration-after-statement \ -Wfloat-equal \ -Wformat-nonliteral \ -Wformat-security \ -Wimplicit-function-declaration \ + -Wimplicit-int \ -Winit-self \ + -Wint-conversion \ -Wlogical-op \ -Wmissing-declarations \ -Wmissing-include-dirs \ -Wmissing-prototypes \ + -Wold-style-definition \ + -Wparentheses-equality \ -Wpointer-arith \ -Wshadow \ -Wshift-negative-value \ -Wstrict-prototypes \ + -Wtypedef-redefinition \ -Wundef \ + -Wunknown-attributes \ -Wvla \ -Wno-duplicate-decl-specifier \ -Wno-format-truncation \ -Wno-format-y2k \ + -Wno-gnu-variable-sized-type-not-at-end \ -Wno-missing-field-initializers \ -Wno-pragmas \ -Wno-sign-compare \ |