diff options
| author | kennytm <kennytm@gmail.com> | 2018-07-06 08:50:29 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2018-07-06 12:56:26 +0800 |
| commit | 3c21349e07bf6abe7b6dea1100cb975c607d6404 (patch) | |
| tree | f01b37f166bbc31992a2a2c6aa30a9fad05226f4 | |
| parent | f1a36fc29f72b3187288e420b2c4c72a56ce1238 (diff) | |
| parent | 30063ae2a5316edf1025c25b85d67f91b3533333 (diff) | |
| download | rust-3c21349e07bf6abe7b6dea1100cb975c607d6404.tar.gz rust-3c21349e07bf6abe7b6dea1100cb975c607d6404.zip | |
Rollup merge of #52055 - crlf0710:patch-3, r=Mark-Simulacrum
Include VS 2017 in error message. Update error prompt message to indicate that VS 2017 is supported (for a while now).
| -rw-r--r-- | src/librustc_codegen_llvm/back/link.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_codegen_llvm/back/link.rs b/src/librustc_codegen_llvm/back/link.rs index 7e24e1114a0..70053cb7e9d 100644 --- a/src/librustc_codegen_llvm/back/link.rs +++ b/src/librustc_codegen_llvm/back/link.rs @@ -816,8 +816,8 @@ fn link_natively(sess: &Session, if sess.target.target.options.is_like_msvc && linker_not_found { sess.note_without_error("the msvc targets depend on the msvc linker \ but `link.exe` was not found"); - sess.note_without_error("please ensure that VS 2013 or VS 2015 was installed \ - with the Visual C++ option"); + sess.note_without_error("please ensure that VS 2013, VS 2015 or VS 2017 \ + was installed with the Visual C++ option"); } sess.abort_if_errors(); } |
