You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@apache.org on 2008/11/29 21:28:10 UTC

svn commit: r721709 - /xalan/c/trunk/runConfigure

Author: dbertoni
Date: Sat Nov 29 12:28:09 2008
New Revision: 721709

URL: http://svn.apache.org/viewvc?rev=721709&view=rev
Log:
Reduced optimization level on PA-RISC because of excessive memory usage.

Modified:
    xalan/c/trunk/runConfigure

Modified: xalan/c/trunk/runConfigure
URL: http://svn.apache.org/viewvc/xalan/c/trunk/runConfigure?rev=721709&r1=721708&r2=721709&view=diff
==============================================================================
--- xalan/c/trunk/runConfigure (original)
+++ xalan/c/trunk/runConfigure Sat Nov 29 12:28:09 2008
@@ -365,7 +365,11 @@
     elif test $platform = "linux"; then
         debugflag="-O3 -DNDEBUG";
     elif test $cppcompiler = "aCC"; then
-        debugflag="+O3 -DNDEBUG";
+        if test $platform = "hp-11-ia64"; then
+           debugflag="+O3 -DNDEBUG";
+        else
+           debugflag="+O2 -DNDEBUG";
+        fi
     else
         debugflag="-O -DNDEBUG";
     fi



---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org