Add mention of VS 2019 in link error output.
This commit is contained in:
parent
dbec74ffa7
commit
1e9e4b0a7a
1 changed files with 8 additions and 4 deletions
|
|
@ -630,10 +630,14 @@ fn link_natively<'a, B: ArchiveBuilder<'a>>(sess: &'a Session,
|
|||
linker_error.emit();
|
||||
|
||||
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, VS 2015 or VS 2017 \
|
||||
was installed with the Visual C++ option");
|
||||
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, VS 2015, VS 2017 or VS 2019 \
|
||||
was installed with the Visual C++ option",
|
||||
);
|
||||
}
|
||||
sess.abort_if_errors();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue