You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is related to issue #16330: rustc invokes other programs underneath (most notably, a linker) which recognize environment variables of their own. A prominent example would be the LIB variable that is recognized by Microsoft link.exe (and lld-link) which is what, as I understand, is used by rustc on Windows.
Having an accurate list of environment variables that can affect the result of compilation is important to build systems that track changes to the environment.
The text was updated successfully, but these errors were encountered:
Since the environment variables used by the linker can vary depending on its version, the best way to do this would probably to link to the linker's documentation
This is related to issue #16330:
rustc
invokes other programs underneath (most notably, a linker) which recognize environment variables of their own. A prominent example would be theLIB
variable that is recognized by Microsoftlink.exe
(andlld-link
) which is what, as I understand, is used byrustc
on Windows.Having an accurate list of environment variables that can affect the result of compilation is important to build systems that track changes to the environment.
The text was updated successfully, but these errors were encountered: