]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/fiber/performance/fiber/Jamfile.v2
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / fiber / performance / fiber / Jamfile.v2
1
2 # Copyright Oliver Kowalke 2009.
3 # Distributed under the Boost Software License, Version 1.0.
4 # (See accompanying file LICENSE_1_0.txt or copy at
5 # http://www.boost.org/LICENSE_1_0.txt)
6
7 # For more information, see http://www.boost.org/
8
9 import common ;
10 import feature ;
11 import indirect ;
12 import modules ;
13 import os ;
14 import toolset ;
15
16 project boost/fiber/performance/fiber
17 : requirements
18 <library>/boost/fiber//boost_fiber
19 <library>/boost/fiber//boost_fiber_numa
20 <target-os>solaris:<linkflags>"-llgrp"
21 <target-os>windows:<define>_WIN32_WINNT=0x0601
22 <toolset>gcc,<segmented-stacks>on:<cxxflags>-fsplit-stack
23 <toolset>gcc,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
24 <toolset>clang,<segmented-stacks>on:<cxxflags>-fsplit-stack
25 <toolset>clang,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
26 <link>static
27 <numa>on
28 <threading>multi
29 <optimization>speed
30 <variant>release
31 ;
32
33 exe skynet_join :
34 skynet_join.cpp ;
35
36 exe skynet_detach :
37 skynet_detach.cpp ;
38
39 exe skynet_shared_join :
40 skynet_shared_join.cpp ;
41
42 exe skynet_shared_detach :
43 skynet_shared_detach.cpp ;
44
45 exe skynet_stealing_join :
46 skynet_stealing_join.cpp ;
47
48 exe skynet_stealing_detach :
49 skynet_stealing_detach.cpp ;
50
51 exe skynet_stealing_async :
52 skynet_stealing_async.cpp ;