From: Vincent Bernat Date: Thu, 6 Mar 2014 16:20:09 +0000 (+0100) Subject: build: use -fno-omit-frame-pointer for ease of debug X-Git-Tag: 0.7.8~35 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3ff9f162a184f7a1455d136812e3a5f11446468d;p=thirdparty%2Flldpd.git build: use -fno-omit-frame-pointer for ease of debug We are not a performance sensitive program and this helps debugging in many situations. --- diff --git a/configure.ac b/configure.ac index dcaaaa60..eefab1d6 100644 --- a/configure.ac +++ b/configure.ac @@ -74,6 +74,7 @@ AX_CFLAGS_GCC_OPTION([-Wfatal-errors]) AX_CFLAGS_GCC_OPTION([-Wcast-align]) AX_CFLAGS_GCC_OPTION([-Winline]) AX_CFLAGS_GCC_OPTION([-fstack-protector]) +AX_CFLAGS_GCC_OPTION([-fno-omit-frame-pointer]) AX_CFLAGS_GCC_OPTION([-D_FORTIFY_SOURCE=2]) AX_CFLAGS_GCC_OPTION([-Wno-unused-parameter]) AX_CFLAGS_GCC_OPTION([-Wno-missing-field-initializers])