Silenced libjte compiler warnings by -Wno-strict-aliasing

This commit is contained in:
Thomas Schmitt 2015-06-24 16:27:08 +00:00
parent 37e5ca6b38
commit 4bbddcf823
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ if test x$enable_debug != xyes; then
CFLAGS="-DNDEBUG $CFLAGS" CFLAGS="-DNDEBUG $CFLAGS"
else else
if test x$GCC = xyes; then if test x$GCC = xyes; then
CFLAGS="-g -pedantic -Wall -Wextra -Wno-unused-parameter -Wno-char-subscripts $CFLAGS" CFLAGS="-g -pedantic -Wall -Wextra -Wno-unused-parameter -Wno-char-subscripts -Wno-strict-aliasing $CFLAGS"
fi fi
CFLAGS="-DDEBUG $CFLAGS" CFLAGS="-DDEBUG $CFLAGS"
fi fi