You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by js...@apache.org on 2011/03/21 08:42:13 UTC

svn commit: r1083695 - /tuscany/sca-cpp/trunk/configure.ac

Author: jsdelfino
Date: Mon Mar 21 07:42:12 2011
New Revision: 1083695

URL: http://svn.apache.org/viewvc?rev=1083695&view=rev
Log:
Add debug support to optimized build and downgrade GCC optimizations from O3 to O2.

Modified:
    tuscany/sca-cpp/trunk/configure.ac

Modified: tuscany/sca-cpp/trunk/configure.ac
URL: http://svn.apache.org/viewvc/tuscany/sca-cpp/trunk/configure.ac?rev=1083695&r1=1083694&r2=1083695&view=diff
==============================================================================
--- tuscany/sca-cpp/trunk/configure.ac (original)
+++ tuscany/sca-cpp/trunk/configure.ac Mon Mar 21 07:42:12 2011
@@ -110,7 +110,7 @@ if test "${want_maintainer_mode}" = "tru
   AM_CONDITIONAL([WANT_MAINTAINER_MODE], true)
   AC_DEFINE([WANT_MAINTAINER_MODE], 1, [compile with debugging and compile-time warnings])
 else
-  cxxflags="${cxxflags} -O3 -std=c++0x -fmessage-length=0"
+  cxxflags="${cxxflags} -g -O2 -std=c++0x -fmessage-length=0"
   AM_CONDITIONAL([WANT_MAINTAINER_MODE], false)
 fi