Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I followed the following link to build zlib http://tpgit.github.com/UnOfficialLeptDocs/vs2008/building-image-libraries.html#building-zlib

then I used command to build boost iostream and boost zlib libs and dlls

    boostfolder\libs\iostreams\build>b2 stage --toolset=msvc-11.0 lin
k=static --build-type=complete -s ZLIB_SOURCE=..\Downloads\zlib127\zl
ib-1.2.7 -s ZLIB_LIBPATH=..\zlib127\zlib-1.2.7\lib -s ZLIB_
INCLUDE=..\zlib127\zlib-1.2.7\include -s ZLIB_BINARY=C:\Use
rs\Jliu\Downloads\zlib127\zlib-1.2.7

When I use boost iostream and boost zlib libs and dlls, I got error:

error LNK2001: unresolved external symbol "int const boost::iostreams::zlib::best_speed" (?best_speed@zlib@iostreams@boost@@3HB)
error LNK2001: unresolved external symbol "int const boost::iostreams::zlib::best_compression" (?best_compression@zlib@iostreams@boost@@3HB)
error LNK2001: unresolved external symbol "int const boost::iostreams::zlib::default_compression" (?default_compression@zlib@iostreams@boost@@3HB)
error LNK2001: unresolved external symbol "int const boost::iostreams::zlib::deflated" (?deflated@zlib@iostreams@boost@@3HB)
error LNK2001: unresolved external symbol "int const boost::iostreams::zlib::default_strategy" (?default_strategy@zlib@iostreams@boost@@3HB)
error LNK2001: unresolved external symbol "int const boost::iostreams::zlib::okay" (?okay@zlib@iostreams@boost@@3HB)
error LNK2001: unresolved external symbol "int const boost::iostreams::zlib::stream_end" (?stream_end@zlib@iostreams@boost@@3HB)
error LNK2001: unresolved external symbol "int const boost::iostreams::zlib::finish" (?finish@zlib@iostreams@boost@@3HB)
error LNK2001: unresolved external symbol "int const boost::iostreams::zlib::no_flush" (?no_flush@zlib@iostreams@boost@@3HB)
error LNK2001: unresolved external symbol "int const boost::iostreams::zlib::sync_flush" (?sync_flush@zlib@iostreams@boost@@3HB)

Does anyone know what is wrong here? thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.