]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/fiber/performance/fiber/Jamfile.v2
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / fiber / performance / fiber / Jamfile.v2
CommitLineData
7c673cae
FG
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
9import common ;
10import feature ;
11import indirect ;
12import modules ;
13import os ;
14import toolset ;
15
16project boost/fiber/performance/fiber
17 : requirements
18 <library>/boost/fiber//boost_fiber
b32b8144
FG
19 <target-os>solaris:<linkflags>"-llgrp"
20 <target-os>windows:<define>_WIN32_WINNT=0x0601
7c673cae
FG
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
7c673cae
FG
27 <optimization>speed
28 <variant>release
29 ;
30
b32b8144
FG
31exe skynet_join :
32 skynet_join.cpp ;
7c673cae 33
b32b8144
FG
34exe skynet_detach :
35 skynet_detach.cpp ;
7c673cae 36
b32b8144
FG
37exe skynet_shared_join :
38 skynet_shared_join.cpp ;
7c673cae 39
b32b8144
FG
40exe skynet_shared_detach :
41 skynet_shared_detach.cpp ;
7c673cae 42
b32b8144
FG
43exe skynet_stealing_join :
44 skynet_stealing_join.cpp ;
7c673cae 45
b32b8144
FG
46exe skynet_stealing_detach :
47 skynet_stealing_detach.cpp ;
7c673cae 48
b32b8144
FG
49exe skynet_stealing_async :
50 skynet_stealing_async.cpp ;