Skip to content
Snippets Groups Projects
Commit a221930a authored by Benedikt Meurer's avatar Benedikt Meurer
Browse files

Added --enable-gcov to compile xfce with support for coverage tests. Very

useful.


(Old svn revision: 11602)
parent 7480bba6
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@ dnl
AC_DEFUN([BM_DEBUG_SUPPORT],
[
dnl # --enable-debug
AC_ARG_ENABLE([debug],
AC_HELP_STRING([--enable-debug[=yes|no|full]], [Build with debugging support])
AC_HELP_STRING([--disable-debug], [Include no debugging support [default]]),
......@@ -18,16 +19,17 @@ AC_HELP_STRING([--disable-debug], [Include no debugging support [default]]),
AC_DEFINE(DEBUG, 1, Define for debugging support)
if test x"$enable_debug" = x"full"; then
AC_DEFINE(DEBUG_TRACE, 1, Define for tracing support)
CFLAGS="$CFLAGS -g3 -Wall -Werror -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED"
CFLAGS="$CFLAGS -g3 -Wall -Werror -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DXFCE_DISABLE_DEPRECATED"
AC_MSG_RESULT([full])
else
CFLAGS="$CFLAGS -g -Wall -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED"
CFLAGS="$CFLAGS -g -Wall -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED -DXFCE_DISABLE_DEPRECATED"
AC_MSG_RESULT([yes])
fi
else
AC_MSG_RESULT([no])
fi
dnl # --enable-profiling
AC_ARG_ENABLE([profiling],
AC_HELP_STRING([--enable-profiling],
[Generate extra code to write profile information])
......@@ -43,6 +45,23 @@ AC_HELP_STRING([--disable-profiling],
AC_MSG_RESULT([no])
fi
dnl # --enable-gcov
AC_ARG_ENABLE([gcov],
AC_HELP_STRING([--enable-gcov],
[compile with coverage profiling instrumentation (gcc only)])
AC_HELP_STRING([--disable-gcov],
[do not generate coverage profiling instrumentation (default)]),
[], [enable_gcov=no])
AC_MSG_CHECKING([whether to compile with coverage profiling instrumentation])
if test x"$enable_gcov" != x"no"; then
CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage"
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
dnl # --enable-asserts
AC_ARG_ENABLE([asserts],
AC_HELP_STRING([--enable-asserts], [Enable assert statements (default)])
AC_HELP_STRING([--disable-asserts],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment