$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r59661 - trunk/tools/build/v2/tools
From: kbelco_at_[hidden]
Date: 2010-02-12 12:09:33
Author: noel_belcourt
Date: 2010-02-12 12:09:32 EST (Fri, 12 Feb 2010)
New Revision: 59661
URL: http://svn.boost.org/trac/boost/changeset/59661
Log:
Replace -g with -gopt to reduce quantity of debug info.
Text files modified: 
   trunk/tools/build/v2/tools/pgi.jam |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/tools/build/v2/tools/pgi.jam
==============================================================================
--- trunk/tools/build/v2/tools/pgi.jam	(original)
+++ trunk/tools/build/v2/tools/pgi.jam	2010-02-12 12:09:32 EST (Fri, 12 Feb 2010)
@@ -58,7 +58,7 @@
 # Declare flags and actions for compilation
 flags pgi.compile OPTIONS : -Kieee ;
 flags pgi.compile OPTIONS <link>shared : -fpic ;
-flags pgi.compile OPTIONS <debug-symbols>on : -g ;
+flags pgi.compile OPTIONS <debug-symbols>on : -gopt ;
 flags pgi.compile OPTIONS <profiling>on : -xprofile=tcov ;
 flags pgi.compile OPTIONS <optimization>speed : -fast -Mx,8,0x10000000 ;
 flags pgi.compile OPTIONS <optimization>space : -xO2 -xspace ;
@@ -92,7 +92,7 @@
 }
 
 # Declare flags and actions for linking
-flags pgi.link OPTIONS <debug-symbols>on : -g ;
+flags pgi.link OPTIONS <debug-symbols>on : -gopt ;
 # Strip the binary when no debugging is needed
 flags pgi.link OPTIONS <debug-symbols>off : -s ;
 flags pgi.link OPTIONS <profiling>on : -xprofile=tcov ;