(svn r19805) -Codechange: disable warnings about unused but set variables when building with asserts disabled

This commit is contained in:
smatz 2010-05-13 05:29:25 +00:00
parent 7e1808ce21
commit b229acce25
1 changed files with 5 additions and 0 deletions

View File

@ -1163,6 +1163,11 @@ make_compiler_cflags() {
if [ $enable_assert -eq 0 ]; then
# Do not warn about unused variables when building without asserts
flags="$flags -Wno-unused-variable"
if [ $cc_version -ge 46 ]; then
# GCC 4.6 gives more warnings, disable them too
flags="$flags -Wno-unused-but-set-variable"
flags="$flags -Wno-unused-but-set-parameter"
fi
fi
if [ $cc_version -ge 40 ]; then