configure: enable -Wunused-function by default

when INLINE is defined and mips is not being targeted. otherwise keep
the old --enable-extra-warnings behavior

Change-Id: Iba576edbe5fca03efa56ce99eee11f9cafc573ad
This commit is contained in:
James Zern 2016-02-01 20:52:16 -08:00
Родитель f74e04cc62
Коммит 771d276b27
1 изменённых файлов: 5 добавлений и 1 удалений

6
configure поставляемый
Просмотреть файл

@ -600,7 +600,11 @@ process_toolchain() {
;;
*) check_add_cflags -Wunused-but-set-variable ;;
esac
enabled extra_warnings || check_add_cflags -Wno-unused-function
if enabled mips || [ -z "${INLINE}" ]; then
enabled extra_warnings || check_add_cflags -Wno-unused-function
else
check_add_cflags -Wunused-function
fi
fi
if enabled icc; then