$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: John Maddock (john_at_[hidden])
Date: 2008-01-22 04:27:48
chun ping wang wrote:
>> Hi i get the following linker error when compling a program that
>> links to boost-thread.
You're seeing multiple runtime libraries being linked against. It implies
that one or more of your object files and/or libraries was built with
different code generation options than your application.
Why not let the auto-link code find the correct VC library build for you
rather than link against your own build of libboost_thread ?
HTH, John.