summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2014-04-14 12:23:25 +0200
committerStefan Schmidt <s.schmidt@samsung.com>2014-04-14 12:23:25 +0200
commit02a5a6bfea50e722bbb71b9cd813d32e453517ae (patch)
tree9b1eb28743d2da015108e04a22ee0fe59fe4df73
parent09b46fa668f253763351c29d5b20838a8d1f246c (diff)
downloadefl-02a5a6bfea50e722bbb71b9cd813d32e453517ae.tar.gz
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.
-rw-r--r--configure.ac3
1 files changed, 2 insertions, 1 deletions
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])