Building application in debug with release CRT with dependency issues on boost
问题 I am building an application with dependency on boost. My application output is libraries that end up being used by another client application. I recently discovered I was building my application in debug mode using /MDd for code generation (debug CRT libraries) and that the client application was built against release CRT even in debug mode. Hence this can cause some memory heap corruption errors. To confirm, this I tested everything in release mode and there it all works fine. To address