]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/fiber/examples/numa/Jamfile.v2
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / fiber / examples / numa / Jamfile.v2
1 # Boost.Fiber Library Examples Jamfile
2
3 # Copyright Oliver Kowalke 2017.
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
17 project boost/fiber/example/numa
18 : requirements
19 <library>../../build//boost_fiber
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 <threading>multi
28 ;
29
30 exe topology : topology.cpp ;