summaryrefslogtreecommitdiffstats
path: root/waftools/detections/compiler.py
diff options
context:
space:
mode:
Diffstat (limited to 'waftools/detections/compiler.py')
-rw-r--r--waftools/detections/compiler.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/waftools/detections/compiler.py b/waftools/detections/compiler.py
index 7cae75e4dc..d3e6b34455 100644
--- a/waftools/detections/compiler.py
+++ b/waftools/detections/compiler.py
@@ -35,12 +35,13 @@ def __add_generic_flags__(ctx):
"-Wdisabled-optimization",
"-Wstrict-prototypes",
"-Wno-format-zero-length",
- "-Werror=format-security"])
+ "-Werror=format-security",
+ "-Wno-redundant-decls"])
def __add_gcc_flags__(ctx):
ctx.env.CFLAGS += ["-Wall", "-Wundef", "-Wmissing-prototypes", "-Wshadow",
"-Wno-switch", "-Wparentheses", "-Wpointer-arith",
- "-Wredundant-decls", "-Wno-pointer-sign"]
+ "-Wno-pointer-sign"]
def __add_clang_flags__(ctx):
ctx.env.CFLAGS += ["-Wno-logical-op-parentheses", "-fcolor-diagnostics",