Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
xfwm4
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xfce
xfwm4
Commits
a221930a
Commit
a221930a
authored
21 years ago
by
Benedikt Meurer
Browse files
Options
Downloads
Patches
Plain Diff
Added --enable-gcov to compile xfce with support for coverage tests. Very
useful. (Old svn revision: 11602)
parent
7480bba6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
m4/debug.m4
+21
-2
21 additions, 2 deletions
m4/debug.m4
with
21 additions
and
2 deletions
m4/debug.m4
+
21
−
2
View file @
a221930a
...
...
@@ -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],
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment