Skip to content

Commit 55ad9cd

Browse files
committed
silence unexpected lld warning on old gccs
1 parent 414482f commit 55ad9cd

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_codegen_ssa/src/back

1 file changed

+1
-1
lines changed

compiler/rustc_codegen_ssa/src/back/link.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@ fn link_natively(
768768
&& cmd.get_args().iter().any(|e| e.to_string_lossy() == "-fuse-ld=lld")
769769
{
770770
info!("linker output: {:?}", out);
771-
warn!("The linker driver does not support `-fuse-ld=lld`. Retrying without it.");
771+
info!("The linker driver does not support `-fuse-ld=lld`. Retrying without it.");
772772
for arg in cmd.take_args() {
773773
if arg.to_string_lossy() != "-fuse-ld=lld" {
774774
cmd.arg(arg);

0 commit comments

Comments
 (0)