summaryrefslogtreecommitdiff
path: root/more/getting_started/detail/library-naming.rst
diff options
context:
space:
mode:
authorDaniel James <daniel@calamity.org.uk>2010-04-24 16:25:05 +0000
committerDaniel James <daniel@calamity.org.uk>2010-04-24 16:25:05 +0000
commit673ec9fe6a11e0952e96e99954b66fff1fd51e3c (patch)
tree85d695f50c24868b07d06d93d427f133dc08e45e /more/getting_started/detail/library-naming.rst
parent04319659729b336196f965bb6a039c7713b513a5 (diff)
downloadboost-673ec9fe6a11e0952e96e99954b66fff1fd51e3c.tar.gz
Merge release info, and some other hanging changes.
[SVN r61540]
Diffstat (limited to 'more/getting_started/detail/library-naming.rst')
-rw-r--r--more/getting_started/detail/library-naming.rst32
1 files changed, 15 insertions, 17 deletions
diff --git a/more/getting_started/detail/library-naming.rst b/more/getting_started/detail/library-naming.rst
index 9797b772ad..63854ab398 100644
--- a/more/getting_started/detail/library-naming.rst
+++ b/more/getting_started/detail/library-naming.rst
@@ -33,23 +33,21 @@ following elements:
interoperability with other compiled code. For each such
feature, a single letter is added to the tag:
- +-----+------------------------------------------------------------------------------+
- |Key |Use this library when: |
- +=====+==============================================================================+
- |``s``|linking statically to the C++ standard library and compiler runtime support |
- | |libraries. |
- +-----+------------------------------------------------------------------------------+
- |``g``|using debug versions of the standard and runtime support libraries. |
- +-----+------------------------------------------------------------------------------+
- |``y``|using a special `debug build of Python`__. |
- +-----+------------------------------------------------------------------------------+
- |``d``|building a debug version of your code. [#debug-abi]_ |
- +-----+------------------------------------------------------------------------------+
- |``p``|using the STLPort standard library rather than the default one supplied with |
- | |your compiler. |
- +-----+------------------------------------------------------------------------------+
- |``n``|using STLPort's deprecated “native iostreams” feature. [#native]_ |
- +-----+------------------------------------------------------------------------------+
+ +-----+------------------------------------------------------------------------------+---------------------+
+ |Key |Use this library when: |Boost.Build option |
+ +=====+==============================================================================+=====================+
+ |``s``|linking statically to the C++ standard library and compiler runtime support |runtime-link=static |
+ | |libraries. | |
+ +-----+------------------------------------------------------------------------------+---------------------+
+ |``g``|using debug versions of the standard and runtime support libraries. |runtime-debugging=on |
+ +-----+------------------------------------------------------------------------------+---------------------+
+ |``y``|using a special `debug build of Python`__. |python-debugging=on |
+ +-----+------------------------------------------------------------------------------+---------------------+
+ |``d``|building a debug version of your code. [#debug-abi]_ |variant=debug |
+ +-----+------------------------------------------------------------------------------+---------------------+
+ |``p``|using the STLPort standard library rather than the default one supplied with |stdlib=stlport |
+ | |your compiler. | |
+ +-----+------------------------------------------------------------------------------+---------------------+
For example, if you build a debug version of your code for use
with debug versions of the static runtime library and the