From 86523c75d780a0f14d0e5093c6e3c9f053c3752c Mon Sep 17 00:00:00 2001 From: Igal Date: Sat, 19 Aug 2017 10:26:10 -0700 Subject: [PATCH] removed cflag -Werror This solves #128 gcc7 has a compatibility problem with python and issues a warning as described at https://bugzilla.redhat.com/show_bug.cgi?id=1473425 Setting the `-Werror` flag treats all warnings as errors, which fails the build. IMHO it is better to remove the flag from regular builds. Advanced users can add it if they choose to. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e7f87331..e35c41e6 100644 --- a/configure.ac +++ b/configure.ac @@ -115,7 +115,7 @@ AC_SUBST(CORE_STATE_DIR) # default compiler flags # _GNU_SOURCE is defined to get c99 defines for lrint() -CFLAGS="$CFLAGS -O3 -Werror -Wall -D_GNU_SOURCE" +CFLAGS="$CFLAGS -O3 -Wall -D_GNU_SOURCE" # debug flags #CFLAGS="$CFLAGS -g -Werror -Wall -D_GNU_SOURCE"