]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/context/example/Jamfile.v2
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / context / example / Jamfile.v2
1 # Boost.Context Library Examples Jamfile
2
3 # Copyright Oliver Kowalke 2014.
4 # Distributed under the Boost Software License, Version 1.0.
5 # (See accompanying file LICENSE_1_0.txt or copy at
6 # http://www.boost.org/LICENSE_1_0.txt)
7
8 # For more information, see http://www.boost.org/
9
10 import common ;
11 import feature ;
12 import indirect ;
13 import modules ;
14 import os ;
15 import toolset ;
16 import architecture ;
17
18 project boost/context/example
19 : requirements
20 <library>/boost/context//boost_context
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 ;
28
29 exe stack
30 : stack.cpp
31 ;
32
33 exe jump_void
34 : jump_void.cpp
35 ;
36
37 exe jump
38 : jump.cpp
39 ;
40
41 exe jump_mov
42 : jump_mov.cpp
43 ;
44
45 exe ontop_void
46 : ontop_void.cpp
47 ;
48
49 exe throw
50 : throw.cpp
51 ;
52
53 exe fibonacci
54 : fibonacci.cpp
55 ;
56
57 exe parser
58 : parser.cpp
59 ;
60
61 exe ontop
62 : ontop.cpp
63 ;
64
65 exe endless_loop
66 : endless_loop.cpp
67 ;
68
69 exe segmented
70 : segmented.cpp
71 ;
72
73 #exe backtrace
74 # : backtrace.cpp
75 # ;
76
77 #exe echosse
78 # : echosse.cpp
79 # ;