Commit b97a9487 authored by Dag Erling Smørgrav's avatar Dag Erling Smørgrav

Add --enable-debugging-symbols which enables debugging sysmbols and disables

inlining and builtins.


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@379 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent fcd1b244
......@@ -19,6 +19,9 @@ DEVELOPER_CFLAGS="-Wall -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prot
AC_ARG_ENABLE(developer-warnings,
AS_HELP_STRING([--enable-developer-warnings],[enable strict warnings (default is NO)]),
CFLAGS="${CFLAGS} ${DEVELOPER_CFLAGS}")
AC_ARG_ENABLE(debugging-symbols,
AS_HELP_STRING([--enable-debugging-symbols],[enable debugging symbols (default is NO)]),
CFLAGS="${CFLAGS} -g -fno-inline -fno-builtin")
AC_ARG_ENABLE(werror,
AS_HELP_STRING([--enable-werror],[use -Werror (default is NO)]),
CFLAGS="${CFLAGS} -Werror")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment