mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 21:15:18 +03:00
fbc52c9ecf
Treat MSVC "performing full link" message as informational When the MSVC incremental linker finds a .ilk file for incremental linking but its associated .exe file is missing, this message is printed to stdout: ```text LINK : ...\foo.exe not found or not build by the last incremental link; performing full link ``` However, if both the .ilk and .exe files are missing (for a clean build), the message isn't printed and it still does a full link. So, the presence of the message doesn't affect the result of the build. See rust-lang/rust#156209 for further context. r? @mati865 cc @jyn514
Please read the rustc-dev-guide chapter on Backend Agnostic Codegen.