From 2e0faa126676c35ae606c1d727f1d7ebe4ef76d5 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Tue, 20 Apr 2010 17:04:35 +0200 Subject: [PATCH] Compile optimized binaries with debug symbols (they'll be moved by rpm to the -debuginfo package) --- configure.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.in b/configure.in index a1f20c4..ff4edb1 100644 --- a/configure.in +++ b/configure.in @@ -15,7 +15,7 @@ AC_ARG_WITH(optimize,[ --with-optimize compile with optimizing], [ AC_MSG_CHECKING(for optimizing) if test "$withval" != "no"; then - CXXFLAGS=" -O2 " + CXXFLAGS=" -g -O2 " AC_MSG_RESULT(yes) else CXXFLAGS=" -g -O0 " -- 1.7.1