Added -Wno-char-subscripts to CFLAGS

This commit is contained in:
Thomas Schmitt 2014-02-05 19:11:50 +00:00
parent ed5f067e89
commit afd57ced6b
4 changed files with 4 additions and 4 deletions

View File

@ -408,7 +408,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 $CFLAGS" CFLAGS="-g -pedantic -Wall -Wextra -Wno-unused-parameter -Wno-char-subscripts $CFLAGS"
fi fi
CFLAGS="-DDEBUG $CFLAGS" CFLAGS="-DDEBUG $CFLAGS"
fi fi

View File

@ -22,7 +22,7 @@ def_opts="-DXorriso_allow_external_filterS -DXorriso_allow_launch_frontenD"
largefile_opts="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1" largefile_opts="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1"
do_strip=0 do_strip=0
static_opts= static_opts=
warn_opts="-Wall -Wextra -Wno-unused-parameter" warn_opts="-Wall -Wextra -Wno-unused-parameter -Wno-char-subscripts"
# warn_opts="-Wall -Wsign-compare" # warn_opts="-Wall -Wsign-compare"
nglibisofs=1 nglibisofs=1
def_have="-DHAVE_STDINT_H" def_have="-DHAVE_STDINT_H"

View File

@ -137,7 +137,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 $CFLAGS" CFLAGS="-g -pedantic -Wall -Wextra -Wno-unused-parameter -Wno-char-subscripts $CFLAGS"
fi fi
CFLAGS="-DDEBUG $CFLAGS" CFLAGS="-DDEBUG $CFLAGS"
fi fi

View File

@ -1 +1 @@
#define Xorriso_timestamP "2014.01.23.200641" #define Xorriso_timestamP "2014.02.05.191021"