Subject: [Boost-bugs] [Boost C++ Libraries] #11156: Missing boost library "libboost_zlib-vc120-mt-gd-1_57.lib"
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2015-03-31 00:38:31
#11156: Missing boost library "libboost_zlib-vc120-mt-gd-1_57.lib"
------------------------------+-----------------------
Reporter: Vit.link420@⦠| Owner: turkanis
Type: Bugs | Status: new
Milestone: To Be Determined | Component: iostreams
Version: Boost 1.57.0 | Severity: Problem
Keywords: |
------------------------------+-----------------------
Hello!
Libraries are built under VC++ 12.0[[BR]]
Proven methods of build:
1. bjam toolset=msvc variant=debug,release link=static runtime-link=static
2. bjam toolset=msvc link=static threading=multi release stage
bjam toolset=msvc link=static threading=multi debug stage
3. like this: http://stackoverflow.com/questions/7282645/how-to-build-
boost-iostreams-with-gzip-and-bzip2-support-on-windows
The project had been prescribed library paths.
No one method helped get the library "libboost_zlib-vc120-mt-gd-1_57.lib"
and in the folder "boost/stage/lib" this file does not exist.
Documentation:
http://www.boost.org/doc/libs/1_40_0/libs/iostreams/doc/classes/gzip.html
The program, which would like to compile:
{{{
#define _SCL_SECURE_NO_WARNINGS
#include <string>
#include <iostream>
#include <fstream>
#include <boost/iostreams/filtering_stream.hpp>
#include <boost/iostreams/filter/zlib.hpp>
#include <boost/iostreams/filter/gzip.hpp>
#include <boost/iostreams/device/file.hpp>
#include <boost/iostreams/copy.hpp>
int main(void) {
boost::iostreams::filtering_ostreambuf out;
out.push(boost::iostreams::gzip_compressor());
out.push(boost::iostreams::file_sink("data.txt",
std::ios::binary));
boost::iostreams::copy(boost::iostreams::file_source("data.gz",
std::ios::binary), out);
return 0;
}
}}}
-- Ticket URL: <https://svn.boost.org/trac/boost/ticket/11156> Boost C++ Libraries <http://www.boost.org/> Boost provides free peer-reviewed portable C++ source libraries.
This archive was generated by hypermail 2.1.7 : 2017-02-16 18:50:18 UTC