]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/src/tools/features/threading-feature.jam
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / build / src / tools / features / threading-feature.jam
1 # Copyright 2017 Rene Rivera
2 # Distributed under the Boost Software License, Version 1.0.
3 # (See accompanying file LICENSE.txt or copy at
4 # https://www.bfgroup.xyz/b2/LICENSE.txt)
5
6 import feature ;
7
8 #| tag::doc[]
9
10 [[bbv2.builtin.features.threading]]`threading`::
11 *Allowed values:* `single`, `multi`
12 +
13 Controls if the project should be built in multi-threaded mode. This feature
14 does not necessary change code generation in the compiler, but it causes the
15 compiler to link to additional or different runtime libraries, and define
16 additional preprocessor symbols (for example, `_MT` on Windows and `_REENTRANT`
17 on Linux). How those symbols affect the compiled code depends on the code
18 itself.
19
20 |# # end::doc[]
21
22 feature.feature threading
23 : single multi
24 : propagated ;