Add some comments

This commit is contained in:
John Kåre Alsaker 2020-02-09 14:26:13 +01:00
parent 2124a85260
commit e763ddc6b9
2 changed files with 3 additions and 0 deletions

View file

@ -398,6 +398,8 @@
# Indicates whether LLD will be used to link Rust crates during bootstrap on
# supported platforms. The LLD from the bootstrap distribution will be used
# and not the LLD compiled during the bootstrap.
#
# LLD will not be used if we're cross linking or running tests.
#use-lld = false
# Indicates whether some LLVM tools, like llvm-objdump, will be made available in the

View file

@ -1035,6 +1035,7 @@ fn run(self, builder: &Builder<'_>) {
flags.push("-Zunstable-options".to_string());
flags.push(builder.config.cmd.rustc_args().join(" "));
// Don't use LLD here since we want to test that rustc finds and uses a linker by itself.
if let Some(linker) = builder.linker(target, false) {
cmd.arg("--linker").arg(linker);
}