From 37cc4336286bd5ba8fd7611e91dd197469a2e9d2 Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Fri, 12 Aug 2016 14:41:06 +0200 Subject: Silence newer toolchains a bit Newer toolchains (both gcc and libc related) add a lot of warnings. While these can be useful and correct, cleaning them up woult be a lot of work and isn't likely to actually happen any time soon. Change-Id: I8c4e8cd3dc92f9afa4bf003c63ca65e895e3ef00 --- tools/configure | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tools/configure b/tools/configure index 4c742f500f..4910dcb000 100755 --- a/tools/configure +++ b/tools/configure @@ -237,6 +237,9 @@ simcc () { GCCOPTS=`echo $CCOPTS | sed -e s/-ffreestanding// -e s/-nostdlib// -e s/-Wundef//` GCCOPTS="$GCCOPTS -fno-builtin -g" + # Some linux setups like to warn about unused results. They are correct, + # but cleaning this up is a lot of work. + GCCOPTS="$GCCOPTS -Wno-unused-result" GCCOPTIMIZE='' LDOPTS="$LDOPTS -lm" # button-sdl.c uses sqrt() sigaltstack="" @@ -4189,6 +4192,12 @@ else GCCOPTS="$GCCOPTS -Wno-override-init" fi + if test "$gccnum" -ge "601"; then + # gcc 6 adds a lot of warnings that while useful are too time-consuming + # to clean up right away + GCCOPTS="$GCCOPTS -Wno-shift-negative-value -Wno-unused-const-variable -Wno-nonnull-compare -Wno-tautological-compare" + fi + case $prefix in ""|"$CROSS_COMPILE") # simulator -- cgit v1.2.3