From: Mark Slee Date: Tue, 20 Feb 2007 20:57:36 +0000 (+0000) Subject: Include debug symbols in thrift builds by default X-Git-Tag: 0.2.0~1470 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=3cd75f543cae5fb5728e09340668ebe1885bfcf0;p=common%2Fthrift.git 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 --- 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)