Skip to content

Commit

Permalink
Rollup merge of rust-lang#52055 - crlf0710:patch-3, r=Mark-Simulacrum
Browse files Browse the repository at this point in the history
Include VS 2017 in error message.

Update error prompt message to indicate that VS 2017 is supported (for a while now).
  • Loading branch information
kennytm committed Jul 6, 2018
2 parents 441f4b5 + 30063ae commit fb839bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/librustc_codegen_llvm/back/link.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit fb839bc

Please sign in to comment.