diff options
| author | Rémy Rakic <remy.rakic+github@gmail.com> | 2024-05-21 18:17:05 +0000 |
|---|---|---|
| committer | Rémy Rakic <remy.rakic+github@gmail.com> | 2024-05-23 15:47:35 +0000 |
| commit | d64a8bd1e55bd4be1e506792eabd812716d31765 (patch) | |
| tree | b9a552928049e5cdcb58c25ca3e83d089b272c4a /compiler/rustc_codegen_ssa/src/back | |
| parent | fab28f2a4d0bd394546cc37417c7b8aa4ecc1a21 (diff) | |
| download | rust-d64a8bd1e55bd4be1e506792eabd812716d31765.tar.gz rust-d64a8bd1e55bd4be1e506792eabd812716d31765.zip | |
emit an error if we can't find a path to the self-contained linker
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/back')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/back/link.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/link.rs b/compiler/rustc_codegen_ssa/src/back/link.rs index 874732ee9ef..9d19ee77d3d 100644 --- a/compiler/rustc_codegen_ssa/src/back/link.rs +++ b/compiler/rustc_codegen_ssa/src/back/link.rs @@ -3127,9 +3127,9 @@ fn add_lld_args( }); } if !linker_path_exists { - // As an additional sanity check, we do nothing if the sysroot doesn't contain the - // linker path at all. - return; + // As a sanity check, we emit an error if none of these paths exist: we want + // self-contained linking and have no linker. + sess.dcx().emit_fatal(errors::SelfContainedLinkerMissing); } } |
