From: Taylor R Campbell Date: Wed, 7 Nov 2018 03:08:47 +0000 (+0000) Subject: Make the C compiler warnings that we subscribe to fatal. X-Git-Tag: mit-scheme-pucked-10.1.2~16^2~116^2~39 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=ab964b25bfeadb49bc9257a7b901d6235b227c4f;p=mit-scheme.git Make the C compiler warnings that we subscribe to fatal. --- diff --git a/src/microcode/configure.ac b/src/microcode/configure.ac index 337c9ea96..0ad78b8c0 100644 --- a/src/microcode/configure.ac +++ b/src/microcode/configure.ac @@ -208,7 +208,7 @@ if test ${GCC} = yes; then CFLAGS="-O0 -g -DENABLE_DEBUGGING_TOOLS ${CFLAGS}" LDFLAGS="${LDFLAGS} -g" fi - CFLAGS="-Wall -Wundef -Wpointer-arith -Winline ${CFLAGS}" + CFLAGS="-Wall -Werror -Wundef -Wpointer-arith -Winline ${CFLAGS}" CFLAGS="-Wstrict-prototypes -Wnested-externs -Wredundant-decls ${CFLAGS}" AC_MSG_CHECKING([for GCC>=4])