*** empty log message ***

This commit is contained in:
Arvid Norberg 2004-02-26 19:37:58 +00:00
parent 23936310d2
commit 5c074c457e
3 changed files with 7 additions and 3 deletions

View File

@ -77,7 +77,6 @@ lib torrent
:
<include>./include
<threading>multi
<link>static
: debug release
;

View File

@ -159,9 +159,11 @@ path where you installed boost. This will be used to build and link against the
boost libraries as well as be used as include path for boost headers.</p>
<p>To build you just have to run:</p>
<pre class="literal-block">
bjam &lt;toolset&gt;
bjam &lt;toolset&gt; link=static
</pre>
<p>in the libtorrent directory.</p>
<p>If you're building on a platform where dlls share the same heap, you can build libtorrent
as a dll too, by typing <tt class="literal"><span class="pre">link=shared</span></tt> instead of <tt class="literal"><span class="pre">link=static</span></tt>.</p>
<p>If you're building in developer studio, you may have to set the compiler options
&quot;force conformance in for loop scope&quot; and &quot;treat wchar_t as built-in type&quot; to Yes.</p>
<p>If you're building in developer studio 6, you will probably have to use the previous

View File

@ -104,10 +104,13 @@ boost libraries as well as be used as include path for boost headers.
To build you just have to run::
bjam <toolset>
bjam <toolset> link=static
in the libtorrent directory.
If you're building on a platform where dlls share the same heap, you can build libtorrent
as a dll too, by typing ``link=shared`` instead of ``link=static``.
If you're building in developer studio, you may have to set the compiler options
"force conformance in for loop scope" and "treat wchar_t as built-in type" to Yes.