mirror of
https://github.com/boostorg/more.git
synced 2024-12-26 23:30:29 +08:00
Added information about redirecting build output into a file.
[SVN r49525]
This commit is contained in:
parent
62c3563838
commit
df9035becb
@ -23,6 +23,11 @@ be interested in:
|
|||||||
* choosing a specific build variant by adding ``release`` or
|
* choosing a specific build variant by adding ``release`` or
|
||||||
``debug`` to the command line.
|
``debug`` to the command line.
|
||||||
|
|
||||||
|
.. Note:: Boost.Build can produce a great deal of output, which can
|
||||||
|
make it easy to miss problems. If you want to make sure
|
||||||
|
everything is went well, you might redirect the output into a
|
||||||
|
file by appending “``>build.log 2>&1``” to your command line.
|
||||||
|
|
||||||
Expected Build Output
|
Expected Build Output
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
|
@ -456,6 +456,13 @@ be interested in:</p>
|
|||||||
<li>choosing a specific build variant by adding <tt class="docutils literal"><span class="pre">release</span></tt> or
|
<li>choosing a specific build variant by adding <tt class="docutils literal"><span class="pre">release</span></tt> or
|
||||||
<tt class="docutils literal"><span class="pre">debug</span></tt> to the command line.</li>
|
<tt class="docutils literal"><span class="pre">debug</span></tt> to the command line.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<div class="note">
|
||||||
|
<p class="first admonition-title">Note</p>
|
||||||
|
<p class="last">Boost.Build can produce a great deal of output, which can
|
||||||
|
make it easy to miss problems. If you want to make sure
|
||||||
|
everything is went well, you might redirect the output into a
|
||||||
|
file by appending “``>build.log 2>&1``” to your command line.</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="section" id="expected-build-output">
|
<div class="section" id="expected-build-output">
|
||||||
|
@ -60,14 +60,16 @@ not supported—they may or may not work.</p>
|
|||||||
</div>
|
</div>
|
||||||
<div class="section" id="get-boost">
|
<div class="section" id="get-boost">
|
||||||
<h1><a class="toc-backref" href="#id26">1 Get Boost</a></h1>
|
<h1><a class="toc-backref" href="#id26">1 Get Boost</a></h1>
|
||||||
<p>The easiest way to get a copy of Boost is to use an installer.
|
<p>The easiest way to get a copy of Boost is to use an installer. The
|
||||||
The <a class="reference external" href="http://www.boost.org/doc/libs/1_36_0/more/getting_started/index.html">Boost website version of this Getting Started guide</a> will
|
<a class="reference external" href="http://www.boost.org/doc/libs/1_36_0/more/getting_started/index.html">Boost website version of this Getting Started guide</a> will have
|
||||||
have undated information on installers as they become available,
|
undated information on installers as they become available, or see
|
||||||
or see <a class="reference external" href="http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041">Boost downloads</a> or the <a class="reference external" href="http://www.boostpro.com/products/free">installer</a> provided by <a class="reference external" href="http://www.boostpro.com">BoostPro Computing</a>. We especially recommend using
|
<a class="reference external" href="http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041">Boost downloads</a> or the <a class="reference external" href="http://www.boostpro.com/products/free">installer</a> provided by <a class="reference external" href="http://www.boostpro.com">BoostPro
|
||||||
an installer if you use Microsoft Visual Studio, because the installer can download and install
|
Computing</a>. We especially recommend using an installer if you use
|
||||||
precompiled library binaries, saving you the trouble of building
|
Microsoft Visual Studio, because the installer can download and
|
||||||
them yourself. To complete this tutorial, you'll need to at least
|
install precompiled library binaries, saving you the trouble of
|
||||||
install the <a class="reference external" href="../../libs/regex/index.html">Boost.Regex</a> binaries when given the option.</p>
|
building them yourself. To complete this tutorial, you'll need to at
|
||||||
|
least install the Static Multithreaded variants of the <a class="reference external" href="../../libs/regex/index.html">Boost.Regex</a>
|
||||||
|
binaries when given the option.</p>
|
||||||
<p>If you're using an earlier version of Visual Studio or some other
|
<p>If you're using an earlier version of Visual Studio or some other
|
||||||
compiler, or if you prefer to build everything yourself, you can
|
compiler, or if you prefer to build everything yourself, you can
|
||||||
download <a class="reference external" href="http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041"><tt class="docutils literal"><span class="pre">boost_1_37_0</span></tt><tt class="docutils literal"><span class="pre">.7z</span></tt></a> or <a class="reference external" href="http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041"><tt class="docutils literal"><span class="pre">boost_1_37_0</span></tt><tt class="docutils literal"><span class="pre">.zip</span></tt></a> and unpack it to install a complete Boost
|
download <a class="reference external" href="http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041"><tt class="docutils literal"><span class="pre">boost_1_37_0</span></tt><tt class="docutils literal"><span class="pre">.7z</span></tt></a> or <a class="reference external" href="http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041"><tt class="docutils literal"><span class="pre">boost_1_37_0</span></tt><tt class="docutils literal"><span class="pre">.zip</span></tt></a> and unpack it to install a complete Boost
|
||||||
@ -341,7 +343,7 @@ correctly identified the <a class="reference internal" href="#boost-root-directo
|
|||||||
you'll need to acquire library binaries.</p>
|
you'll need to acquire library binaries.</p>
|
||||||
<div class="section" id="install-visual-studio-binaries">
|
<div class="section" id="install-visual-studio-binaries">
|
||||||
<h2><a class="toc-backref" href="#id34">5.1 Install Visual Studio Binaries</a></h2>
|
<h2><a class="toc-backref" href="#id34">5.1 Install Visual Studio Binaries</a></h2>
|
||||||
<p>The installers will download and
|
<p>The installers supplied by BoostPro Computing will download and
|
||||||
install pre-compiled binaries into the <tt class="docutils literal"><span class="pre">lib\</span></tt> subdirectory of the
|
install pre-compiled binaries into the <tt class="docutils literal"><span class="pre">lib\</span></tt> subdirectory of the
|
||||||
boost root, typically <tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_37_0</span></tt><tt class="docutils literal"><span class="pre">\lib\</span></tt>. If you installed
|
boost root, typically <tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_37_0</span></tt><tt class="docutils literal"><span class="pre">\lib\</span></tt>. If you installed
|
||||||
all variants of the <a class="reference external" href="../../libs/regex/index.html">Boost.Regex</a> binary, you're done with this
|
all variants of the <a class="reference external" href="../../libs/regex/index.html">Boost.Regex</a> binary, you're done with this
|
||||||
@ -530,6 +532,13 @@ be interested in:</p>
|
|||||||
<li>choosing a specific build variant by adding <tt class="docutils literal"><span class="pre">release</span></tt> or
|
<li>choosing a specific build variant by adding <tt class="docutils literal"><span class="pre">release</span></tt> or
|
||||||
<tt class="docutils literal"><span class="pre">debug</span></tt> to the command line.</li>
|
<tt class="docutils literal"><span class="pre">debug</span></tt> to the command line.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<div class="note">
|
||||||
|
<p class="first admonition-title">Note</p>
|
||||||
|
<p class="last">Boost.Build can produce a great deal of output, which can
|
||||||
|
make it easy to miss problems. If you want to make sure
|
||||||
|
everything is went well, you might redirect the output into a
|
||||||
|
file by appending “``>build.log 2>&1``” to your command line.</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="section" id="expected-build-output">
|
<div class="section" id="expected-build-output">
|
||||||
|
Loading…
Reference in New Issue
Block a user