[MSVC] Use the debug version of the run-time library when compiling in debug mode · Issue #178 · rust-lang/cmake-rs · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When compiling in debug mode with the MSVC compiler the
/MD
or/MT
flags shall be replaced by/MDd
or/MTd
.When it is not the case it prevents to link with libraries which are also compiled in debug mode (ie linking with MSVCRTD. lib or LIBCMTD.lib).
The text was updated successfully, but these errors were encountered: