Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r68441 - in trunk/libs/chrono: build test
From: vicente.botet_at_[hidden]
Date: 2011-01-25 14:37:02


Author: viboes
Date: 2011-01-25 14:37:00 EST (Tue, 25 Jan 2011)
New Revision: 68441
URL: http://svn.boost.org/trac/boost/changeset/68441

Log:
Chrono: Change <os> by <target-os>

Text files modified:
   trunk/libs/chrono/build/Jamfile.v2 | 9 +++++----
   trunk/libs/chrono/test/Jamfile.v2 | 17 +++++------------
   2 files changed, 10 insertions(+), 16 deletions(-)

Modified: trunk/libs/chrono/build/Jamfile.v2
==============================================================================
--- trunk/libs/chrono/build/Jamfile.v2 (original)
+++ trunk/libs/chrono/build/Jamfile.v2 2011-01-25 14:37:00 EST (Tue, 25 Jan 2011)
@@ -10,8 +10,8 @@
 project boost/chrono
     : source-location ../src
     : requirements
- <os>FREEBSD:<threading>multi
- <os>LINUX:<threading>multi
+ <target-os>FREEBSD:<threading>multi
+ <target-os>LINUX:<threading>multi
         <threading>single:<define>BOOST_CHRONO_THREAD_DISABLED
         <library>/boost/system//boost_system
         #<define>BOOST_SYSTEM_INLINED
@@ -44,9 +44,10 @@
         <toolset>gcc-mingw-4.5.0:<cxxflags>-fdiagnostics-show-option
         <toolset>gcc-mingw-4.6.0:<cxxflags>-fdiagnostics-show-option
 # Note: Some of the remarks from the Intel compiler are disabled
-# remark #1418: external function definition with no prior declaration
 # remark #304: access control not specified ("public" by default)
- <toolset>intel:<cxxflags>-wd304,1418
+# remark #383: value copied to temporary, reference to temporary used
+# remark #1418: external function definition with no prior declaration
+ <toolset>intel:<cxxflags>-wd304,383,1418
 
     : usage-requirements # pass these requirement to dependents (i.e. users)
         <threading>single:<define>BOOST_CHRONO_THREAD_DISABLED

Modified: trunk/libs/chrono/test/Jamfile.v2
==============================================================================
--- trunk/libs/chrono/test/Jamfile.v2 (original)
+++ trunk/libs/chrono/test/Jamfile.v2 2011-01-25 14:37:00 EST (Tue, 25 Jan 2011)
@@ -13,8 +13,8 @@
 
 project
     : requirements
- <os>FREEBSD:<threading>multi
- <os>LINUX:<threading>multi
+ <target-os>FREEBSD:<threading>multi
+ <target-os>LINUX:<threading>multi
         <toolset>msvc:<asynch-exceptions>on
         <define>BOOST_CHRONO_USES_MPL_ASSERT
         <define>BOOST_SYSTEM_NO_DEPRECATED
@@ -33,9 +33,10 @@
         <toolset>gcc-mingw-4.5.0:<cxxflags>-fdiagnostics-show-option
         <toolset>msvc:<cxxflags>/wd4127
 # Note: Some of the remarks from the Intel compiler are disabled
-# remark #1418: external function definition with no prior declaration
 # remark #304: access control not specified ("public" by default)
- <toolset>intel:<cxxflags>-wd304,1418
+# remark #383: value copied to temporary, reference to temporary used
+# remark #1418: external function definition with no prior declaration
+ <toolset>intel:<cxxflags>-wd304,383,1418
     ;
 
 rule chrono-run ( sources )
@@ -57,7 +58,6 @@
             # comment one of the following lines
             #<define>BOOST_SYSTEM_INLINED
             <library>/boost/system//boost_system
- <os>LINUX:<threading>multi
         : $(sources[1]:B)_header ]
     ;
 }
@@ -80,7 +80,6 @@
             # comment one of the following lines
             #<define>BOOST_SYSTEM_INLINED
             <library>/boost/system//boost_system
- <os>LINUX:<threading>multi
         : $(name)_header ]
     ;
 }
@@ -93,13 +92,11 @@
         : :
         :
             <library>/boost/system//boost_system
- <os>LINUX:<threading>multi
         : $(sources[1]:B)_shared ]
     [ run $(sources) ../build//boost_chrono/<link>static
         : :
         :
             <library>/boost/system//boost_system
- <os>LINUX:<threading>multi
         : $(sources[1]:B)_static ]
     [ run $(sources)
         : :
@@ -107,7 +104,6 @@
             # comment one of the following lines
             #<define>BOOST_SYSTEM_INLINED
             <library>/boost/system//boost_system
- <os>LINUX:<threading>multi
         : $(sources[1]:B)_header ]
     ;
 }
@@ -118,13 +114,11 @@
         : :
         :
             <library>/boost/system//boost_system
- <os>LINUX:<threading>multi
         : $(name)_shared ]
     [ run $(sources) ../build//boost_chrono/<link>static
         : :
         :
             <library>/boost/system//boost_system
- <os>LINUX:<threading>multi
         : $(name)_static ]
     [ run $(sources)
         : :
@@ -132,7 +126,6 @@
             # comment one of the following lines
             #<define>BOOST_SYSTEM_INLINED
             <library>/boost/system//boost_system
- <os>LINUX:<threading>multi
         : $(name)_header ]
     ;
 }


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