2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 00:32:11 +00:00

Corrected terminology in the documentation.

This commit is contained in:
Edward Diener
2016-04-29 12:55:51 -04:00
parent ef4c103510
commit f7e019c8ad
3 changed files with 4 additions and 4 deletions

View File

@@ -678,7 +678,7 @@ b2 toolset=gcc variant=debug optimization=space
The build directory for the project root will be computed by concatenating
the value of the <option>--build-dir</option> option, the project name
specified in Jamroot, and the build dir specified in Jamroot
(or <literal>bin.v2</literal>, if none is specified).
(or <literal>bin</literal>, if none is specified).
</para>
<para>The option is primarily useful when building from read-only

View File

@@ -688,8 +688,8 @@ path-constant DATA : data/a.txt ;
<listitem>
<para><emphasis role="bold">Allowed values:</emphasis> <literal>on</literal>, <literal>off</literal>.</para>
<para>The <literal>runtime-debugging</literal> feature specifies that,
if produced, object files, executables, and libraries should include
<para>The <literal>runtime-debugging</literal> feature specifies
whether produced object files, executables, and libraries should include
behaviour useful only for debugging, such as asserts.
Typically, the value of this feature is implicitly set by the
<literal>variant</literal> feature, but it can be explicitly

View File

@@ -530,7 +530,7 @@ unit-test helpers_test
</programlisting>
The command used to run the executable will be:
<screen>
<emphasis role="bold">valgrind</emphasis> bin.v2/$toolset/debug/helpers_test
<emphasis role="bold">valgrind</emphasis> bin/$toolset/debug/helpers_test
</screen>
</para>
</listitem>