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.
This commit is contained in:
Stefan Schmidt 2014-04-14 12:23:25 +02:00
parent 09b46fa668
commit 02a5a6bfea
1 changed files with 2 additions and 1 deletions

View File

@ -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])