id summary reporter owner description type status milestone component version severity resolution keywords cc 11156 "Missing boost library ""libboost_zlib-vc120-mt-gd-1_57.lib""" Vit.link420@… Jonathan Turkanis "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 #include #include #include #include #include #include #include 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; } }}}" Bugs new To Be Determined iostreams Boost 1.57.0 Problem