$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r75795 - trunk/tools/build/v2/engine
From: kbelco_at_[hidden]
Date: 2011-12-03 19:08:11
Author: noel_belcourt
Date: 2011-12-03 19:08:10 EST (Sat, 03 Dec 2011)
New Revision: 75795
URL: http://svn.boost.org/trac/boost/changeset/75795
Log:
Reduce optimization using Sun compiler when building
bjam (remove -fast and replace -xO4 with -xO3).  Compiler 
is unable to handle Steve's recent code refactor.
Text files modified: 
   trunk/tools/build/v2/engine/build.jam |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/tools/build/v2/engine/build.jam
==============================================================================
--- trunk/tools/build/v2/engine/build.jam	(original)
+++ trunk/tools/build/v2/engine/build.jam	2011-12-03 19:08:10 EST (Sat, 03 Dec 2011)
@@ -317,14 +317,14 @@
 ## Sun Workshop 6 C++
 toolset sun cc : "-o " : -D
     :
-    [ opt --release : -s -fast -xO4 ]
+    [ opt --release : -s -xO3 ]
     [ opt --debug : -g ]
     -I$(--python-include) -I$(--extra-include)
     : -L$(--python-lib[1]) -l$(--python-lib[2]) ;
 ## Sun Workshop 6 C++ (old alias)
 toolset sunpro cc : "-o " : -D
     :
-    [ opt --release : -s -fast -xO4 ]
+    [ opt --release : -s -xO3 ]
     [ opt --debug : -g ]
     -I$(--python-include) -I$(--extra-include)
     : -L$(--python-lib[1]) -l$(--python-lib[2]) ;