]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/fiber/examples/numa/Jamfile.v2
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / fiber / examples / numa / Jamfile.v2
CommitLineData
b32b8144 1# Boost.Fiber Library Examples Jamfile
7c673cae 2
b32b8144 3# Copyright Oliver Kowalke 2017.
7c673cae
FG
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
10import common ;
11import feature ;
12import indirect ;
13import modules ;
14import os ;
15import toolset ;
7c673cae 16
b32b8144 17project boost/fiber/example/numa
7c673cae 18 : requirements
b32b8144 19 <library>../../build//boost_fiber
92f5a8d4 20 <library>../../build//boost_fiber_numa
b32b8144
FG
21 <target-os>solaris:<linkflags>"-llgrp"
22 <target-os>windows:<define>_WIN32_WINNT=0x0601
7c673cae
FG
23 <toolset>gcc,<segmented-stacks>on:<cxxflags>-fsplit-stack
24 <toolset>gcc,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
25 <toolset>clang,<segmented-stacks>on:<cxxflags>-fsplit-stack
26 <toolset>clang,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
27 <link>static
28 <threading>multi
29 ;
30
b32b8144 31exe topology : topology.cpp ;