From 02a5a6bfea50e722bbb71b9cd813d32e453517ae Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Mon, 14 Apr 2014 12:23:25 +0200 Subject: [PATCH] build: Temporary disable debug log output during coverage Due to the amount of generated debug messages from eolion generation we end up with 3.8GB log files for elm builds when efl was build with coverage enabled. Temporary disable this until eolion is fixed and we can turn it on again. --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index bd2b8fae33..815094988b 100644 --- a/configure.ac +++ b/configure.ac @@ -322,7 +322,8 @@ if test "${want_coverage}" = "yes" ; then if test "x${prefer_assert}" = "xno"; then EFL_COV_CFLAGS="${EFL_COV_CFLAGS} -DNDEBUG" else - EFL_COV_CFLAGS="${EFL_COV_CFLAGS} -g -O0 -DDEBUG" + # Add -DDEBUG again once eolian is fixed + EFL_COV_CFLAGS="${EFL_COV_CFLAGS} -g -O0" fi else AC_MSG_ERROR([lcov is not found])