From: Ken Hornstein Date: Fri, 6 Dec 2013 03:56:57 +0000 (-0500) Subject: Switch to default of -g so hopefully we can get something useful from the X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/a69194ed1e13014564127e36cca8ba373a9853f4?ds=sidebyside;hp=--cc Switch to default of -g so hopefully we can get something useful from the FreeBSD buildbot valgrind output. --- a69194ed1e13014564127e36cca8ba373a9853f4 diff --git a/configure.ac b/configure.ac index a8072050..c9cbb53a 100644 --- a/configure.ac +++ b/configure.ac @@ -161,7 +161,8 @@ if test -n "$auto_cflags"; then esac fi if test -n "$GCC"; then - test -z "$CFLAGS" && CFLAGS="$nmh_gcc_warnflags -O2" || CFLAGS="$CFLAGS $nmh_gcc_warnflags -O2" +# test -z "$CFLAGS" && CFLAGS="$nmh_gcc_warnflags -O2" || CFLAGS="$CFLAGS $nmh_gcc_warnflags -O2" + test -z "$CFLAGS" && CFLAGS="$nmh_gcc_warnflags -g" || CFLAGS="$CFLAGS $nmh_gcc_warnflags -g" else test -z "$CFLAGS" && CFLAGS=-O || CFLAGS="$CFLAGS -O" fi