Skip to content

Commit 3c21349

Browse files
committed
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).
2 parents f1a36fc + 30063ae commit 3c21349

File tree

1 file changed

+2
-2
lines changed
  • src/librustc_codegen_llvm/back

1 file changed

+2
-2
lines changed

src/librustc_codegen_llvm/back/link.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -816,8 +816,8 @@ fn link_natively(sess: &Session,
816816
if sess.target.target.options.is_like_msvc && linker_not_found {
817817
sess.note_without_error("the msvc targets depend on the msvc linker \
818818
but `link.exe` was not found");
819-
sess.note_without_error("please ensure that VS 2013 or VS 2015 was installed \
820-
with the Visual C++ option");
819+
sess.note_without_error("please ensure that VS 2013, VS 2015 or VS 2017 \
820+
was installed with the Visual C++ option");
821821
}
822822
sess.abort_if_errors();
823823
}

0 commit comments

Comments
 (0)