1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
##*****************************************************************************
## $Id$
##*****************************************************************************
# AUTHOR:
# Chris Dunlap <cdunlap@llnl.gov>
#
# SYNOPSIS:
# AC_DEBUG
#
# DESCRIPTION:
# Adds support for the "--enable-debug" configure script option.
# If CFLAGS are not passed to configure, they will be set based
# on whether debugging has been enabled. Also, the NDEBUG macro
# (used by assert) will be set accordingly.
#
# WARNINGS:
# This macro must be placed after AC_PROG_CC or equivalent.
##*****************************************************************************
AC_DEFUN([AC_DEBUG],
[
AC_MSG_CHECKING([whether debugging is enabled])
AC_ARG_ENABLE([debug],
AS_HELP_STRING([--enable-debug],[enable debugging code for development]),
[ case "$enableval" in
yes) ac_debug=yes ;;
no) ac_debug=no ;;
*) AC_MSG_RESULT([doh!])
AC_MSG_ERROR([bad value "$enableval" for --enable-debug]) ;;
esac
]
)
if test "$ac_debug" = yes; then
if test -z "$ac_save_CFLAGS"; then
test "$ac_cv_prog_cc_g" = yes && CFLAGS="-g"
test "$GCC" = yes && CFLAGS="$CFLAGS -Wall"
fi
else
if test -z "$ac_save_CFLAGS"; then
test "$GCC" = yes && CFLAGS="-O3 -Wall -fno-strict-aliasing" || CFLAGS="-O3"
# Do not strip binaries on Mac OS X.
#
if echo "$host" | grep -v darwin; then
LDFLAGS="${LDFLAGS--s}"
fi
fi
AC_DEFINE([NDEBUG], [1],
[Define to 1 if you are building a production release.])
fi
AC_MSG_RESULT([${ac_debug=no}])
])
|