|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r49362 - branches/release/tools/build/v2/tools
From: ghost_at_[hidden]
Date: 2008-10-16 09:30:27
Author: vladimir_prus
Date: 2008-10-16 09:30:26 EDT (Thu, 16 Oct 2008)
New Revision: 49362
URL: http://svn.boost.org/trac/boost/changeset/49362
Log:
Merge https://svn.boost.org/trac/boost/changeset/49357
Text files modified:
branches/release/tools/build/v2/tools/intel-linux.jam | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
Modified: branches/release/tools/build/v2/tools/intel-linux.jam
==============================================================================
--- branches/release/tools/build/v2/tools/intel-linux.jam (original)
+++ branches/release/tools/build/v2/tools/intel-linux.jam 2008-10-16 09:30:26 EDT (Thu, 16 Oct 2008)
@@ -79,11 +79,21 @@
flags intel-linux.compile OPTIONS <warnings>on : -w1 ;
flags intel-linux.compile OPTIONS <warnings>all : -w2 ;
+rule compile.c++ ( targets * : sources * : properties * )
+{
+ gcc.setup-fpic $(targets) : $(sources) : $(properties) ;
+}
+
actions compile.c++
{
"$(CONFIG_COMMAND)" -c -xc++ $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)"
}
+rule compile.c++ ( targets * : sources * : properties * )
+{
+ gcc.setup-fpic $(targets) : $(sources) : $(properties) ;
+}
+
actions compile.c
{
"$(CONFIG_COMMAND)" -c -xc $(OPTIONS) -D$(DEFINES) -I"$(INCLUDES)" -c -o "$(<)" "$(>)"
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