Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I am no expert, but this worked for me.</p> <p><strong>Option 1 (straight from source)</strong></p> <ol> <li><p>Download source files for <a href="http://www.zlib.net/" rel="noreferrer">zlib</a> and for <a href="http://www.bzip.org/downloads.html" rel="noreferrer">bzip2</a>.</p></li> <li><p>Extract the downloads to directories, move directories to somewhere you like. I had to avoid <code>C:\Program Files (x86)\</code> as I couldn't get it to work with spaces in the directory name, so I created <code>C:\Sys\</code> and used that.</p></li> <li><p>Open a command prompt with elevated privileges (run as administrator), go to your <code>boost</code> directory, e.g. <code>C:\Program Files (x86)\boost\boost_1_50_0\</code> and type <code>b2.exe --with-iostreams -s BZIP2_SOURCE=C:\Sys\bzip2-1.0.6 -s ZLIB_SOURCE=C:\Sys\zlib-1.2.7</code></p></li> <li><p>Verify that <code>C:\Program Files (x86)\boost\boost_1_50_0\stage\lib</code> contains the wanted files, e.g. <code>libboost_zlib-vc100-*-1_50</code> and <code>libboost_bzip2-vc100-*-1_50</code>.</p></li> </ol> <p><strong>Option 2 (build from source first)</strong></p> <ol> <li><p>As above, download the source files.</p></li> <li><p>Open a <code>Visual Studio Command Prompt</code> with elevated privileges (run as administrator)</p></li> <li><p>Go to <code>C:\Sys\zlib-1.2.7&gt;</code> and type <code>nmake -f win32\Makefile.msc</code>. This will build <code>zlib</code>.</p></li> <li><p>Go to <code>C:\Sys\bzip2-1.0.6&gt;</code> and type <code>nmake -f makefile.msc</code>. This will build <code>gzip2</code>.</p></li> <li><p>The command for <code>boost</code> now becomes <code>b2.exe --with-iostreams -s BZIP2_BINARY=libbz2 -s BZIP2_INCLUDE=C:/Sys/bzip2-1.0.6 -s BZIP2_LIBPATH=C:/Sys/bzip2-1.0.6 -s ZLIB_BINARY=zlib -s ZLIB_INCLUDE=C:/Sys/zlib-1.2.7 -s ZLIB_LIBPATH=C:/Sys/zlib-1.2.7</code></p></li> </ol>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload