ref: 0dfede2e7937586fff529916dc2ea0a93dc5b669
parent: 302e425453e35123cefab8200b976fc6dbf8fd39
author: Jim Bankoski <jimbankoski@google.com>
date: Fri Jul 15 11:26:20 EDT 2016
configure: turn on all unused warnings by default Change-Id: I7f6cb446cd3ac57ac39835cf065d9501a66acd5b
--- a/configure
+++ b/configure
@@ -577,7 +577,7 @@
check_add_cflags -Wvla
check_add_cflags -Wimplicit-function-declaration
check_add_cflags -Wuninitialized
- check_add_cflags -Wunused-variable
+ check_add_cflags -Wunused
case ${CC} in
*clang*)
# libvpx and/or clang have issues with aliasing:
@@ -585,12 +585,9 @@
# work around them until they are fixed
check_add_cflags -fno-strict-aliasing
;;
- *) check_add_cflags -Wunused-but-set-variable ;;
esac
if enabled mips || [ -z "${INLINE}" ]; then
enabled extra_warnings || check_add_cflags -Wno-unused-function
- else
- check_add_cflags -Wunused-function
fi
fi