|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r58409 - trunk/tools/build/v2/tools
From: grafikrobot_at_[hidden]
Date: 2009-12-15 22:56:33
Author: grafik
Date: 2009-12-15 22:56:33 EST (Tue, 15 Dec 2009)
New Revision: 58409
URL: http://svn.boost.org/trac/boost/changeset/58409
Log:
Really fix <strip>on vs. <debug-symbols>off change for Xcode gcc.
Text files modified:
trunk/tools/build/v2/tools/darwin.jam | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
Modified: trunk/tools/build/v2/tools/darwin.jam
==============================================================================
--- trunk/tools/build/v2/tools/darwin.jam (original)
+++ trunk/tools/build/v2/tools/darwin.jam 2009-12-15 22:56:33 EST (Tue, 15 Dec 2009)
@@ -152,20 +152,20 @@
# We can turn off strip by specifying it as empty. In which
# case we switch to using the linker to do the strip.
flags darwin.link.dll OPTIONS
- $(condition)/<main-target-type>LIB/<link>shared/<address-model>32/<debug-symbols>off : -Wl,-x ;
+ $(condition)/<main-target-type>LIB/<link>shared/<address-model>32/<strip>on : -Wl,-x ;
flags darwin.link.dll OPTIONS
- $(condition)/<main-target-type>LIB/<link>shared/<address-model>/<debug-symbols>off : -Wl,-x ;
+ $(condition)/<main-target-type>LIB/<link>shared/<address-model>/<strip>on : -Wl,-x ;
flags darwin.link OPTIONS
- $(condition)/<main-target-type>EXE/<address-model>32/<debug-symbols>off : -s ;
+ $(condition)/<main-target-type>EXE/<address-model>32/<strip>on : -s ;
flags darwin.link OPTIONS
- $(condition)/<main-target-type>EXE/<address-model>/<debug-symbols>off : -s ;
+ $(condition)/<main-target-type>EXE/<address-model>/<strip>on : -s ;
}
else
{
# Otherwise we need to find a strip program to use. And hence
# also tell the link action that we need to use a strip
# post-process.
- flags darwin.link NEED_STRIP $(condition)/<strip>off : "" ;
+ flags darwin.link NEED_STRIP $(condition)/<strip>on : "" ;
strip =
[ common.get-invocation-command darwin
: strip : [ feature.get-values <striper> : $(options) ] : $(bin) : search-path ] ;
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk