From 3cd75f543cae5fb5728e09340668ebe1885bfcf0 Mon Sep 17 00:00:00 2001 From: Mark Slee Date: Tue, 20 Feb 2007 20:57:36 +0000 Subject: [PATCH] Include debug symbols in thrift builds by default Summary: Too irritating not having stack traces when these go down. Sack up and include stack traces always... bigger binary but whatever. Reviewed By: aditya git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665002 13f79535-47bb-0310-9956-ffa450edef68 --- lib/cpp/configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cpp/configure.ac b/lib/cpp/configure.ac index d0fc7c14..1f2763c8 100644 --- a/lib/cpp/configure.ac +++ b/lib/cpp/configure.ac @@ -100,8 +100,8 @@ AC_PROG_INSTALL AC_PROG_LIBTOOL -CFLAGS="-O2" +CFLAGS="-g -O2" -CXXFLAGS="-O2" +CXXFLAGS="-g -O2" AC_OUTPUT(Makefile) -- 2.17.1