Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r75000 - in branches/release/libs/chrono: perf test
From: vicente.botet_at_[hidden]
Date: 2011-10-16 18:55:10


Author: viboes
Date: 2011-10-16 18:55:10 EDT (Sun, 16 Oct 2011)
New Revision: 75000
URL: http://svn.boost.org/trac/boost/changeset/75000

Log:
Chrono: Fix single threaded build issue
Text files modified:
   branches/release/libs/chrono/perf/Jamfile.v2 | 7 ++++---
   branches/release/libs/chrono/test/Jamfile.v2 | 7 ++++---
   2 files changed, 8 insertions(+), 6 deletions(-)

Modified: branches/release/libs/chrono/perf/Jamfile.v2
==============================================================================
--- branches/release/libs/chrono/perf/Jamfile.v2 (original)
+++ branches/release/libs/chrono/perf/Jamfile.v2 2011-10-16 18:55:10 EDT (Sun, 16 Oct 2011)
@@ -13,9 +13,10 @@
 
 project
     : requirements
- <target-os>freebsd:<threading>multi
- <target-os>linux:<threading>multi
- <toolset>pgi:<threading>multi
+ <target-os>freebsd:<linkflags>"-lrt"
+ <target-os>linux:<linkflags>"-lrt"
+ <toolset>pgi:<linkflags>"-lrt"
+ #<threading>single:<define>BOOST_CHRONO_THREAD_DISABLED
         <toolset>msvc:<asynch-exceptions>on
         <define>BOOST_CHRONO_USES_MPL_ASSERT
         <define>BOOST_SYSTEM_NO_DEPRECATED

Modified: branches/release/libs/chrono/test/Jamfile.v2
==============================================================================
--- branches/release/libs/chrono/test/Jamfile.v2 (original)
+++ branches/release/libs/chrono/test/Jamfile.v2 2011-10-16 18:55:10 EDT (Sun, 16 Oct 2011)
@@ -13,9 +13,10 @@
 
 project
     : requirements
- <target-os>freebsd:<threading>multi
- <target-os>linux:<threading>multi
- <toolset>pgi:<threading>multi
+ <target-os>freebsd:<linkflags>"-lrt"
+ <target-os>linux:<linkflags>"-lrt"
+ <toolset>pgi:<linkflags>"-lrt"
+ #<threading>single:<define>BOOST_CHRONO_THREAD_DISABLED
         <toolset>msvc:<asynch-exceptions>on
         <define>BOOST_CHRONO_USES_MPL_ASSERT
         <define>BOOST_SYSTEM_NO_DEPRECATED


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