c++ - Is it possible to instruct MSVC to use release version of Boost when compiling Debug project? -
I have created a boot in the release configuration and posted it in a folder. Now when I add boost libraries to the project and try to create it in debug configuration - the linker fails because there is no debug version library.
Is there a way to use MSVC 9.0 debug configuration version of libraries?
Of course, there is an easy soultion - build the debug version of Boost. But I'm just curious.
You can do two things:
- To promote Create debug version (this is the best option)
- Add a debugging signal to your release build.
Do not use the release version of your promoting with your debug build because the boost depends on CRT, which is different in debug / release build.
Comments
Post a Comment