$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Christian Körber (koerber_at_[hidden])
Date: 2003-09-19 07:23:06
This did the trick!
I must remember this.
Thanks for the very fast response, John!!!
"John Maddock" wrote
> This occurs when the lib you're linking to was built with different code
> generation options than your .exe. The libs are built against the dynamic
> runtime by default, if you want to link against the static runtime lib,
then
> invoke bjam with:
>
> bjam -sBUILD="release debug <runtime-link>static" -sTOOLS=vc7
>
> for the static single threaded variants
>
> or:
>
> bjam -sBUILD="release debug <runtime-link>static
> <threading>multi" -sTOOLS=vc7
>
> for the static multithreaded variants.