CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 2003
    Location
    Armenia, Yerevan
    Posts
    720

    boost::thread issue

    Hi, sorry if this was asked in the past... I need to use boost's all features, but getting link error saying
    fatal error LNK1104: cannot open file 'libboost_thread-vc90-mt-gd-1_37.lib'
    I've built the libs using bjam.exe, but got only release versions of the libs (libboost_thread-vc90-mt-1_37.lib), could somebody explain, what should be done do get debug versions too. I found some explanations in the net, but they're related with old versions. I use boost 1.37 and MSVC 9.0.
    BTW, the linker cannot find the .lib file in case of release version, however I've specified the path to the boost's libs.

    Many thanks in advance for the help.

  2. #2
    Join Date
    Nov 2003
    Posts
    1,902

    Re: boost::thread issue

    If you don't specify "--build-type=" on the command line, the default is to a minimal release build. Try "--build-type=complete".

    gg

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured