-
Notifications
You must be signed in to change notification settings - Fork 952
MSVC Runtime is missing on Windows #712
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Alternatively Rust and Cargo can use the static CRT so they don't depend on the VC++ redistributable. |
Followed Instructions. And installed standalone msvc build tools 2015. msvcr120.dll is missing :( |
@pornel On stable it is, sure, but if you switched to nightly you'd find that the problem is already fixed thanks to rust-lang/rust#39837 Can someone without the VC++ 2013 redistributable who experiences this issue with the current stable confirm whether nightly fixes this? |
You can get a fresh VM from Microsoft: https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/ |
Nightly works for me, yay! |
Ran into this today, while looking for a solution. Thanks, I'm going to try 2013 in the mean time! |
Fixed upstream |
When installing Rust via rustup on a clean Windows 7 x64, rustc and cargo can't be executed because msvcr120.dll is missing. Rustup reports successful install.
After installing Visual C++ Redistributable Package for Visual Studio 2013 (x64) rustc and cargo start working.
Rustup probably should install the runtime package automatically.
The text was updated successfully, but these errors were encountered: