diff options
| author | Rémy Rakic <remy.rakic+github@gmail.com> | 2025-05-15 08:50:01 +0000 |
|---|---|---|
| committer | Rémy Rakic <remy.rakic+github@gmail.com> | 2025-05-15 08:50:01 +0000 |
| commit | 55ad9cd516709b52899d01b2d7be2c4da2af3f02 (patch) | |
| tree | 18802149b419b92a8513082f2454799454171a4f /compiler/rustc_codegen_ssa/src | |
| parent | 414482f6a0d4e7290f614300581a0b55442552a3 (diff) | |
| download | rust-55ad9cd516709b52899d01b2d7be2c4da2af3f02.tar.gz rust-55ad9cd516709b52899d01b2d7be2c4da2af3f02.zip | |
silence unexpected lld warning on old gccs
Diffstat (limited to 'compiler/rustc_codegen_ssa/src')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/back/link.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/link.rs b/compiler/rustc_codegen_ssa/src/back/link.rs index 159c17b0af7..c5792da2678 100644 --- a/compiler/rustc_codegen_ssa/src/back/link.rs +++ b/compiler/rustc_codegen_ssa/src/back/link.rs @@ -768,7 +768,7 @@ fn link_natively( && cmd.get_args().iter().any(|e| e.to_string_lossy() == "-fuse-ld=lld") { info!("linker output: {:?}", out); - warn!("The linker driver does not support `-fuse-ld=lld`. Retrying without it."); + info!("The linker driver does not support `-fuse-ld=lld`. Retrying without it."); for arg in cmd.take_args() { if arg.to_string_lossy() != "-fuse-ld=lld" { cmd.arg(arg); |
