15 Mar
2009
15 Mar
'09
9:27 a.m.
It absolutely *will* cause your program to crash if you do that: the dll and the application will have different runtime libraries
The OP says he wants to use boost libs as DLLs, but with static runtime. Isn't it possible to build boost with "link=shared runtime-link=static" ? Then the dll and the application would have the same runtime libraries.
No they wouldn't: or at least they would have *different instances* of the same code, with all the same problems. John.