
21 Nov
2005
21 Nov
'05
10:30 a.m.
c:\Boost\include\boost-1_33_1\boost\config\auto_link.hpp(281): fatal error C1189: #error : "Mixing a dll boost library with a static runtime is a really bad idea..."
If you want to use Boost as a dll, then you *must* also use your C/C++ runtime library as a dll, otherwise really bad things will happen to your code at runtime (this is a general Windows-compiler issue, not a Boost one). Adjust your project's runtime code generation settings to use a dll runtime and everything will be OK. John.