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
The rust crate fails to build on Windows because the C++ libraries are trying to link to the debug vc runtime (/MDd), whereas Rust always links against the release runtime (/MD), even when building debug configuration.
Release builds fine.
The text was updated successfully, but these errors were encountered:
This should probably be documented, but we've been setting /MDd via environment variables in the Makefile here, which has been working, so it is possible (Also see rust-lang/rust#39016 (comment)). However I can also understand if that's not a reliable solution for your workflow.
The rust crate fails to build on Windows because the C++ libraries are trying to link to the debug vc runtime (
/MDd
), whereas Rust always links against the release runtime (/MD
), even when building debug configuration.Release builds fine.
The text was updated successfully, but these errors were encountered: