]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/coroutine2/performance/Jamfile.v2
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / coroutine2 / performance / Jamfile.v2
1
2 # Copyright Oliver Kowalke 2014.
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/coroutine2/performance
17 : requirements
18 <library>/boost/chrono//boost_chrono
19 <library>/boost/context//boost_context
20 <library>/boost/program_options//boost_program_options
21 <toolset>gcc,<segmented-stacks>on:<cxxflags>-fsplit-stack
22 <toolset>gcc,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
23 <toolset>clang,<segmented-stacks>on:<cxxflags>-fsplit-stack
24 <toolset>clang,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
25 <link>static
26 <threading>multi
27 <cxxflags>-DBOOST_DISABLE_ASSERTS
28 <optimization>speed
29 <variant>release
30 ;
31
32 alias sources
33 : bind_processor_aix.cpp
34 : <target-os>aix
35 ;
36
37 alias sources
38 : bind_processor_freebsd.cpp
39 : <target-os>freebsd
40 ;
41
42 alias sources
43 : bind_processor_hpux.cpp
44 : <target-os>hpux
45 ;
46
47 alias sources
48 : bind_processor_linux.cpp
49 : <target-os>linux
50 ;
51
52 alias sources
53 : bind_processor_solaris.cpp
54 : <target-os>solaris
55 ;
56
57 alias sources
58 : bind_processor_windows.cpp
59 : <target-os>windows
60 ;
61
62 explicit sources ;
63
64 exe performance_create_protected
65 : sources
66 performance_create_protected.cpp
67 ;
68
69 exe performance_create_standard
70 : sources
71 performance_create_standard.cpp
72 ;
73
74 exe performance_switch
75 : sources
76 performance_switch.cpp
77 ;