]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/context/performance/Jamfile.v2
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / context / performance / 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/context/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 <optimization>speed
27 <threading>multi
28 <variant>release
29 ;
30
31 alias sources
32 : bind_processor_aix.cpp
33 : <target-os>aix
34 ;
35
36 alias sources
37 : bind_processor_freebsd.cpp
38 : <target-os>freebsd
39 ;
40
41 alias sources
42 : bind_processor_hpux.cpp
43 : <target-os>hpux
44 ;
45
46 alias sources
47 : bind_processor_linux.cpp
48 : <target-os>linux
49 ;
50
51 alias sources
52 : bind_processor_solaris.cpp
53 : <target-os>solaris
54 ;
55
56 alias sources
57 : bind_processor_windows.cpp
58 : <target-os>windows
59 ;
60
61 explicit sources ;
62
63 exe performance
64 : sources
65 performance.cpp
66 ;