]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_ssa/src/back/link.rs
6f0a8d0a54cbac03b5158e35a8647a819bdd0912
[rust.git] / compiler / rustc_codegen_ssa / src / back / link.rs
1 use rustc_arena::TypedArena;
2 use rustc_ast::CRATE_NODE_ID;
3 use rustc_data_structures::fx::FxHashSet;
4 use rustc_data_structures::fx::FxIndexMap;
5 use rustc_data_structures::memmap::Mmap;
6 use rustc_data_structures::temp_dir::MaybeTempDir;
7 use rustc_errors::{ErrorGuaranteed, Handler};
8 use rustc_fs_util::fix_windows_verbatim_for_gcc;
9 use rustc_hir::def_id::CrateNum;
10 use rustc_metadata::find_native_static_library;
11 use rustc_metadata::fs::{emit_metadata, METADATA_FILENAME};
12 use rustc_middle::middle::dependency_format::Linkage;
13 use rustc_middle::middle::exported_symbols::SymbolExportKind;
14 use rustc_session::config::{self, CFGuard, CrateType, DebugInfo, LdImpl, Lto, Strip};
15 use rustc_session::config::{OutputFilenames, OutputType, PrintRequest, SplitDwarfKind};
16 use rustc_session::cstore::DllImport;
17 use rustc_session::output::{check_file_is_writeable, invalid_output_for_target, out_filename};
18 use rustc_session::search_paths::PathKind;
19 use rustc_session::utils::NativeLibKind;
20 /// For all the linkers we support, and information they might
21 /// need out of the shared crate context before we get rid of it.
22 use rustc_session::{filesearch, Session};
23 use rustc_span::symbol::Symbol;
24 use rustc_span::DebuggerVisualizerFile;
25 use rustc_target::spec::crt_objects::{CrtObjects, LinkSelfContainedDefault};
26 use rustc_target::spec::{Cc, LinkOutputKind, LinkerFlavor, LinkerFlavorCli, Lld, PanicStrategy};
27 use rustc_target::spec::{RelocModel, RelroLevel, SanitizerSet, SplitDebuginfo, Target};
28
29 use super::archive::{ArchiveBuilder, ArchiveBuilderBuilder};
30 use super::command::Command;
31 use super::linker::{self, Linker};
32 use super::metadata::{create_rmeta_file, MetadataPosition};
33 use super::rpath::{self, RPathConfig};
34 use crate::{
35     errors, looks_like_rust_object_file, CodegenResults, CompiledModule, CrateInfo, NativeLib,
36 };
37
38 use cc::windows_registry;
39 use regex::Regex;
40 use tempfile::Builder as TempFileBuilder;
41
42 use itertools::Itertools;
43 use std::borrow::Borrow;
44 use std::cell::OnceCell;
45 use std::collections::BTreeSet;
46 use std::ffi::OsString;
47 use std::fs::{File, OpenOptions};
48 use std::io::{BufWriter, Write};
49 use std::ops::Deref;
50 use std::path::{Path, PathBuf};
51 use std::process::{ExitStatus, Output, Stdio};
52 use std::{env, fmt, fs, io, mem, str};
53
54 pub fn ensure_removed(diag_handler: &Handler, path: &Path) {
55     if let Err(e) = fs::remove_file(path) {
56         if e.kind() != io::ErrorKind::NotFound {
57             diag_handler.err(&format!("failed to remove {}: {}", path.display(), e));
58         }
59     }
60 }
61
62 /// Performs the linkage portion of the compilation phase. This will generate all
63 /// of the requested outputs for this compilation session.
64 pub fn link_binary<'a>(
65     sess: &'a Session,
66     archive_builder_builder: &dyn ArchiveBuilderBuilder,
67     codegen_results: &CodegenResults,
68     outputs: &OutputFilenames,
69 ) -> Result<(), ErrorGuaranteed> {
70     let _timer = sess.timer("link_binary");
71     let output_metadata = sess.opts.output_types.contains_key(&OutputType::Metadata);
72     for &crate_type in sess.crate_types().iter() {
73         // Ignore executable crates if we have -Z no-codegen, as they will error.
74         if (sess.opts.unstable_opts.no_codegen || !sess.opts.output_types.should_codegen())
75             && !output_metadata
76             && crate_type == CrateType::Executable
77         {
78             continue;
79         }
80
81         if invalid_output_for_target(sess, crate_type) {
82             bug!(
83                 "invalid output type `{:?}` for target os `{}`",
84                 crate_type,
85                 sess.opts.target_triple
86             );
87         }
88
89         sess.time("link_binary_check_files_are_writeable", || {
90             for obj in codegen_results.modules.iter().filter_map(|m| m.object.as_ref()) {
91                 check_file_is_writeable(obj, sess);
92             }
93         });
94
95         if outputs.outputs.should_link() {
96             let tmpdir = TempFileBuilder::new()
97                 .prefix("rustc")
98                 .tempdir()
99                 .unwrap_or_else(|error| sess.emit_fatal(errors::CreateTempDir { error }));
100             let path = MaybeTempDir::new(tmpdir, sess.opts.cg.save_temps);
101             let out_filename = out_filename(
102                 sess,
103                 crate_type,
104                 outputs,
105                 codegen_results.crate_info.local_crate_name.as_str(),
106             );
107             match crate_type {
108                 CrateType::Rlib => {
109                     let _timer = sess.timer("link_rlib");
110                     info!("preparing rlib to {:?}", out_filename);
111                     link_rlib(
112                         sess,
113                         archive_builder_builder,
114                         codegen_results,
115                         RlibFlavor::Normal,
116                         &path,
117                     )?
118                     .build(&out_filename);
119                 }
120                 CrateType::Staticlib => {
121                     link_staticlib(
122                         sess,
123                         archive_builder_builder,
124                         codegen_results,
125                         &out_filename,
126                         &path,
127                     )?;
128                 }
129                 _ => {
130                     link_natively(
131                         sess,
132                         archive_builder_builder,
133                         crate_type,
134                         &out_filename,
135                         codegen_results,
136                         path.as_ref(),
137                     )?;
138                 }
139             }
140             if sess.opts.json_artifact_notifications {
141                 sess.parse_sess.span_diagnostic.emit_artifact_notification(&out_filename, "link");
142             }
143
144             if sess.prof.enabled() {
145                 if let Some(artifact_name) = out_filename.file_name() {
146                     // Record size for self-profiling
147                     let file_size = std::fs::metadata(&out_filename).map(|m| m.len()).unwrap_or(0);
148
149                     sess.prof.artifact_size(
150                         "linked_artifact",
151                         artifact_name.to_string_lossy(),
152                         file_size,
153                     );
154                 }
155             }
156         }
157     }
158
159     // Remove the temporary object file and metadata if we aren't saving temps.
160     sess.time("link_binary_remove_temps", || {
161         // If the user requests that temporaries are saved, don't delete any.
162         if sess.opts.cg.save_temps {
163             return;
164         }
165
166         let maybe_remove_temps_from_module =
167             |preserve_objects: bool, preserve_dwarf_objects: bool, module: &CompiledModule| {
168                 if !preserve_objects {
169                     if let Some(ref obj) = module.object {
170                         ensure_removed(sess.diagnostic(), obj);
171                     }
172                 }
173
174                 if !preserve_dwarf_objects {
175                     if let Some(ref dwo_obj) = module.dwarf_object {
176                         ensure_removed(sess.diagnostic(), dwo_obj);
177                     }
178                 }
179             };
180
181         let remove_temps_from_module =
182             |module: &CompiledModule| maybe_remove_temps_from_module(false, false, module);
183
184         // Otherwise, always remove the metadata and allocator module temporaries.
185         if let Some(ref metadata_module) = codegen_results.metadata_module {
186             remove_temps_from_module(metadata_module);
187         }
188
189         if let Some(ref allocator_module) = codegen_results.allocator_module {
190             remove_temps_from_module(allocator_module);
191         }
192
193         // If no requested outputs require linking, then the object temporaries should
194         // be kept.
195         if !sess.opts.output_types.should_link() {
196             return;
197         }
198
199         // Potentially keep objects for their debuginfo.
200         let (preserve_objects, preserve_dwarf_objects) = preserve_objects_for_their_debuginfo(sess);
201         debug!(?preserve_objects, ?preserve_dwarf_objects);
202
203         for module in &codegen_results.modules {
204             maybe_remove_temps_from_module(preserve_objects, preserve_dwarf_objects, module);
205         }
206     });
207
208     Ok(())
209 }
210
211 pub fn each_linked_rlib(
212     sess: &Session,
213     info: &CrateInfo,
214     f: &mut dyn FnMut(CrateNum, &Path),
215 ) -> Result<(), errors::LinkRlibError> {
216     let crates = info.used_crates.iter();
217     let mut fmts = None;
218
219     let lto_active = matches!(sess.lto(), Lto::Fat | Lto::Thin);
220     if lto_active {
221         for combination in info.dependency_formats.iter().combinations(2) {
222             let (ty1, list1) = &combination[0];
223             let (ty2, list2) = &combination[1];
224             if list1 != list2 {
225                 return Err(errors::LinkRlibError::IncompatibleDependencyFormats {
226                     ty1: format!("{ty1:?}"),
227                     ty2: format!("{ty2:?}"),
228                     list1: format!("{list1:?}"),
229                     list2: format!("{list2:?}"),
230                 });
231             }
232         }
233     }
234
235     for (ty, list) in info.dependency_formats.iter() {
236         match ty {
237             CrateType::Executable
238             | CrateType::Staticlib
239             | CrateType::Cdylib
240             | CrateType::ProcMacro => {
241                 fmts = Some(list);
242                 break;
243             }
244             CrateType::Dylib if lto_active => {
245                 fmts = Some(list);
246                 break;
247             }
248             _ => {}
249         }
250     }
251     let Some(fmts) = fmts else {
252         return Err(errors::LinkRlibError::MissingFormat);
253     };
254     for &cnum in crates {
255         match fmts.get(cnum.as_usize() - 1) {
256             Some(&Linkage::NotLinked | &Linkage::IncludedFromDylib) => continue,
257             Some(_) => {}
258             None => return Err(errors::LinkRlibError::MissingFormat),
259         }
260         let crate_name = info.crate_name[&cnum];
261         let used_crate_source = &info.used_crate_source[&cnum];
262         if let Some((path, _)) = &used_crate_source.rlib {
263             f(cnum, &path);
264         } else {
265             if used_crate_source.rmeta.is_some() {
266                 return Err(errors::LinkRlibError::OnlyRmetaFound { crate_name });
267             } else {
268                 return Err(errors::LinkRlibError::NotFound { crate_name });
269             }
270         }
271     }
272     Ok(())
273 }
274
275 /// Create an 'rlib'.
276 ///
277 /// An rlib in its current incarnation is essentially a renamed .a file. The rlib primarily contains
278 /// the object file of the crate, but it also contains all of the object files from native
279 /// libraries. This is done by unzipping native libraries and inserting all of the contents into
280 /// this archive.
281 fn link_rlib<'a>(
282     sess: &'a Session,
283     archive_builder_builder: &dyn ArchiveBuilderBuilder,
284     codegen_results: &CodegenResults,
285     flavor: RlibFlavor,
286     tmpdir: &MaybeTempDir,
287 ) -> Result<Box<dyn ArchiveBuilder<'a> + 'a>, ErrorGuaranteed> {
288     let lib_search_paths = archive_search_paths(sess);
289
290     let mut ab = archive_builder_builder.new_archive_builder(sess);
291
292     let trailing_metadata = match flavor {
293         RlibFlavor::Normal => {
294             let (metadata, metadata_position) =
295                 create_rmeta_file(sess, codegen_results.metadata.raw_data());
296             let metadata = emit_metadata(sess, &metadata, tmpdir);
297             match metadata_position {
298                 MetadataPosition::First => {
299                     // Most of the time metadata in rlib files is wrapped in a "dummy" object
300                     // file for the target platform so the rlib can be processed entirely by
301                     // normal linkers for the platform. Sometimes this is not possible however.
302                     // If it is possible however, placing the metadata object first improves
303                     // performance of getting metadata from rlibs.
304                     ab.add_file(&metadata);
305                     None
306                 }
307                 MetadataPosition::Last => Some(metadata),
308             }
309         }
310
311         RlibFlavor::StaticlibBase => None,
312     };
313
314     for m in &codegen_results.modules {
315         if let Some(obj) = m.object.as_ref() {
316             ab.add_file(obj);
317         }
318
319         if let Some(dwarf_obj) = m.dwarf_object.as_ref() {
320             ab.add_file(dwarf_obj);
321         }
322     }
323
324     match flavor {
325         RlibFlavor::Normal => {}
326         RlibFlavor::StaticlibBase => {
327             let obj = codegen_results.allocator_module.as_ref().and_then(|m| m.object.as_ref());
328             if let Some(obj) = obj {
329                 ab.add_file(obj);
330             }
331         }
332     }
333
334     // Used if packed_bundled_libs flag enabled.
335     let mut packed_bundled_libs = Vec::new();
336
337     // Note that in this loop we are ignoring the value of `lib.cfg`. That is,
338     // we may not be configured to actually include a static library if we're
339     // adding it here. That's because later when we consume this rlib we'll
340     // decide whether we actually needed the static library or not.
341     //
342     // To do this "correctly" we'd need to keep track of which libraries added
343     // which object files to the archive. We don't do that here, however. The
344     // #[link(cfg(..))] feature is unstable, though, and only intended to get
345     // liblibc working. In that sense the check below just indicates that if
346     // there are any libraries we want to omit object files for at link time we
347     // just exclude all custom object files.
348     //
349     // Eventually if we want to stabilize or flesh out the #[link(cfg(..))]
350     // feature then we'll need to figure out how to record what objects were
351     // loaded from the libraries found here and then encode that into the
352     // metadata of the rlib we're generating somehow.
353     for lib in codegen_results.crate_info.used_libraries.iter() {
354         match lib.kind {
355             NativeLibKind::Static { bundle: None | Some(true), whole_archive: Some(true) }
356                 if flavor == RlibFlavor::Normal && sess.opts.unstable_opts.packed_bundled_libs => {}
357             NativeLibKind::Static { bundle: None | Some(true), whole_archive: Some(true) }
358                 if flavor == RlibFlavor::Normal =>
359             {
360                 // Don't allow mixing +bundle with +whole_archive since an rlib may contain
361                 // multiple native libs, some of which are +whole-archive and some of which are
362                 // -whole-archive and it isn't clear how we can currently handle such a
363                 // situation correctly.
364                 // See https://github.com/rust-lang/rust/issues/88085#issuecomment-901050897
365                 sess.emit_err(errors::IncompatibleLinkingModifiers);
366             }
367             NativeLibKind::Static { bundle: None | Some(true), .. } => {}
368             NativeLibKind::Static { bundle: Some(false), .. }
369             | NativeLibKind::Dylib { .. }
370             | NativeLibKind::Framework { .. }
371             | NativeLibKind::RawDylib
372             | NativeLibKind::LinkArg
373             | NativeLibKind::Unspecified => continue,
374         }
375         if let Some(name) = lib.name {
376             let location =
377                 find_native_static_library(name.as_str(), lib.verbatim, &lib_search_paths, sess);
378             if sess.opts.unstable_opts.packed_bundled_libs && flavor == RlibFlavor::Normal {
379                 packed_bundled_libs.push(find_native_static_library(
380                     lib.filename.unwrap().as_str(),
381                     Some(true),
382                     &lib_search_paths,
383                     sess,
384                 ));
385                 continue;
386             }
387             ab.add_archive(&location, Box::new(|_| false)).unwrap_or_else(|error| {
388                 sess.emit_fatal(errors::AddNativeLibrary { library_path: location, error });
389             });
390         }
391     }
392
393     for (raw_dylib_name, raw_dylib_imports) in
394         collate_raw_dylibs(sess, codegen_results.crate_info.used_libraries.iter())?
395     {
396         let output_path = archive_builder_builder.create_dll_import_lib(
397             sess,
398             &raw_dylib_name,
399             &raw_dylib_imports,
400             tmpdir.as_ref(),
401             true,
402         );
403
404         ab.add_archive(&output_path, Box::new(|_| false)).unwrap_or_else(|error| {
405             sess.emit_fatal(errors::AddNativeLibrary { library_path: output_path, error });
406         });
407     }
408
409     if let Some(trailing_metadata) = trailing_metadata {
410         // Note that it is important that we add all of our non-object "magical
411         // files" *after* all of the object files in the archive. The reason for
412         // this is as follows:
413         //
414         // * When performing LTO, this archive will be modified to remove
415         //   objects from above. The reason for this is described below.
416         //
417         // * When the system linker looks at an archive, it will attempt to
418         //   determine the architecture of the archive in order to see whether its
419         //   linkable.
420         //
421         //   The algorithm for this detection is: iterate over the files in the
422         //   archive. Skip magical SYMDEF names. Interpret the first file as an
423         //   object file. Read architecture from the object file.
424         //
425         // * As one can probably see, if "metadata" and "foo.bc" were placed
426         //   before all of the objects, then the architecture of this archive would
427         //   not be correctly inferred once 'foo.o' is removed.
428         //
429         // * Most of the time metadata in rlib files is wrapped in a "dummy" object
430         //   file for the target platform so the rlib can be processed entirely by
431         //   normal linkers for the platform. Sometimes this is not possible however.
432         //
433         // Basically, all this means is that this code should not move above the
434         // code above.
435         ab.add_file(&trailing_metadata);
436     }
437
438     // Add all bundled static native library dependencies.
439     // Archives added to the end of .rlib archive, see comment above for the reason.
440     for lib in packed_bundled_libs {
441         ab.add_file(&lib)
442     }
443
444     return Ok(ab);
445 }
446
447 /// Extract all symbols defined in raw-dylib libraries, collated by library name.
448 ///
449 /// If we have multiple extern blocks that specify symbols defined in the same raw-dylib library,
450 /// then the CodegenResults value contains one NativeLib instance for each block.  However, the
451 /// linker appears to expect only a single import library for each library used, so we need to
452 /// collate the symbols together by library name before generating the import libraries.
453 fn collate_raw_dylibs<'a, 'b>(
454     sess: &'a Session,
455     used_libraries: impl IntoIterator<Item = &'b NativeLib>,
456 ) -> Result<Vec<(String, Vec<DllImport>)>, ErrorGuaranteed> {
457     // Use index maps to preserve original order of imports and libraries.
458     let mut dylib_table = FxIndexMap::<String, FxIndexMap<Symbol, &DllImport>>::default();
459
460     for lib in used_libraries {
461         if lib.kind == NativeLibKind::RawDylib {
462             let ext = if matches!(lib.verbatim, Some(true)) { "" } else { ".dll" };
463             let name = format!("{}{}", lib.name.expect("unnamed raw-dylib library"), ext);
464             let imports = dylib_table.entry(name.clone()).or_default();
465             for import in &lib.dll_imports {
466                 if let Some(old_import) = imports.insert(import.name, import) {
467                     // FIXME: when we add support for ordinals, figure out if we need to do anything
468                     // if we have two DllImport values with the same name but different ordinals.
469                     if import.calling_convention != old_import.calling_convention {
470                         sess.emit_err(errors::MultipleExternalFuncDecl {
471                             span: import.span,
472                             function: import.name,
473                             library_name: &name,
474                         });
475                     }
476                 }
477             }
478         }
479     }
480     sess.compile_status()?;
481     Ok(dylib_table
482         .into_iter()
483         .map(|(name, imports)| {
484             (name, imports.into_iter().map(|(_, import)| import.clone()).collect())
485         })
486         .collect())
487 }
488
489 /// Create a static archive.
490 ///
491 /// This is essentially the same thing as an rlib, but it also involves adding all of the upstream
492 /// crates' objects into the archive. This will slurp in all of the native libraries of upstream
493 /// dependencies as well.
494 ///
495 /// Additionally, there's no way for us to link dynamic libraries, so we warn about all dynamic
496 /// library dependencies that they're not linked in.
497 ///
498 /// There's no need to include metadata in a static archive, so ensure to not link in the metadata
499 /// object file (and also don't prepare the archive with a metadata file).
500 fn link_staticlib<'a>(
501     sess: &'a Session,
502     archive_builder_builder: &dyn ArchiveBuilderBuilder,
503     codegen_results: &CodegenResults,
504     out_filename: &Path,
505     tempdir: &MaybeTempDir,
506 ) -> Result<(), ErrorGuaranteed> {
507     info!("preparing staticlib to {:?}", out_filename);
508     let mut ab = link_rlib(
509         sess,
510         archive_builder_builder,
511         codegen_results,
512         RlibFlavor::StaticlibBase,
513         tempdir,
514     )?;
515     let mut all_native_libs = vec![];
516
517     let res = each_linked_rlib(sess, &codegen_results.crate_info, &mut |cnum, path| {
518         let name = codegen_results.crate_info.crate_name[&cnum];
519         let native_libs = &codegen_results.crate_info.native_libraries[&cnum];
520
521         // Here when we include the rlib into our staticlib we need to make a
522         // decision whether to include the extra object files along the way.
523         // These extra object files come from statically included native
524         // libraries, but they may be cfg'd away with #[link(cfg(..))].
525         //
526         // This unstable feature, though, only needs liblibc to work. The only
527         // use case there is where musl is statically included in liblibc.rlib,
528         // so if we don't want the included version we just need to skip it. As
529         // a result the logic here is that if *any* linked library is cfg'd away
530         // we just skip all object files.
531         //
532         // Clearly this is not sufficient for a general purpose feature, and
533         // we'd want to read from the library's metadata to determine which
534         // object files come from where and selectively skip them.
535         let skip_object_files = native_libs.iter().any(|lib| {
536             matches!(lib.kind, NativeLibKind::Static { bundle: None | Some(true), .. })
537                 && !relevant_lib(sess, lib)
538         });
539
540         let lto = are_upstream_rust_objects_already_included(sess)
541             && !ignored_for_lto(sess, &codegen_results.crate_info, cnum);
542
543         // Ignoring obj file starting with the crate name
544         // as simple comparison is not enough - there
545         // might be also an extra name suffix
546         let obj_start = name.as_str().to_owned();
547
548         ab.add_archive(
549             path,
550             Box::new(move |fname: &str| {
551                 // Ignore metadata files, no matter the name.
552                 if fname == METADATA_FILENAME {
553                     return true;
554                 }
555
556                 // Don't include Rust objects if LTO is enabled
557                 if lto && looks_like_rust_object_file(fname) {
558                     return true;
559                 }
560
561                 // Otherwise if this is *not* a rust object and we're skipping
562                 // objects then skip this file
563                 if skip_object_files && (!fname.starts_with(&obj_start) || !fname.ends_with(".o")) {
564                     return true;
565                 }
566
567                 // ok, don't skip this
568                 false
569             }),
570         )
571         .unwrap();
572
573         all_native_libs.extend(codegen_results.crate_info.native_libraries[&cnum].iter().cloned());
574     });
575     if let Err(e) = res {
576         sess.emit_fatal(e);
577     }
578
579     ab.build(out_filename);
580
581     if !all_native_libs.is_empty() {
582         if sess.opts.prints.contains(&PrintRequest::NativeStaticLibs) {
583             print_native_static_libs(sess, &all_native_libs);
584         }
585     }
586
587     Ok(())
588 }
589
590 /// Use `thorin` (rust implementation of a dwarf packaging utility) to link DWARF objects into a
591 /// DWARF package.
592 fn link_dwarf_object<'a>(
593     sess: &'a Session,
594     cg_results: &CodegenResults,
595     executable_out_filename: &Path,
596 ) {
597     let dwp_out_filename = executable_out_filename.with_extension("dwp");
598     debug!(?dwp_out_filename, ?executable_out_filename);
599
600     #[derive(Default)]
601     struct ThorinSession<Relocations> {
602         arena_data: TypedArena<Vec<u8>>,
603         arena_mmap: TypedArena<Mmap>,
604         arena_relocations: TypedArena<Relocations>,
605     }
606
607     impl<Relocations> ThorinSession<Relocations> {
608         fn alloc_mmap<'arena>(&'arena self, data: Mmap) -> &'arena Mmap {
609             (*self.arena_mmap.alloc(data)).borrow()
610         }
611     }
612
613     impl<Relocations> thorin::Session<Relocations> for ThorinSession<Relocations> {
614         fn alloc_data<'arena>(&'arena self, data: Vec<u8>) -> &'arena [u8] {
615             (*self.arena_data.alloc(data)).borrow()
616         }
617
618         fn alloc_relocation<'arena>(&'arena self, data: Relocations) -> &'arena Relocations {
619             (*self.arena_relocations.alloc(data)).borrow()
620         }
621
622         fn read_input<'arena>(&'arena self, path: &Path) -> std::io::Result<&'arena [u8]> {
623             let file = File::open(&path)?;
624             let mmap = (unsafe { Mmap::map(file) })?;
625             Ok(self.alloc_mmap(mmap))
626         }
627     }
628
629     match sess.time("run_thorin", || -> Result<(), thorin::Error> {
630         let thorin_sess = ThorinSession::default();
631         let mut package = thorin::DwarfPackage::new(&thorin_sess);
632
633         // Input objs contain .o/.dwo files from the current crate.
634         match sess.opts.unstable_opts.split_dwarf_kind {
635             SplitDwarfKind::Single => {
636                 for input_obj in cg_results.modules.iter().filter_map(|m| m.object.as_ref()) {
637                     package.add_input_object(input_obj)?;
638                 }
639             }
640             SplitDwarfKind::Split => {
641                 for input_obj in cg_results.modules.iter().filter_map(|m| m.dwarf_object.as_ref()) {
642                     package.add_input_object(input_obj)?;
643                 }
644             }
645         }
646
647         // Input rlibs contain .o/.dwo files from dependencies.
648         let input_rlibs = cg_results
649             .crate_info
650             .used_crate_source
651             .values()
652             .filter_map(|csource| csource.rlib.as_ref())
653             .map(|(path, _)| path);
654         for input_rlib in input_rlibs {
655             debug!(?input_rlib);
656             package.add_input_object(input_rlib)?;
657         }
658
659         // Failing to read the referenced objects is expected for dependencies where the path in the
660         // executable will have been cleaned by Cargo, but the referenced objects will be contained
661         // within rlibs provided as inputs.
662         //
663         // If paths have been remapped, then .o/.dwo files from the current crate also won't be
664         // found, but are provided explicitly above.
665         //
666         // Adding an executable is primarily done to make `thorin` check that all the referenced
667         // dwarf objects are found in the end.
668         package.add_executable(
669             &executable_out_filename,
670             thorin::MissingReferencedObjectBehaviour::Skip,
671         )?;
672
673         let output = package.finish()?.write()?;
674         let mut output_stream = BufWriter::new(
675             OpenOptions::new()
676                 .read(true)
677                 .write(true)
678                 .create(true)
679                 .truncate(true)
680                 .open(dwp_out_filename)?,
681         );
682         output_stream.write_all(&output)?;
683         output_stream.flush()?;
684
685         Ok(())
686     }) {
687         Ok(()) => {}
688         Err(e) => {
689             sess.emit_err(errors::ThorinErrorWrapper(e));
690             sess.abort_if_errors();
691         }
692     }
693 }
694
695 /// Create a dynamic library or executable.
696 ///
697 /// This will invoke the system linker/cc to create the resulting file. This links to all upstream
698 /// files as well.
699 fn link_natively<'a>(
700     sess: &'a Session,
701     archive_builder_builder: &dyn ArchiveBuilderBuilder,
702     crate_type: CrateType,
703     out_filename: &Path,
704     codegen_results: &CodegenResults,
705     tmpdir: &Path,
706 ) -> Result<(), ErrorGuaranteed> {
707     info!("preparing {:?} to {:?}", crate_type, out_filename);
708     let (linker_path, flavor) = linker_and_flavor(sess);
709     let mut cmd = linker_with_args(
710         &linker_path,
711         flavor,
712         sess,
713         archive_builder_builder,
714         crate_type,
715         tmpdir,
716         out_filename,
717         codegen_results,
718     )?;
719
720     linker::disable_localization(&mut cmd);
721
722     for &(ref k, ref v) in sess.target.link_env.as_ref() {
723         cmd.env(k.as_ref(), v.as_ref());
724     }
725     for k in sess.target.link_env_remove.as_ref() {
726         cmd.env_remove(k.as_ref());
727     }
728
729     if sess.opts.prints.contains(&PrintRequest::LinkArgs) {
730         println!("{:?}", &cmd);
731     }
732
733     // May have not found libraries in the right formats.
734     sess.abort_if_errors();
735
736     // Invoke the system linker
737     info!("{:?}", &cmd);
738     let retry_on_segfault = env::var("RUSTC_RETRY_LINKER_ON_SEGFAULT").is_ok();
739     let unknown_arg_regex =
740         Regex::new(r"(unknown|unrecognized) (command line )?(option|argument)").unwrap();
741     let mut prog;
742     let mut i = 0;
743     loop {
744         i += 1;
745         prog = sess.time("run_linker", || exec_linker(sess, &cmd, out_filename, tmpdir));
746         let Ok(ref output) = prog else {
747             break;
748         };
749         if output.status.success() {
750             break;
751         }
752         let mut out = output.stderr.clone();
753         out.extend(&output.stdout);
754         let out = String::from_utf8_lossy(&out);
755
756         // Check to see if the link failed with an error message that indicates it
757         // doesn't recognize the -no-pie option. If so, re-perform the link step
758         // without it. This is safe because if the linker doesn't support -no-pie
759         // then it should not default to linking executables as pie. Different
760         // versions of gcc seem to use different quotes in the error message so
761         // don't check for them.
762         if matches!(flavor, LinkerFlavor::Gnu(Cc::Yes, _))
763             && unknown_arg_regex.is_match(&out)
764             && out.contains("-no-pie")
765             && cmd.get_args().iter().any(|e| e.to_string_lossy() == "-no-pie")
766         {
767             info!("linker output: {:?}", out);
768             warn!("Linker does not support -no-pie command line option. Retrying without.");
769             for arg in cmd.take_args() {
770                 if arg.to_string_lossy() != "-no-pie" {
771                     cmd.arg(arg);
772                 }
773             }
774             info!("{:?}", &cmd);
775             continue;
776         }
777
778         // Detect '-static-pie' used with an older version of gcc or clang not supporting it.
779         // Fallback from '-static-pie' to '-static' in that case.
780         if matches!(flavor, LinkerFlavor::Gnu(Cc::Yes, _))
781             && unknown_arg_regex.is_match(&out)
782             && (out.contains("-static-pie") || out.contains("--no-dynamic-linker"))
783             && cmd.get_args().iter().any(|e| e.to_string_lossy() == "-static-pie")
784         {
785             info!("linker output: {:?}", out);
786             warn!(
787                 "Linker does not support -static-pie command line option. Retrying with -static instead."
788             );
789             // Mirror `add_(pre,post)_link_objects` to replace CRT objects.
790             let self_contained = self_contained(sess, crate_type);
791             let opts = &sess.target;
792             let pre_objects = if self_contained {
793                 &opts.pre_link_objects_self_contained
794             } else {
795                 &opts.pre_link_objects
796             };
797             let post_objects = if self_contained {
798                 &opts.post_link_objects_self_contained
799             } else {
800                 &opts.post_link_objects
801             };
802             let get_objects = |objects: &CrtObjects, kind| {
803                 objects
804                     .get(&kind)
805                     .iter()
806                     .copied()
807                     .flatten()
808                     .map(|obj| get_object_file_path(sess, obj, self_contained).into_os_string())
809                     .collect::<Vec<_>>()
810             };
811             let pre_objects_static_pie = get_objects(pre_objects, LinkOutputKind::StaticPicExe);
812             let post_objects_static_pie = get_objects(post_objects, LinkOutputKind::StaticPicExe);
813             let mut pre_objects_static = get_objects(pre_objects, LinkOutputKind::StaticNoPicExe);
814             let mut post_objects_static = get_objects(post_objects, LinkOutputKind::StaticNoPicExe);
815             // Assume that we know insertion positions for the replacement arguments from replaced
816             // arguments, which is true for all supported targets.
817             assert!(pre_objects_static.is_empty() || !pre_objects_static_pie.is_empty());
818             assert!(post_objects_static.is_empty() || !post_objects_static_pie.is_empty());
819             for arg in cmd.take_args() {
820                 if arg.to_string_lossy() == "-static-pie" {
821                     // Replace the output kind.
822                     cmd.arg("-static");
823                 } else if pre_objects_static_pie.contains(&arg) {
824                     // Replace the pre-link objects (replace the first and remove the rest).
825                     cmd.args(mem::take(&mut pre_objects_static));
826                 } else if post_objects_static_pie.contains(&arg) {
827                     // Replace the post-link objects (replace the first and remove the rest).
828                     cmd.args(mem::take(&mut post_objects_static));
829                 } else {
830                     cmd.arg(arg);
831                 }
832             }
833             info!("{:?}", &cmd);
834             continue;
835         }
836
837         // Here's a terribly awful hack that really shouldn't be present in any
838         // compiler. Here an environment variable is supported to automatically
839         // retry the linker invocation if the linker looks like it segfaulted.
840         //
841         // Gee that seems odd, normally segfaults are things we want to know
842         // about!  Unfortunately though in rust-lang/rust#38878 we're
843         // experiencing the linker segfaulting on Travis quite a bit which is
844         // causing quite a bit of pain to land PRs when they spuriously fail
845         // due to a segfault.
846         //
847         // The issue #38878 has some more debugging information on it as well,
848         // but this unfortunately looks like it's just a race condition in
849         // macOS's linker with some thread pool working in the background. It
850         // seems that no one currently knows a fix for this so in the meantime
851         // we're left with this...
852         if !retry_on_segfault || i > 3 {
853             break;
854         }
855         let msg_segv = "clang: error: unable to execute command: Segmentation fault: 11";
856         let msg_bus = "clang: error: unable to execute command: Bus error: 10";
857         if out.contains(msg_segv) || out.contains(msg_bus) {
858             warn!(
859                 ?cmd, %out,
860                 "looks like the linker segfaulted when we tried to call it, \
861                  automatically retrying again",
862             );
863             continue;
864         }
865
866         if is_illegal_instruction(&output.status) {
867             warn!(
868                 ?cmd, %out, status = %output.status,
869                 "looks like the linker hit an illegal instruction when we \
870                  tried to call it, automatically retrying again.",
871             );
872             continue;
873         }
874
875         #[cfg(unix)]
876         fn is_illegal_instruction(status: &ExitStatus) -> bool {
877             use std::os::unix::prelude::*;
878             status.signal() == Some(libc::SIGILL)
879         }
880
881         #[cfg(not(unix))]
882         fn is_illegal_instruction(_status: &ExitStatus) -> bool {
883             false
884         }
885     }
886
887     match prog {
888         Ok(prog) => {
889             if !prog.status.success() {
890                 let mut output = prog.stderr.clone();
891                 output.extend_from_slice(&prog.stdout);
892                 let escaped_output = escape_string(&output);
893                 // FIXME: Add UI tests for this error.
894                 let err = errors::LinkingFailed {
895                     linker_path: &linker_path,
896                     exit_status: prog.status,
897                     command: &cmd,
898                     escaped_output: &escaped_output,
899                 };
900                 sess.diagnostic().emit_err(err);
901                 // If MSVC's `link.exe` was expected but the return code
902                 // is not a Microsoft LNK error then suggest a way to fix or
903                 // install the Visual Studio build tools.
904                 if let Some(code) = prog.status.code() {
905                     if sess.target.is_like_msvc
906                         && flavor == LinkerFlavor::Msvc(Lld::No)
907                         // Respect the command line override
908                         && sess.opts.cg.linker.is_none()
909                         // Match exactly "link.exe"
910                         && linker_path.to_str() == Some("link.exe")
911                         // All Microsoft `link.exe` linking error codes are
912                         // four digit numbers in the range 1000 to 9999 inclusive
913                         && (code < 1000 || code > 9999)
914                     {
915                         let is_vs_installed = windows_registry::find_vs_version().is_ok();
916                         let has_linker = windows_registry::find_tool(
917                             &sess.opts.target_triple.triple(),
918                             "link.exe",
919                         )
920                         .is_some();
921
922                         sess.emit_note(errors::LinkExeUnexpectedError);
923                         if is_vs_installed && has_linker {
924                             // the linker is broken
925                             sess.emit_note(errors::RepairVSBuildTools);
926                             sess.emit_note(errors::MissingCppBuildToolComponent);
927                         } else if is_vs_installed {
928                             // the linker is not installed
929                             sess.emit_note(errors::SelectCppBuildToolWorkload);
930                         } else {
931                             // visual studio is not installed
932                             sess.emit_note(errors::VisualStudioNotInstalled);
933                         }
934                     }
935                 }
936
937                 sess.abort_if_errors();
938             }
939             info!("linker stderr:\n{}", escape_string(&prog.stderr));
940             info!("linker stdout:\n{}", escape_string(&prog.stdout));
941         }
942         Err(e) => {
943             let linker_not_found = e.kind() == io::ErrorKind::NotFound;
944
945             if linker_not_found {
946                 sess.emit_err(errors::LinkerNotFound { linker_path, error: e });
947             } else {
948                 sess.emit_err(errors::UnableToExeLinker {
949                     linker_path,
950                     error: e,
951                     command_formatted: format!("{:?}", &cmd),
952                 });
953             }
954
955             if sess.target.is_like_msvc && linker_not_found {
956                 sess.emit_note(errors::MsvcMissingLinker);
957                 sess.emit_note(errors::CheckInstalledVisualStudio);
958                 sess.emit_note(errors::UnsufficientVSCodeProduct);
959             }
960             sess.abort_if_errors();
961         }
962     }
963
964     match sess.split_debuginfo() {
965         // If split debug information is disabled or located in individual files
966         // there's nothing to do here.
967         SplitDebuginfo::Off | SplitDebuginfo::Unpacked => {}
968
969         // If packed split-debuginfo is requested, but the final compilation
970         // doesn't actually have any debug information, then we skip this step.
971         SplitDebuginfo::Packed if sess.opts.debuginfo == DebugInfo::None => {}
972
973         // On macOS the external `dsymutil` tool is used to create the packed
974         // debug information. Note that this will read debug information from
975         // the objects on the filesystem which we'll clean up later.
976         SplitDebuginfo::Packed if sess.target.is_like_osx => {
977             let prog = Command::new("dsymutil").arg(out_filename).output();
978             match prog {
979                 Ok(prog) => {
980                     if !prog.status.success() {
981                         let mut output = prog.stderr.clone();
982                         output.extend_from_slice(&prog.stdout);
983                         sess.emit_warning(errors::ProcessingDymutilFailed {
984                             status: prog.status,
985                             output: escape_string(&output),
986                         });
987                     }
988                 }
989                 Err(error) => sess.emit_fatal(errors::UnableToRunDsymutil { error }),
990             }
991         }
992
993         // On MSVC packed debug information is produced by the linker itself so
994         // there's no need to do anything else here.
995         SplitDebuginfo::Packed if sess.target.is_like_windows => {}
996
997         // ... and otherwise we're processing a `*.dwp` packed dwarf file.
998         //
999         // We cannot rely on the .o paths in the executable because they may have been
1000         // remapped by --remap-path-prefix and therefore invalid, so we need to provide
1001         // the .o/.dwo paths explicitly.
1002         SplitDebuginfo::Packed => link_dwarf_object(sess, codegen_results, out_filename),
1003     }
1004
1005     let strip = strip_value(sess);
1006
1007     if sess.target.is_like_osx {
1008         match (strip, crate_type) {
1009             (Strip::Debuginfo, _) => {
1010                 strip_symbols_with_external_utility(sess, "strip", &out_filename, Some("-S"))
1011             }
1012             // Per the manpage, `-x` is the maximum safe strip level for dynamic libraries. (#93988)
1013             (Strip::Symbols, CrateType::Dylib | CrateType::Cdylib | CrateType::ProcMacro) => {
1014                 strip_symbols_with_external_utility(sess, "strip", &out_filename, Some("-x"))
1015             }
1016             (Strip::Symbols, _) => {
1017                 strip_symbols_with_external_utility(sess, "strip", &out_filename, None)
1018             }
1019             (Strip::None, _) => {}
1020         }
1021     }
1022
1023     if sess.target.os == "illumos" {
1024         // Many illumos systems will have both the native 'strip' utility and
1025         // the GNU one. Use the native version explicitly and do not rely on
1026         // what's in the path.
1027         let stripcmd = "/usr/bin/strip";
1028         match strip {
1029             // Always preserve the symbol table (-x).
1030             Strip::Debuginfo => {
1031                 strip_symbols_with_external_utility(sess, stripcmd, &out_filename, Some("-x"))
1032             }
1033             // Strip::Symbols is handled via the --strip-all linker option.
1034             Strip::Symbols => {}
1035             Strip::None => {}
1036         }
1037     }
1038
1039     Ok(())
1040 }
1041
1042 // Temporarily support both -Z strip and -C strip
1043 fn strip_value(sess: &Session) -> Strip {
1044     match (sess.opts.unstable_opts.strip, sess.opts.cg.strip) {
1045         (s, Strip::None) => s,
1046         (_, s) => s,
1047     }
1048 }
1049
1050 fn strip_symbols_with_external_utility<'a>(
1051     sess: &'a Session,
1052     util: &str,
1053     out_filename: &Path,
1054     option: Option<&str>,
1055 ) {
1056     let mut cmd = Command::new(util);
1057     if let Some(option) = option {
1058         cmd.arg(option);
1059     }
1060     let prog = cmd.arg(out_filename).output();
1061     match prog {
1062         Ok(prog) => {
1063             if !prog.status.success() {
1064                 let mut output = prog.stderr.clone();
1065                 output.extend_from_slice(&prog.stdout);
1066                 sess.emit_warning(errors::StrippingDebugInfoFailed {
1067                     util,
1068                     status: prog.status,
1069                     output: escape_string(&output),
1070                 });
1071             }
1072         }
1073         Err(error) => sess.emit_fatal(errors::UnableToRun { util, error }),
1074     }
1075 }
1076
1077 fn escape_string(s: &[u8]) -> String {
1078     match str::from_utf8(s) {
1079         Ok(s) => s.to_owned(),
1080         Err(_) => format!("Non-UTF-8 output: {}", s.escape_ascii()),
1081     }
1082 }
1083
1084 fn add_sanitizer_libraries(sess: &Session, crate_type: CrateType, linker: &mut dyn Linker) {
1085     // On macOS the runtimes are distributed as dylibs which should be linked to
1086     // both executables and dynamic shared objects. Everywhere else the runtimes
1087     // are currently distributed as static libraries which should be linked to
1088     // executables only.
1089     let needs_runtime = !sess.target.is_like_android
1090         && match crate_type {
1091             CrateType::Executable => true,
1092             CrateType::Dylib | CrateType::Cdylib | CrateType::ProcMacro => sess.target.is_like_osx,
1093             CrateType::Rlib | CrateType::Staticlib => false,
1094         };
1095
1096     if !needs_runtime {
1097         return;
1098     }
1099
1100     let sanitizer = sess.opts.unstable_opts.sanitizer;
1101     if sanitizer.contains(SanitizerSet::ADDRESS) {
1102         link_sanitizer_runtime(sess, linker, "asan");
1103     }
1104     if sanitizer.contains(SanitizerSet::LEAK) {
1105         link_sanitizer_runtime(sess, linker, "lsan");
1106     }
1107     if sanitizer.contains(SanitizerSet::MEMORY) {
1108         link_sanitizer_runtime(sess, linker, "msan");
1109     }
1110     if sanitizer.contains(SanitizerSet::THREAD) {
1111         link_sanitizer_runtime(sess, linker, "tsan");
1112     }
1113     if sanitizer.contains(SanitizerSet::HWADDRESS) {
1114         link_sanitizer_runtime(sess, linker, "hwasan");
1115     }
1116 }
1117
1118 fn link_sanitizer_runtime(sess: &Session, linker: &mut dyn Linker, name: &str) {
1119     fn find_sanitizer_runtime(sess: &Session, filename: &str) -> PathBuf {
1120         let session_tlib =
1121             filesearch::make_target_lib_path(&sess.sysroot, sess.opts.target_triple.triple());
1122         let path = session_tlib.join(filename);
1123         if path.exists() {
1124             return session_tlib;
1125         } else {
1126             let default_sysroot = filesearch::get_or_default_sysroot();
1127             let default_tlib = filesearch::make_target_lib_path(
1128                 &default_sysroot,
1129                 sess.opts.target_triple.triple(),
1130             );
1131             return default_tlib;
1132         }
1133     }
1134
1135     let channel = option_env!("CFG_RELEASE_CHANNEL")
1136         .map(|channel| format!("-{}", channel))
1137         .unwrap_or_default();
1138
1139     if sess.target.is_like_osx {
1140         // On Apple platforms, the sanitizer is always built as a dylib, and
1141         // LLVM will link to `@rpath/*.dylib`, so we need to specify an
1142         // rpath to the library as well (the rpath should be absolute, see
1143         // PR #41352 for details).
1144         let filename = format!("rustc{}_rt.{}", channel, name);
1145         let path = find_sanitizer_runtime(&sess, &filename);
1146         let rpath = path.to_str().expect("non-utf8 component in path");
1147         linker.args(&["-Wl,-rpath", "-Xlinker", rpath]);
1148         linker.link_dylib(&filename, false, true);
1149     } else {
1150         let filename = format!("librustc{}_rt.{}.a", channel, name);
1151         let path = find_sanitizer_runtime(&sess, &filename).join(&filename);
1152         linker.link_whole_rlib(&path);
1153     }
1154 }
1155
1156 /// Returns a boolean indicating whether the specified crate should be ignored
1157 /// during LTO.
1158 ///
1159 /// Crates ignored during LTO are not lumped together in the "massive object
1160 /// file" that we create and are linked in their normal rlib states. See
1161 /// comments below for what crates do not participate in LTO.
1162 ///
1163 /// It's unusual for a crate to not participate in LTO. Typically only
1164 /// compiler-specific and unstable crates have a reason to not participate in
1165 /// LTO.
1166 pub fn ignored_for_lto(sess: &Session, info: &CrateInfo, cnum: CrateNum) -> bool {
1167     // If our target enables builtin function lowering in LLVM then the
1168     // crates providing these functions don't participate in LTO (e.g.
1169     // no_builtins or compiler builtins crates).
1170     !sess.target.no_builtins
1171         && (info.compiler_builtins == Some(cnum) || info.is_no_builtins.contains(&cnum))
1172 }
1173
1174 // This functions tries to determine the appropriate linker (and corresponding LinkerFlavor) to use
1175 pub fn linker_and_flavor(sess: &Session) -> (PathBuf, LinkerFlavor) {
1176     fn infer_from(
1177         sess: &Session,
1178         linker: Option<PathBuf>,
1179         flavor: Option<LinkerFlavor>,
1180     ) -> Option<(PathBuf, LinkerFlavor)> {
1181         match (linker, flavor) {
1182             (Some(linker), Some(flavor)) => Some((linker, flavor)),
1183             // only the linker flavor is known; use the default linker for the selected flavor
1184             (None, Some(flavor)) => Some((
1185                 PathBuf::from(match flavor {
1186                     LinkerFlavor::Gnu(Cc::Yes, _)
1187                     | LinkerFlavor::Darwin(Cc::Yes, _)
1188                     | LinkerFlavor::WasmLld(Cc::Yes)
1189                     | LinkerFlavor::Unix(Cc::Yes) => {
1190                         if cfg!(any(target_os = "solaris", target_os = "illumos")) {
1191                             // On historical Solaris systems, "cc" may have
1192                             // been Sun Studio, which is not flag-compatible
1193                             // with "gcc".  This history casts a long shadow,
1194                             // and many modern illumos distributions today
1195                             // ship GCC as "gcc" without also making it
1196                             // available as "cc".
1197                             "gcc"
1198                         } else {
1199                             "cc"
1200                         }
1201                     }
1202                     LinkerFlavor::Gnu(_, Lld::Yes)
1203                     | LinkerFlavor::Darwin(_, Lld::Yes)
1204                     | LinkerFlavor::WasmLld(..)
1205                     | LinkerFlavor::Msvc(Lld::Yes) => "lld",
1206                     LinkerFlavor::Gnu(..) | LinkerFlavor::Darwin(..) | LinkerFlavor::Unix(..) => {
1207                         "ld"
1208                     }
1209                     LinkerFlavor::Msvc(..) => "link.exe",
1210                     LinkerFlavor::EmCc => {
1211                         if cfg!(windows) {
1212                             "emcc.bat"
1213                         } else {
1214                             "emcc"
1215                         }
1216                     }
1217                     LinkerFlavor::Bpf => "bpf-linker",
1218                     LinkerFlavor::Ptx => "rust-ptx-linker",
1219                 }),
1220                 flavor,
1221             )),
1222             (Some(linker), None) => {
1223                 let stem = linker.file_stem().and_then(|stem| stem.to_str()).unwrap_or_else(|| {
1224                     sess.emit_fatal(errors::LinkerFileStem);
1225                 });
1226
1227                 let flavor = if stem == "emcc" {
1228                     LinkerFlavor::EmCc
1229                 } else if stem == "gcc"
1230                     || stem.ends_with("-gcc")
1231                     || stem == "clang"
1232                     || stem.ends_with("-clang")
1233                 {
1234                     LinkerFlavor::from_cli(LinkerFlavorCli::Gcc, &sess.target)
1235                 } else if stem == "wasm-ld" || stem.ends_with("-wasm-ld") {
1236                     LinkerFlavor::WasmLld(Cc::No)
1237                 } else if stem == "ld" || stem.ends_with("-ld") {
1238                     LinkerFlavor::from_cli(LinkerFlavorCli::Ld, &sess.target)
1239                 } else if stem == "ld.lld" {
1240                     LinkerFlavor::Gnu(Cc::No, Lld::Yes)
1241                 } else if stem == "link" {
1242                     LinkerFlavor::Msvc(Lld::No)
1243                 } else if stem == "lld-link" {
1244                     LinkerFlavor::Msvc(Lld::Yes)
1245                 } else if stem == "lld" || stem == "rust-lld" {
1246                     let lld_flavor = sess.target.linker_flavor.lld_flavor();
1247                     LinkerFlavor::from_cli(LinkerFlavorCli::Lld(lld_flavor), &sess.target)
1248                 } else {
1249                     // fall back to the value in the target spec
1250                     sess.target.linker_flavor
1251                 };
1252
1253                 Some((linker, flavor))
1254             }
1255             (None, None) => None,
1256         }
1257     }
1258
1259     // linker and linker flavor specified via command line have precedence over what the target
1260     // specification specifies
1261     let linker_flavor =
1262         sess.opts.cg.linker_flavor.map(|flavor| LinkerFlavor::from_cli(flavor, &sess.target));
1263     if let Some(ret) = infer_from(sess, sess.opts.cg.linker.clone(), linker_flavor) {
1264         return ret;
1265     }
1266
1267     if let Some(ret) = infer_from(
1268         sess,
1269         sess.target.linker.as_deref().map(PathBuf::from),
1270         Some(sess.target.linker_flavor),
1271     ) {
1272         return ret;
1273     }
1274
1275     bug!("Not enough information provided to determine how to invoke the linker");
1276 }
1277
1278 /// Returns a pair of boolean indicating whether we should preserve the object and
1279 /// dwarf object files on the filesystem for their debug information. This is often
1280 /// useful with split-dwarf like schemes.
1281 fn preserve_objects_for_their_debuginfo(sess: &Session) -> (bool, bool) {
1282     // If the objects don't have debuginfo there's nothing to preserve.
1283     if sess.opts.debuginfo == config::DebugInfo::None {
1284         return (false, false);
1285     }
1286
1287     // If we're only producing artifacts that are archives, no need to preserve
1288     // the objects as they're losslessly contained inside the archives.
1289     if sess.crate_types().iter().all(|&x| x.is_archive()) {
1290         return (false, false);
1291     }
1292
1293     match (sess.split_debuginfo(), sess.opts.unstable_opts.split_dwarf_kind) {
1294         // If there is no split debuginfo then do not preserve objects.
1295         (SplitDebuginfo::Off, _) => (false, false),
1296         // If there is packed split debuginfo, then the debuginfo in the objects
1297         // has been packaged and the objects can be deleted.
1298         (SplitDebuginfo::Packed, _) => (false, false),
1299         // If there is unpacked split debuginfo and the current target can not use
1300         // split dwarf, then keep objects.
1301         (SplitDebuginfo::Unpacked, _) if !sess.target_can_use_split_dwarf() => (true, false),
1302         // If there is unpacked split debuginfo and the target can use split dwarf, then
1303         // keep the object containing that debuginfo (whether that is an object file or
1304         // dwarf object file depends on the split dwarf kind).
1305         (SplitDebuginfo::Unpacked, SplitDwarfKind::Single) => (true, false),
1306         (SplitDebuginfo::Unpacked, SplitDwarfKind::Split) => (false, true),
1307     }
1308 }
1309
1310 fn archive_search_paths(sess: &Session) -> Vec<PathBuf> {
1311     sess.target_filesearch(PathKind::Native).search_path_dirs()
1312 }
1313
1314 #[derive(PartialEq)]
1315 enum RlibFlavor {
1316     Normal,
1317     StaticlibBase,
1318 }
1319
1320 fn print_native_static_libs(sess: &Session, all_native_libs: &[NativeLib]) {
1321     let lib_args: Vec<_> = all_native_libs
1322         .iter()
1323         .filter(|l| relevant_lib(sess, l))
1324         .filter_map(|lib| {
1325             let name = lib.name?;
1326             match lib.kind {
1327                 NativeLibKind::Static { bundle: Some(false), .. }
1328                 | NativeLibKind::Dylib { .. }
1329                 | NativeLibKind::Unspecified => {
1330                     let verbatim = lib.verbatim.unwrap_or(false);
1331                     if sess.target.is_like_msvc {
1332                         Some(format!("{}{}", name, if verbatim { "" } else { ".lib" }))
1333                     } else if sess.target.linker_flavor.is_gnu() {
1334                         Some(format!("-l{}{}", if verbatim { ":" } else { "" }, name))
1335                     } else {
1336                         Some(format!("-l{}", name))
1337                     }
1338                 }
1339                 NativeLibKind::Framework { .. } => {
1340                     // ld-only syntax, since there are no frameworks in MSVC
1341                     Some(format!("-framework {}", name))
1342                 }
1343                 // These are included, no need to print them
1344                 NativeLibKind::Static { bundle: None | Some(true), .. }
1345                 | NativeLibKind::LinkArg
1346                 | NativeLibKind::RawDylib => None,
1347             }
1348         })
1349         .collect();
1350     if !lib_args.is_empty() {
1351         sess.emit_note(errors::StaticLibraryNativeArtifacts);
1352         // Prefix for greppability
1353         sess.emit_note(errors::NativeStaticLibs { arguments: lib_args.join(" ") });
1354     }
1355 }
1356
1357 fn get_object_file_path(sess: &Session, name: &str, self_contained: bool) -> PathBuf {
1358     let fs = sess.target_filesearch(PathKind::Native);
1359     let file_path = fs.get_lib_path().join(name);
1360     if file_path.exists() {
1361         return file_path;
1362     }
1363     // Special directory with objects used only in self-contained linkage mode
1364     if self_contained {
1365         let file_path = fs.get_self_contained_lib_path().join(name);
1366         if file_path.exists() {
1367             return file_path;
1368         }
1369     }
1370     for search_path in fs.search_paths() {
1371         let file_path = search_path.dir.join(name);
1372         if file_path.exists() {
1373             return file_path;
1374         }
1375     }
1376     PathBuf::from(name)
1377 }
1378
1379 fn exec_linker(
1380     sess: &Session,
1381     cmd: &Command,
1382     out_filename: &Path,
1383     tmpdir: &Path,
1384 ) -> io::Result<Output> {
1385     // When attempting to spawn the linker we run a risk of blowing out the
1386     // size limits for spawning a new process with respect to the arguments
1387     // we pass on the command line.
1388     //
1389     // Here we attempt to handle errors from the OS saying "your list of
1390     // arguments is too big" by reinvoking the linker again with an `@`-file
1391     // that contains all the arguments. The theory is that this is then
1392     // accepted on all linkers and the linker will read all its options out of
1393     // there instead of looking at the command line.
1394     if !cmd.very_likely_to_exceed_some_spawn_limit() {
1395         match cmd.command().stdout(Stdio::piped()).stderr(Stdio::piped()).spawn() {
1396             Ok(child) => {
1397                 let output = child.wait_with_output();
1398                 flush_linked_file(&output, out_filename)?;
1399                 return output;
1400             }
1401             Err(ref e) if command_line_too_big(e) => {
1402                 info!("command line to linker was too big: {}", e);
1403             }
1404             Err(e) => return Err(e),
1405         }
1406     }
1407
1408     info!("falling back to passing arguments to linker via an @-file");
1409     let mut cmd2 = cmd.clone();
1410     let mut args = String::new();
1411     for arg in cmd2.take_args() {
1412         args.push_str(
1413             &Escape { arg: arg.to_str().unwrap(), is_like_msvc: sess.target.is_like_msvc }
1414                 .to_string(),
1415         );
1416         args.push('\n');
1417     }
1418     let file = tmpdir.join("linker-arguments");
1419     let bytes = if sess.target.is_like_msvc {
1420         let mut out = Vec::with_capacity((1 + args.len()) * 2);
1421         // start the stream with a UTF-16 BOM
1422         for c in std::iter::once(0xFEFF).chain(args.encode_utf16()) {
1423             // encode in little endian
1424             out.push(c as u8);
1425             out.push((c >> 8) as u8);
1426         }
1427         out
1428     } else {
1429         args.into_bytes()
1430     };
1431     fs::write(&file, &bytes)?;
1432     cmd2.arg(format!("@{}", file.display()));
1433     info!("invoking linker {:?}", cmd2);
1434     let output = cmd2.output();
1435     flush_linked_file(&output, out_filename)?;
1436     return output;
1437
1438     #[cfg(not(windows))]
1439     fn flush_linked_file(_: &io::Result<Output>, _: &Path) -> io::Result<()> {
1440         Ok(())
1441     }
1442
1443     #[cfg(windows)]
1444     fn flush_linked_file(
1445         command_output: &io::Result<Output>,
1446         out_filename: &Path,
1447     ) -> io::Result<()> {
1448         // On Windows, under high I/O load, output buffers are sometimes not flushed,
1449         // even long after process exit, causing nasty, non-reproducible output bugs.
1450         //
1451         // File::sync_all() calls FlushFileBuffers() down the line, which solves the problem.
1452         //
1453         // А full writeup of the original Chrome bug can be found at
1454         // randomascii.wordpress.com/2018/02/25/compiler-bug-linker-bug-windows-kernel-bug/amp
1455
1456         if let &Ok(ref out) = command_output {
1457             if out.status.success() {
1458                 if let Ok(of) = fs::OpenOptions::new().write(true).open(out_filename) {
1459                     of.sync_all()?;
1460                 }
1461             }
1462         }
1463
1464         Ok(())
1465     }
1466
1467     #[cfg(unix)]
1468     fn command_line_too_big(err: &io::Error) -> bool {
1469         err.raw_os_error() == Some(::libc::E2BIG)
1470     }
1471
1472     #[cfg(windows)]
1473     fn command_line_too_big(err: &io::Error) -> bool {
1474         const ERROR_FILENAME_EXCED_RANGE: i32 = 206;
1475         err.raw_os_error() == Some(ERROR_FILENAME_EXCED_RANGE)
1476     }
1477
1478     #[cfg(not(any(unix, windows)))]
1479     fn command_line_too_big(_: &io::Error) -> bool {
1480         false
1481     }
1482
1483     struct Escape<'a> {
1484         arg: &'a str,
1485         is_like_msvc: bool,
1486     }
1487
1488     impl<'a> fmt::Display for Escape<'a> {
1489         fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1490             if self.is_like_msvc {
1491                 // This is "documented" at
1492                 // https://docs.microsoft.com/en-us/cpp/build/reference/at-specify-a-linker-response-file
1493                 //
1494                 // Unfortunately there's not a great specification of the
1495                 // syntax I could find online (at least) but some local
1496                 // testing showed that this seemed sufficient-ish to catch
1497                 // at least a few edge cases.
1498                 write!(f, "\"")?;
1499                 for c in self.arg.chars() {
1500                     match c {
1501                         '"' => write!(f, "\\{}", c)?,
1502                         c => write!(f, "{}", c)?,
1503                     }
1504                 }
1505                 write!(f, "\"")?;
1506             } else {
1507                 // This is documented at https://linux.die.net/man/1/ld, namely:
1508                 //
1509                 // > Options in file are separated by whitespace. A whitespace
1510                 // > character may be included in an option by surrounding the
1511                 // > entire option in either single or double quotes. Any
1512                 // > character (including a backslash) may be included by
1513                 // > prefixing the character to be included with a backslash.
1514                 //
1515                 // We put an argument on each line, so all we need to do is
1516                 // ensure the line is interpreted as one whole argument.
1517                 for c in self.arg.chars() {
1518                     match c {
1519                         '\\' | ' ' => write!(f, "\\{}", c)?,
1520                         c => write!(f, "{}", c)?,
1521                     }
1522                 }
1523             }
1524             Ok(())
1525         }
1526     }
1527 }
1528
1529 fn link_output_kind(sess: &Session, crate_type: CrateType) -> LinkOutputKind {
1530     let kind = match (crate_type, sess.crt_static(Some(crate_type)), sess.relocation_model()) {
1531         (CrateType::Executable, _, _) if sess.is_wasi_reactor() => LinkOutputKind::WasiReactorExe,
1532         (CrateType::Executable, false, RelocModel::Pic | RelocModel::Pie) => {
1533             LinkOutputKind::DynamicPicExe
1534         }
1535         (CrateType::Executable, false, _) => LinkOutputKind::DynamicNoPicExe,
1536         (CrateType::Executable, true, RelocModel::Pic | RelocModel::Pie) => {
1537             LinkOutputKind::StaticPicExe
1538         }
1539         (CrateType::Executable, true, _) => LinkOutputKind::StaticNoPicExe,
1540         (_, true, _) => LinkOutputKind::StaticDylib,
1541         (_, false, _) => LinkOutputKind::DynamicDylib,
1542     };
1543
1544     // Adjust the output kind to target capabilities.
1545     let opts = &sess.target;
1546     let pic_exe_supported = opts.position_independent_executables;
1547     let static_pic_exe_supported = opts.static_position_independent_executables;
1548     let static_dylib_supported = opts.crt_static_allows_dylibs;
1549     match kind {
1550         LinkOutputKind::DynamicPicExe if !pic_exe_supported => LinkOutputKind::DynamicNoPicExe,
1551         LinkOutputKind::StaticPicExe if !static_pic_exe_supported => LinkOutputKind::StaticNoPicExe,
1552         LinkOutputKind::StaticDylib if !static_dylib_supported => LinkOutputKind::DynamicDylib,
1553         _ => kind,
1554     }
1555 }
1556
1557 // Returns true if linker is located within sysroot
1558 fn detect_self_contained_mingw(sess: &Session) -> bool {
1559     let (linker, _) = linker_and_flavor(&sess);
1560     // Assume `-C linker=rust-lld` as self-contained mode
1561     if linker == Path::new("rust-lld") {
1562         return true;
1563     }
1564     let linker_with_extension = if cfg!(windows) && linker.extension().is_none() {
1565         linker.with_extension("exe")
1566     } else {
1567         linker
1568     };
1569     for dir in env::split_paths(&env::var_os("PATH").unwrap_or_default()) {
1570         let full_path = dir.join(&linker_with_extension);
1571         // If linker comes from sysroot assume self-contained mode
1572         if full_path.is_file() && !full_path.starts_with(&sess.sysroot) {
1573             return false;
1574         }
1575     }
1576     true
1577 }
1578
1579 /// Various toolchain components used during linking are used from rustc distribution
1580 /// instead of being found somewhere on the host system.
1581 /// We only provide such support for a very limited number of targets.
1582 fn self_contained(sess: &Session, crate_type: CrateType) -> bool {
1583     if let Some(self_contained) = sess.opts.cg.link_self_contained {
1584         return self_contained;
1585     }
1586
1587     match sess.target.link_self_contained {
1588         LinkSelfContainedDefault::False => false,
1589         LinkSelfContainedDefault::True => true,
1590         // FIXME: Find a better heuristic for "native musl toolchain is available",
1591         // based on host and linker path, for example.
1592         // (https://github.com/rust-lang/rust/pull/71769#issuecomment-626330237).
1593         LinkSelfContainedDefault::Musl => sess.crt_static(Some(crate_type)),
1594         LinkSelfContainedDefault::Mingw => {
1595             sess.host == sess.target
1596                 && sess.target.vendor != "uwp"
1597                 && detect_self_contained_mingw(&sess)
1598         }
1599     }
1600 }
1601
1602 /// Add pre-link object files defined by the target spec.
1603 fn add_pre_link_objects(
1604     cmd: &mut dyn Linker,
1605     sess: &Session,
1606     flavor: LinkerFlavor,
1607     link_output_kind: LinkOutputKind,
1608     self_contained: bool,
1609 ) {
1610     // FIXME: we are currently missing some infra here (per-linker-flavor CRT objects),
1611     // so Fuchsia has to be special-cased.
1612     let opts = &sess.target;
1613     let empty = Default::default();
1614     let objects = if self_contained {
1615         &opts.pre_link_objects_self_contained
1616     } else if !(sess.target.os == "fuchsia" && matches!(flavor, LinkerFlavor::Gnu(Cc::Yes, _))) {
1617         &opts.pre_link_objects
1618     } else {
1619         &empty
1620     };
1621     for obj in objects.get(&link_output_kind).iter().copied().flatten() {
1622         cmd.add_object(&get_object_file_path(sess, obj, self_contained));
1623     }
1624 }
1625
1626 /// Add post-link object files defined by the target spec.
1627 fn add_post_link_objects(
1628     cmd: &mut dyn Linker,
1629     sess: &Session,
1630     link_output_kind: LinkOutputKind,
1631     self_contained: bool,
1632 ) {
1633     let objects = if self_contained {
1634         &sess.target.post_link_objects_self_contained
1635     } else {
1636         &sess.target.post_link_objects
1637     };
1638     for obj in objects.get(&link_output_kind).iter().copied().flatten() {
1639         cmd.add_object(&get_object_file_path(sess, obj, self_contained));
1640     }
1641 }
1642
1643 /// Add arbitrary "pre-link" args defined by the target spec or from command line.
1644 /// FIXME: Determine where exactly these args need to be inserted.
1645 fn add_pre_link_args(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) {
1646     if let Some(args) = sess.target.pre_link_args.get(&flavor) {
1647         cmd.args(args.iter().map(Deref::deref));
1648     }
1649     cmd.args(&sess.opts.unstable_opts.pre_link_args);
1650 }
1651
1652 /// Add a link script embedded in the target, if applicable.
1653 fn add_link_script(cmd: &mut dyn Linker, sess: &Session, tmpdir: &Path, crate_type: CrateType) {
1654     match (crate_type, &sess.target.link_script) {
1655         (CrateType::Cdylib | CrateType::Executable, Some(script)) => {
1656             if !sess.target.linker_flavor.is_gnu() {
1657                 sess.emit_fatal(errors::LinkScriptUnavailable);
1658             }
1659
1660             let file_name = ["rustc", &sess.target.llvm_target, "linkfile.ld"].join("-");
1661
1662             let path = tmpdir.join(file_name);
1663             if let Err(error) = fs::write(&path, script.as_ref()) {
1664                 sess.emit_fatal(errors::LinkScriptWriteFailure { path, error });
1665             }
1666
1667             cmd.arg("--script");
1668             cmd.arg(path);
1669         }
1670         _ => {}
1671     }
1672 }
1673
1674 /// Add arbitrary "user defined" args defined from command line.
1675 /// FIXME: Determine where exactly these args need to be inserted.
1676 fn add_user_defined_link_args(cmd: &mut dyn Linker, sess: &Session) {
1677     cmd.args(&sess.opts.cg.link_args);
1678 }
1679
1680 /// Add arbitrary "late link" args defined by the target spec.
1681 /// FIXME: Determine where exactly these args need to be inserted.
1682 fn add_late_link_args(
1683     cmd: &mut dyn Linker,
1684     sess: &Session,
1685     flavor: LinkerFlavor,
1686     crate_type: CrateType,
1687     codegen_results: &CodegenResults,
1688 ) {
1689     let any_dynamic_crate = crate_type == CrateType::Dylib
1690         || codegen_results.crate_info.dependency_formats.iter().any(|(ty, list)| {
1691             *ty == crate_type && list.iter().any(|&linkage| linkage == Linkage::Dynamic)
1692         });
1693     if any_dynamic_crate {
1694         if let Some(args) = sess.target.late_link_args_dynamic.get(&flavor) {
1695             cmd.args(args.iter().map(Deref::deref));
1696         }
1697     } else {
1698         if let Some(args) = sess.target.late_link_args_static.get(&flavor) {
1699             cmd.args(args.iter().map(Deref::deref));
1700         }
1701     }
1702     if let Some(args) = sess.target.late_link_args.get(&flavor) {
1703         cmd.args(args.iter().map(Deref::deref));
1704     }
1705 }
1706
1707 /// Add arbitrary "post-link" args defined by the target spec.
1708 /// FIXME: Determine where exactly these args need to be inserted.
1709 fn add_post_link_args(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) {
1710     if let Some(args) = sess.target.post_link_args.get(&flavor) {
1711         cmd.args(args.iter().map(Deref::deref));
1712     }
1713 }
1714
1715 /// Add a synthetic object file that contains reference to all symbols that we want to expose to
1716 /// the linker.
1717 ///
1718 /// Background: we implement rlibs as static library (archives). Linkers treat archives
1719 /// differently from object files: all object files participate in linking, while archives will
1720 /// only participate in linking if they can satisfy at least one undefined reference (version
1721 /// scripts doesn't count). This causes `#[no_mangle]` or `#[used]` items to be ignored by the
1722 /// linker, and since they never participate in the linking, using `KEEP` in the linker scripts
1723 /// can't keep them either. This causes #47384.
1724 ///
1725 /// To keep them around, we could use `--whole-archive` and equivalents to force rlib to
1726 /// participate in linking like object files, but this proves to be expensive (#93791). Therefore
1727 /// we instead just introduce an undefined reference to them. This could be done by `-u` command
1728 /// line option to the linker or `EXTERN(...)` in linker scripts, however they does not only
1729 /// introduce an undefined reference, but also make them the GC roots, preventing `--gc-sections`
1730 /// from removing them, and this is especially problematic for embedded programming where every
1731 /// byte counts.
1732 ///
1733 /// This method creates a synthetic object file, which contains undefined references to all symbols
1734 /// that are necessary for the linking. They are only present in symbol table but not actually
1735 /// used in any sections, so the linker will therefore pick relevant rlibs for linking, but
1736 /// unused `#[no_mangle]` or `#[used]` can still be discard by GC sections.
1737 ///
1738 /// There's a few internal crates in the standard library (aka libcore and
1739 /// libstd) which actually have a circular dependence upon one another. This
1740 /// currently arises through "weak lang items" where libcore requires things
1741 /// like `rust_begin_unwind` but libstd ends up defining it. To get this
1742 /// circular dependence to work correctly we declare some of these things
1743 /// in this synthetic object.
1744 fn add_linked_symbol_object(
1745     cmd: &mut dyn Linker,
1746     sess: &Session,
1747     tmpdir: &Path,
1748     symbols: &[(String, SymbolExportKind)],
1749 ) {
1750     if symbols.is_empty() {
1751         return;
1752     }
1753
1754     let Some(mut file) = super::metadata::create_object_file(sess) else {
1755         return;
1756     };
1757
1758     // NOTE(nbdd0121): MSVC will hang if the input object file contains no sections,
1759     // so add an empty section.
1760     if file.format() == object::BinaryFormat::Coff {
1761         file.add_section(Vec::new(), ".text".into(), object::SectionKind::Text);
1762
1763         // We handle the name decoration of COFF targets in `symbol_export.rs`, so disable the
1764         // default mangler in `object` crate.
1765         file.set_mangling(object::write::Mangling::None);
1766
1767         // Add feature flags to the object file. On MSVC this is optional but LLD will complain if
1768         // not present.
1769         let mut feature = 0;
1770
1771         if file.architecture() == object::Architecture::I386 {
1772             // Indicate that all SEH handlers are registered in .sxdata section.
1773             // We don't have generate any code, so we don't need .sxdata section but LLD still
1774             // expects us to set this bit (see #96498).
1775             // Reference: https://docs.microsoft.com/en-us/windows/win32/debug/pe-format
1776             feature |= 1;
1777         }
1778
1779         file.add_symbol(object::write::Symbol {
1780             name: "@feat.00".into(),
1781             value: feature,
1782             size: 0,
1783             kind: object::SymbolKind::Data,
1784             scope: object::SymbolScope::Compilation,
1785             weak: false,
1786             section: object::write::SymbolSection::Absolute,
1787             flags: object::SymbolFlags::None,
1788         });
1789     }
1790
1791     for (sym, kind) in symbols.iter() {
1792         file.add_symbol(object::write::Symbol {
1793             name: sym.clone().into(),
1794             value: 0,
1795             size: 0,
1796             kind: match kind {
1797                 SymbolExportKind::Text => object::SymbolKind::Text,
1798                 SymbolExportKind::Data => object::SymbolKind::Data,
1799                 SymbolExportKind::Tls => object::SymbolKind::Tls,
1800             },
1801             scope: object::SymbolScope::Unknown,
1802             weak: false,
1803             section: object::write::SymbolSection::Undefined,
1804             flags: object::SymbolFlags::None,
1805         });
1806     }
1807
1808     let path = tmpdir.join("symbols.o");
1809     let result = std::fs::write(&path, file.write().unwrap());
1810     if let Err(error) = result {
1811         sess.emit_fatal(errors::FailedToWrite { path, error });
1812     }
1813     cmd.add_object(&path);
1814 }
1815
1816 /// Add object files containing code from the current crate.
1817 fn add_local_crate_regular_objects(cmd: &mut dyn Linker, codegen_results: &CodegenResults) {
1818     for obj in codegen_results.modules.iter().filter_map(|m| m.object.as_ref()) {
1819         cmd.add_object(obj);
1820     }
1821 }
1822
1823 /// Add object files for allocator code linked once for the whole crate tree.
1824 fn add_local_crate_allocator_objects(cmd: &mut dyn Linker, codegen_results: &CodegenResults) {
1825     if let Some(obj) = codegen_results.allocator_module.as_ref().and_then(|m| m.object.as_ref()) {
1826         cmd.add_object(obj);
1827     }
1828 }
1829
1830 /// Add object files containing metadata for the current crate.
1831 fn add_local_crate_metadata_objects(
1832     cmd: &mut dyn Linker,
1833     crate_type: CrateType,
1834     codegen_results: &CodegenResults,
1835 ) {
1836     // When linking a dynamic library, we put the metadata into a section of the
1837     // executable. This metadata is in a separate object file from the main
1838     // object file, so we link that in here.
1839     if crate_type == CrateType::Dylib || crate_type == CrateType::ProcMacro {
1840         if let Some(obj) = codegen_results.metadata_module.as_ref().and_then(|m| m.object.as_ref())
1841         {
1842             cmd.add_object(obj);
1843         }
1844     }
1845 }
1846
1847 /// Add sysroot and other globally set directories to the directory search list.
1848 fn add_library_search_dirs(cmd: &mut dyn Linker, sess: &Session, self_contained: bool) {
1849     // The default library location, we need this to find the runtime.
1850     // The location of crates will be determined as needed.
1851     let lib_path = sess.target_filesearch(PathKind::All).get_lib_path();
1852     cmd.include_path(&fix_windows_verbatim_for_gcc(&lib_path));
1853
1854     // Special directory with libraries used only in self-contained linkage mode
1855     if self_contained {
1856         let lib_path = sess.target_filesearch(PathKind::All).get_self_contained_lib_path();
1857         cmd.include_path(&fix_windows_verbatim_for_gcc(&lib_path));
1858     }
1859 }
1860
1861 /// Add options making relocation sections in the produced ELF files read-only
1862 /// and suppressing lazy binding.
1863 fn add_relro_args(cmd: &mut dyn Linker, sess: &Session) {
1864     match sess.opts.unstable_opts.relro_level.unwrap_or(sess.target.relro_level) {
1865         RelroLevel::Full => cmd.full_relro(),
1866         RelroLevel::Partial => cmd.partial_relro(),
1867         RelroLevel::Off => cmd.no_relro(),
1868         RelroLevel::None => {}
1869     }
1870 }
1871
1872 /// Add library search paths used at runtime by dynamic linkers.
1873 fn add_rpath_args(
1874     cmd: &mut dyn Linker,
1875     sess: &Session,
1876     codegen_results: &CodegenResults,
1877     out_filename: &Path,
1878 ) {
1879     // FIXME (#2397): At some point we want to rpath our guesses as to
1880     // where extern libraries might live, based on the
1881     // add_lib_search_paths
1882     if sess.opts.cg.rpath {
1883         let libs = codegen_results
1884             .crate_info
1885             .used_crates
1886             .iter()
1887             .filter_map(|cnum| {
1888                 codegen_results.crate_info.used_crate_source[cnum]
1889                     .dylib
1890                     .as_ref()
1891                     .map(|(path, _)| &**path)
1892             })
1893             .collect::<Vec<_>>();
1894         let mut rpath_config = RPathConfig {
1895             libs: &*libs,
1896             out_filename: out_filename.to_path_buf(),
1897             has_rpath: sess.target.has_rpath,
1898             is_like_osx: sess.target.is_like_osx,
1899             linker_is_gnu: sess.target.linker_flavor.is_gnu(),
1900         };
1901         cmd.args(&rpath::get_rpath_flags(&mut rpath_config));
1902     }
1903 }
1904
1905 /// Produce the linker command line containing linker path and arguments.
1906 ///
1907 /// When comments in the function say "order-(in)dependent" they mean order-dependence between
1908 /// options and libraries/object files. For example `--whole-archive` (order-dependent) applies
1909 /// to specific libraries passed after it, and `-o` (output file, order-independent) applies
1910 /// to the linking process as a whole.
1911 /// Order-independent options may still override each other in order-dependent fashion,
1912 /// e.g `--foo=yes --foo=no` may be equivalent to `--foo=no`.
1913 fn linker_with_args<'a>(
1914     path: &Path,
1915     flavor: LinkerFlavor,
1916     sess: &'a Session,
1917     archive_builder_builder: &dyn ArchiveBuilderBuilder,
1918     crate_type: CrateType,
1919     tmpdir: &Path,
1920     out_filename: &Path,
1921     codegen_results: &CodegenResults,
1922 ) -> Result<Command, ErrorGuaranteed> {
1923     let self_contained = self_contained(sess, crate_type);
1924     let cmd = &mut *super::linker::get_linker(
1925         sess,
1926         path,
1927         flavor,
1928         self_contained,
1929         &codegen_results.crate_info.target_cpu,
1930     );
1931     let link_output_kind = link_output_kind(sess, crate_type);
1932
1933     // ------------ Early order-dependent options ------------
1934
1935     // If we're building something like a dynamic library then some platforms
1936     // need to make sure that all symbols are exported correctly from the
1937     // dynamic library.
1938     // Must be passed before any libraries to prevent the symbols to export from being thrown away,
1939     // at least on some platforms (e.g. windows-gnu).
1940     cmd.export_symbols(
1941         tmpdir,
1942         crate_type,
1943         &codegen_results.crate_info.exported_symbols[&crate_type],
1944     );
1945
1946     // Can be used for adding custom CRT objects or overriding order-dependent options above.
1947     // FIXME: In practice built-in target specs use this for arbitrary order-independent options,
1948     // introduce a target spec option for order-independent linker options and migrate built-in
1949     // specs to it.
1950     add_pre_link_args(cmd, sess, flavor);
1951
1952     // ------------ Object code and libraries, order-dependent ------------
1953
1954     // Pre-link CRT objects.
1955     add_pre_link_objects(cmd, sess, flavor, link_output_kind, self_contained);
1956
1957     add_linked_symbol_object(
1958         cmd,
1959         sess,
1960         tmpdir,
1961         &codegen_results.crate_info.linked_symbols[&crate_type],
1962     );
1963
1964     // Sanitizer libraries.
1965     add_sanitizer_libraries(sess, crate_type, cmd);
1966
1967     // Object code from the current crate.
1968     // Take careful note of the ordering of the arguments we pass to the linker
1969     // here. Linkers will assume that things on the left depend on things to the
1970     // right. Things on the right cannot depend on things on the left. This is
1971     // all formally implemented in terms of resolving symbols (libs on the right
1972     // resolve unknown symbols of libs on the left, but not vice versa).
1973     //
1974     // For this reason, we have organized the arguments we pass to the linker as
1975     // such:
1976     //
1977     // 1. The local object that LLVM just generated
1978     // 2. Local native libraries
1979     // 3. Upstream rust libraries
1980     // 4. Upstream native libraries
1981     //
1982     // The rationale behind this ordering is that those items lower down in the
1983     // list can't depend on items higher up in the list. For example nothing can
1984     // depend on what we just generated (e.g., that'd be a circular dependency).
1985     // Upstream rust libraries are not supposed to depend on our local native
1986     // libraries as that would violate the structure of the DAG, in that
1987     // scenario they are required to link to them as well in a shared fashion.
1988     //
1989     // Note that upstream rust libraries may contain native dependencies as
1990     // well, but they also can't depend on what we just started to add to the
1991     // link line. And finally upstream native libraries can't depend on anything
1992     // in this DAG so far because they can only depend on other native libraries
1993     // and such dependencies are also required to be specified.
1994     add_local_crate_regular_objects(cmd, codegen_results);
1995     add_local_crate_metadata_objects(cmd, crate_type, codegen_results);
1996     add_local_crate_allocator_objects(cmd, codegen_results);
1997
1998     // Avoid linking to dynamic libraries unless they satisfy some undefined symbols
1999     // at the point at which they are specified on the command line.
2000     // Must be passed before any (dynamic) libraries to have effect on them.
2001     // On Solaris-like systems, `-z ignore` acts as both `--as-needed` and `--gc-sections`
2002     // so it will ignore unreferenced ELF sections from relocatable objects.
2003     // For that reason, we put this flag after metadata objects as they would otherwise be removed.
2004     // FIXME: Support more fine-grained dead code removal on Solaris/illumos
2005     // and move this option back to the top.
2006     cmd.add_as_needed();
2007
2008     // Local native libraries of all kinds.
2009     //
2010     // If `-Zlink-native-libraries=false` is set, then the assumption is that an
2011     // external build system already has the native dependencies defined, and it
2012     // will provide them to the linker itself.
2013     if sess.opts.unstable_opts.link_native_libraries {
2014         add_local_native_libraries(cmd, sess, codegen_results);
2015     }
2016
2017     // Upstream rust libraries and their (possibly bundled) static native libraries.
2018     add_upstream_rust_crates(
2019         cmd,
2020         sess,
2021         archive_builder_builder,
2022         codegen_results,
2023         crate_type,
2024         tmpdir,
2025     );
2026
2027     // Dynamic native libraries from upstream crates.
2028     //
2029     // FIXME: Merge this to `add_upstream_rust_crates` so that all native libraries are linked
2030     // together with their respective upstream crates, and in their originally specified order.
2031     // This may be slightly breaking due to our use of `--as-needed` and needs a crater run.
2032     if sess.opts.unstable_opts.link_native_libraries {
2033         add_upstream_native_libraries(cmd, sess, codegen_results);
2034     }
2035
2036     // Link with the import library generated for any raw-dylib functions.
2037     for (raw_dylib_name, raw_dylib_imports) in
2038         collate_raw_dylibs(sess, codegen_results.crate_info.used_libraries.iter())?
2039     {
2040         cmd.add_object(&archive_builder_builder.create_dll_import_lib(
2041             sess,
2042             &raw_dylib_name,
2043             &raw_dylib_imports,
2044             tmpdir,
2045             true,
2046         ));
2047     }
2048     // As with add_upstream_native_libraries, we need to add the upstream raw-dylib symbols in case
2049     // they are used within inlined functions or instantiated generic functions. We do this *after*
2050     // handling the raw-dylib symbols in the current crate to make sure that those are chosen first
2051     // by the linker.
2052     let (_, dependency_linkage) = codegen_results
2053         .crate_info
2054         .dependency_formats
2055         .iter()
2056         .find(|(ty, _)| *ty == crate_type)
2057         .expect("failed to find crate type in dependency format list");
2058     let native_libraries_from_nonstatics = codegen_results
2059         .crate_info
2060         .native_libraries
2061         .iter()
2062         .filter_map(|(cnum, libraries)| {
2063             (dependency_linkage[cnum.as_usize() - 1] != Linkage::Static).then(|| libraries)
2064         })
2065         .flatten();
2066     for (raw_dylib_name, raw_dylib_imports) in
2067         collate_raw_dylibs(sess, native_libraries_from_nonstatics)?
2068     {
2069         cmd.add_object(&archive_builder_builder.create_dll_import_lib(
2070             sess,
2071             &raw_dylib_name,
2072             &raw_dylib_imports,
2073             tmpdir,
2074             false,
2075         ));
2076     }
2077
2078     // Library linking above uses some global state for things like `-Bstatic`/`-Bdynamic` to make
2079     // command line shorter, reset it to default here before adding more libraries.
2080     cmd.reset_per_library_state();
2081
2082     // FIXME: Built-in target specs occasionally use this for linking system libraries,
2083     // eliminate all such uses by migrating them to `#[link]` attributes in `lib(std,c,unwind)`
2084     // and remove the option.
2085     add_late_link_args(cmd, sess, flavor, crate_type, codegen_results);
2086
2087     // ------------ Arbitrary order-independent options ------------
2088
2089     // Add order-independent options determined by rustc from its compiler options,
2090     // target properties and source code.
2091     add_order_independent_options(
2092         cmd,
2093         sess,
2094         link_output_kind,
2095         self_contained,
2096         flavor,
2097         crate_type,
2098         codegen_results,
2099         out_filename,
2100         tmpdir,
2101     );
2102
2103     // Can be used for arbitrary order-independent options.
2104     // In practice may also be occasionally used for linking native libraries.
2105     // Passed after compiler-generated options to support manual overriding when necessary.
2106     add_user_defined_link_args(cmd, sess);
2107
2108     // ------------ Object code and libraries, order-dependent ------------
2109
2110     // Post-link CRT objects.
2111     add_post_link_objects(cmd, sess, link_output_kind, self_contained);
2112
2113     // ------------ Late order-dependent options ------------
2114
2115     // Doesn't really make sense.
2116     // FIXME: In practice built-in target specs use this for arbitrary order-independent options,
2117     // introduce a target spec option for order-independent linker options, migrate built-in specs
2118     // to it and remove the option.
2119     add_post_link_args(cmd, sess, flavor);
2120
2121     Ok(cmd.take_cmd())
2122 }
2123
2124 fn add_order_independent_options(
2125     cmd: &mut dyn Linker,
2126     sess: &Session,
2127     link_output_kind: LinkOutputKind,
2128     self_contained: bool,
2129     flavor: LinkerFlavor,
2130     crate_type: CrateType,
2131     codegen_results: &CodegenResults,
2132     out_filename: &Path,
2133     tmpdir: &Path,
2134 ) {
2135     add_gcc_ld_path(cmd, sess, flavor);
2136
2137     add_apple_sdk(cmd, sess, flavor);
2138
2139     add_link_script(cmd, sess, tmpdir, crate_type);
2140
2141     if sess.target.os == "fuchsia"
2142         && crate_type == CrateType::Executable
2143         && !matches!(flavor, LinkerFlavor::Gnu(Cc::Yes, _))
2144     {
2145         let prefix = if sess.opts.unstable_opts.sanitizer.contains(SanitizerSet::ADDRESS) {
2146             "asan/"
2147         } else {
2148             ""
2149         };
2150         cmd.arg(format!("--dynamic-linker={}ld.so.1", prefix));
2151     }
2152
2153     if sess.target.eh_frame_header {
2154         cmd.add_eh_frame_header();
2155     }
2156
2157     // Make the binary compatible with data execution prevention schemes.
2158     cmd.add_no_exec();
2159
2160     if self_contained {
2161         cmd.no_crt_objects();
2162     }
2163
2164     if sess.target.os == "emscripten" {
2165         cmd.arg("-s");
2166         cmd.arg(if sess.panic_strategy() == PanicStrategy::Abort {
2167             "DISABLE_EXCEPTION_CATCHING=1"
2168         } else {
2169             "DISABLE_EXCEPTION_CATCHING=0"
2170         });
2171     }
2172
2173     if flavor == LinkerFlavor::Ptx {
2174         // Provide the linker with fallback to internal `target-cpu`.
2175         cmd.arg("--fallback-arch");
2176         cmd.arg(&codegen_results.crate_info.target_cpu);
2177     } else if flavor == LinkerFlavor::Bpf {
2178         cmd.arg("--cpu");
2179         cmd.arg(&codegen_results.crate_info.target_cpu);
2180         cmd.arg("--cpu-features");
2181         cmd.arg(match &sess.opts.cg.target_feature {
2182             feat if !feat.is_empty() => feat.as_ref(),
2183             _ => sess.target.options.features.as_ref(),
2184         });
2185     }
2186
2187     cmd.linker_plugin_lto();
2188
2189     add_library_search_dirs(cmd, sess, self_contained);
2190
2191     cmd.output_filename(out_filename);
2192
2193     if crate_type == CrateType::Executable && sess.target.is_like_windows {
2194         if let Some(ref s) = codegen_results.crate_info.windows_subsystem {
2195             cmd.subsystem(s);
2196         }
2197     }
2198
2199     // Try to strip as much out of the generated object by removing unused
2200     // sections if possible. See more comments in linker.rs
2201     if !sess.link_dead_code() {
2202         // If PGO is enabled sometimes gc_sections will remove the profile data section
2203         // as it appears to be unused. This can then cause the PGO profile file to lose
2204         // some functions. If we are generating a profile we shouldn't strip those metadata
2205         // sections to ensure we have all the data for PGO.
2206         let keep_metadata =
2207             crate_type == CrateType::Dylib || sess.opts.cg.profile_generate.enabled();
2208         if crate_type != CrateType::Executable || !sess.opts.unstable_opts.export_executable_symbols
2209         {
2210             cmd.gc_sections(keep_metadata);
2211         } else {
2212             cmd.no_gc_sections();
2213         }
2214     }
2215
2216     cmd.set_output_kind(link_output_kind, out_filename);
2217
2218     add_relro_args(cmd, sess);
2219
2220     // Pass optimization flags down to the linker.
2221     cmd.optimize();
2222
2223     // Gather the set of NatVis files, if any, and write them out to a temp directory.
2224     let natvis_visualizers = collect_natvis_visualizers(
2225         tmpdir,
2226         sess,
2227         &codegen_results.crate_info.local_crate_name,
2228         &codegen_results.crate_info.natvis_debugger_visualizers,
2229     );
2230
2231     // Pass debuginfo, NatVis debugger visualizers and strip flags down to the linker.
2232     cmd.debuginfo(strip_value(sess), &natvis_visualizers);
2233
2234     // We want to prevent the compiler from accidentally leaking in any system libraries,
2235     // so by default we tell linkers not to link to any default libraries.
2236     if !sess.opts.cg.default_linker_libraries && sess.target.no_default_libraries {
2237         cmd.no_default_libraries();
2238     }
2239
2240     if sess.opts.cg.profile_generate.enabled() || sess.instrument_coverage() {
2241         cmd.pgo_gen();
2242     }
2243
2244     if sess.opts.cg.control_flow_guard != CFGuard::Disabled {
2245         cmd.control_flow_guard();
2246     }
2247
2248     add_rpath_args(cmd, sess, codegen_results, out_filename);
2249 }
2250
2251 // Write the NatVis debugger visualizer files for each crate to the temp directory and gather the file paths.
2252 fn collect_natvis_visualizers(
2253     tmpdir: &Path,
2254     sess: &Session,
2255     crate_name: &Symbol,
2256     natvis_debugger_visualizers: &BTreeSet<DebuggerVisualizerFile>,
2257 ) -> Vec<PathBuf> {
2258     let mut visualizer_paths = Vec::with_capacity(natvis_debugger_visualizers.len());
2259
2260     for (index, visualizer) in natvis_debugger_visualizers.iter().enumerate() {
2261         let visualizer_out_file = tmpdir.join(format!("{}-{}.natvis", crate_name.as_str(), index));
2262
2263         match fs::write(&visualizer_out_file, &visualizer.src) {
2264             Ok(()) => {
2265                 visualizer_paths.push(visualizer_out_file);
2266             }
2267             Err(error) => {
2268                 sess.emit_warning(errors::UnableToWriteDebuggerVisualizer {
2269                     path: visualizer_out_file,
2270                     error,
2271                 });
2272             }
2273         };
2274     }
2275     visualizer_paths
2276 }
2277
2278 /// # Native library linking
2279 ///
2280 /// User-supplied library search paths (-L on the command line). These are the same paths used to
2281 /// find Rust crates, so some of them may have been added already by the previous crate linking
2282 /// code. This only allows them to be found at compile time so it is still entirely up to outside
2283 /// forces to make sure that library can be found at runtime.
2284 ///
2285 /// Also note that the native libraries linked here are only the ones located in the current crate.
2286 /// Upstream crates with native library dependencies may have their native library pulled in above.
2287 fn add_local_native_libraries(
2288     cmd: &mut dyn Linker,
2289     sess: &Session,
2290     codegen_results: &CodegenResults,
2291 ) {
2292     let filesearch = sess.target_filesearch(PathKind::All);
2293     for search_path in filesearch.search_paths() {
2294         match search_path.kind {
2295             PathKind::Framework => {
2296                 cmd.framework_path(&search_path.dir);
2297             }
2298             _ => {
2299                 cmd.include_path(&fix_windows_verbatim_for_gcc(&search_path.dir));
2300             }
2301         }
2302     }
2303
2304     let relevant_libs =
2305         codegen_results.crate_info.used_libraries.iter().filter(|l| relevant_lib(sess, l));
2306
2307     let search_path = OnceCell::new();
2308     let mut last = (None, NativeLibKind::Unspecified, None);
2309     for lib in relevant_libs {
2310         let Some(name) = lib.name else {
2311             continue;
2312         };
2313         let name = name.as_str();
2314
2315         // Skip if this library is the same as the last.
2316         last = if (lib.name, lib.kind, lib.verbatim) == last {
2317             continue;
2318         } else {
2319             (lib.name, lib.kind, lib.verbatim)
2320         };
2321
2322         let verbatim = lib.verbatim.unwrap_or(false);
2323         match lib.kind {
2324             NativeLibKind::Dylib { as_needed } => {
2325                 cmd.link_dylib(name, verbatim, as_needed.unwrap_or(true))
2326             }
2327             NativeLibKind::Unspecified => cmd.link_dylib(name, verbatim, true),
2328             NativeLibKind::Framework { as_needed } => {
2329                 cmd.link_framework(name, as_needed.unwrap_or(true))
2330             }
2331             NativeLibKind::Static { whole_archive, bundle, .. } => {
2332                 if whole_archive == Some(true)
2333                     // Backward compatibility case: this can be a rlib (so `+whole-archive` cannot
2334                     // be added explicitly if necessary, see the error in `fn link_rlib`) compiled
2335                     // as an executable due to `--test`. Use whole-archive implicitly, like before
2336                     // the introduction of native lib modifiers.
2337                     || (whole_archive == None && bundle != Some(false) && sess.opts.test)
2338                 {
2339                     cmd.link_whole_staticlib(
2340                         name,
2341                         verbatim,
2342                         &search_path.get_or_init(|| archive_search_paths(sess)),
2343                     );
2344                 } else {
2345                     cmd.link_staticlib(name, verbatim)
2346                 }
2347             }
2348             NativeLibKind::RawDylib => {
2349                 // Ignore RawDylib here, they are handled separately in linker_with_args().
2350             }
2351             NativeLibKind::LinkArg => {
2352                 cmd.arg(name);
2353             }
2354         }
2355     }
2356 }
2357
2358 /// # Linking Rust crates and their non-bundled static libraries
2359 ///
2360 /// Rust crates are not considered at all when creating an rlib output. All dependencies will be
2361 /// linked when producing the final output (instead of the intermediate rlib version).
2362 fn add_upstream_rust_crates<'a>(
2363     cmd: &mut dyn Linker,
2364     sess: &'a Session,
2365     archive_builder_builder: &dyn ArchiveBuilderBuilder,
2366     codegen_results: &CodegenResults,
2367     crate_type: CrateType,
2368     tmpdir: &Path,
2369 ) {
2370     // All of the heavy lifting has previously been accomplished by the
2371     // dependency_format module of the compiler. This is just crawling the
2372     // output of that module, adding crates as necessary.
2373     //
2374     // Linking to a rlib involves just passing it to the linker (the linker
2375     // will slurp up the object files inside), and linking to a dynamic library
2376     // involves just passing the right -l flag.
2377
2378     let (_, data) = codegen_results
2379         .crate_info
2380         .dependency_formats
2381         .iter()
2382         .find(|(ty, _)| *ty == crate_type)
2383         .expect("failed to find crate type in dependency format list");
2384
2385     // Invoke get_used_crates to ensure that we get a topological sorting of
2386     // crates.
2387     let deps = &codegen_results.crate_info.used_crates;
2388
2389     let mut compiler_builtins = None;
2390     let search_path = OnceCell::new();
2391
2392     for &cnum in deps.iter() {
2393         // We may not pass all crates through to the linker. Some crates may
2394         // appear statically in an existing dylib, meaning we'll pick up all the
2395         // symbols from the dylib.
2396         let src = &codegen_results.crate_info.used_crate_source[&cnum];
2397         match data[cnum.as_usize() - 1] {
2398             _ if codegen_results.crate_info.profiler_runtime == Some(cnum) => {
2399                 add_static_crate(
2400                     cmd,
2401                     sess,
2402                     archive_builder_builder,
2403                     codegen_results,
2404                     tmpdir,
2405                     cnum,
2406                     &Default::default(),
2407                 );
2408             }
2409             // compiler-builtins are always placed last to ensure that they're
2410             // linked correctly.
2411             _ if codegen_results.crate_info.compiler_builtins == Some(cnum) => {
2412                 assert!(compiler_builtins.is_none());
2413                 compiler_builtins = Some(cnum);
2414             }
2415             Linkage::NotLinked | Linkage::IncludedFromDylib => {}
2416             Linkage::Static => {
2417                 let bundled_libs = if sess.opts.unstable_opts.packed_bundled_libs {
2418                     codegen_results.crate_info.native_libraries[&cnum]
2419                         .iter()
2420                         .filter_map(|lib| lib.filename)
2421                         .collect::<FxHashSet<_>>()
2422                 } else {
2423                     Default::default()
2424                 };
2425                 add_static_crate(
2426                     cmd,
2427                     sess,
2428                     archive_builder_builder,
2429                     codegen_results,
2430                     tmpdir,
2431                     cnum,
2432                     &bundled_libs,
2433                 );
2434
2435                 // Link static native libs with "-bundle" modifier only if the crate they originate from
2436                 // is being linked statically to the current crate.  If it's linked dynamically
2437                 // or is an rlib already included via some other dylib crate, the symbols from
2438                 // native libs will have already been included in that dylib.
2439                 //
2440                 // If `-Zlink-native-libraries=false` is set, then the assumption is that an
2441                 // external build system already has the native dependencies defined, and it
2442                 // will provide them to the linker itself.
2443                 if sess.opts.unstable_opts.link_native_libraries {
2444                     if sess.opts.unstable_opts.packed_bundled_libs {
2445                         // If rlib contains native libs as archives, unpack them to tmpdir.
2446                         let rlib = &src.rlib.as_ref().unwrap().0;
2447                         archive_builder_builder
2448                             .extract_bundled_libs(rlib, tmpdir, &bundled_libs)
2449                             .unwrap_or_else(|e| sess.emit_fatal(e));
2450                     }
2451
2452                     let mut last = (None, NativeLibKind::Unspecified, None);
2453                     for lib in &codegen_results.crate_info.native_libraries[&cnum] {
2454                         let Some(name) = lib.name else {
2455                             continue;
2456                         };
2457                         let name = name.as_str();
2458                         if !relevant_lib(sess, lib) {
2459                             continue;
2460                         }
2461
2462                         // Skip if this library is the same as the last.
2463                         last = if (lib.name, lib.kind, lib.verbatim) == last {
2464                             continue;
2465                         } else {
2466                             (lib.name, lib.kind, lib.verbatim)
2467                         };
2468
2469                         match lib.kind {
2470                             NativeLibKind::Static {
2471                                 bundle: Some(false),
2472                                 whole_archive: Some(true),
2473                             } => {
2474                                 cmd.link_whole_staticlib(
2475                                     name,
2476                                     lib.verbatim.unwrap_or(false),
2477                                     search_path.get_or_init(|| archive_search_paths(sess)),
2478                                 );
2479                             }
2480                             NativeLibKind::Static {
2481                                 bundle: Some(false),
2482                                 whole_archive: Some(false) | None,
2483                             } => {
2484                                 // HACK/FIXME: Fixup a circular dependency between libgcc and libc
2485                                 // with glibc. This logic should be moved to the libc crate.
2486                                 if sess.target.os == "linux"
2487                                     && sess.target.env == "gnu"
2488                                     && name == "c"
2489                                 {
2490                                     cmd.link_staticlib("gcc", false);
2491                                 }
2492                                 cmd.link_staticlib(name, lib.verbatim.unwrap_or(false));
2493                             }
2494                             NativeLibKind::LinkArg => {
2495                                 cmd.arg(name);
2496                             }
2497                             NativeLibKind::Dylib { .. }
2498                             | NativeLibKind::Framework { .. }
2499                             | NativeLibKind::Unspecified
2500                             | NativeLibKind::RawDylib => {}
2501                             NativeLibKind::Static { bundle: Some(true) | None, whole_archive } => {
2502                                 if sess.opts.unstable_opts.packed_bundled_libs {
2503                                     // If rlib contains native libs as archives, they are unpacked to tmpdir.
2504                                     let path = tmpdir.join(lib.filename.unwrap().as_str());
2505                                     if whole_archive == Some(true) {
2506                                         cmd.link_whole_rlib(&path);
2507                                     } else {
2508                                         cmd.link_rlib(&path);
2509                                     }
2510                                 }
2511                             }
2512                         }
2513                     }
2514                 }
2515             }
2516             Linkage::Dynamic => add_dynamic_crate(cmd, sess, &src.dylib.as_ref().unwrap().0),
2517         }
2518     }
2519
2520     // compiler-builtins are always placed last to ensure that they're
2521     // linked correctly.
2522     // We must always link the `compiler_builtins` crate statically. Even if it
2523     // was already "included" in a dylib (e.g., `libstd` when `-C prefer-dynamic`
2524     // is used)
2525     if let Some(cnum) = compiler_builtins {
2526         add_static_crate(
2527             cmd,
2528             sess,
2529             archive_builder_builder,
2530             codegen_results,
2531             tmpdir,
2532             cnum,
2533             &Default::default(),
2534         );
2535     }
2536
2537     // Converts a library file-stem into a cc -l argument
2538     fn unlib<'a>(target: &Target, stem: &'a str) -> &'a str {
2539         if stem.starts_with("lib") && !target.is_like_windows { &stem[3..] } else { stem }
2540     }
2541
2542     // Adds the static "rlib" versions of all crates to the command line.
2543     // There's a bit of magic which happens here specifically related to LTO,
2544     // namely that we remove upstream object files.
2545     //
2546     // When performing LTO, almost(*) all of the bytecode from the upstream
2547     // libraries has already been included in our object file output. As a
2548     // result we need to remove the object files in the upstream libraries so
2549     // the linker doesn't try to include them twice (or whine about duplicate
2550     // symbols). We must continue to include the rest of the rlib, however, as
2551     // it may contain static native libraries which must be linked in.
2552     //
2553     // (*) Crates marked with `#![no_builtins]` don't participate in LTO and
2554     // their bytecode wasn't included. The object files in those libraries must
2555     // still be passed to the linker.
2556     //
2557     // Note, however, that if we're not doing LTO we can just pass the rlib
2558     // blindly to the linker (fast) because it's fine if it's not actually
2559     // included as we're at the end of the dependency chain.
2560     fn add_static_crate<'a>(
2561         cmd: &mut dyn Linker,
2562         sess: &'a Session,
2563         archive_builder_builder: &dyn ArchiveBuilderBuilder,
2564         codegen_results: &CodegenResults,
2565         tmpdir: &Path,
2566         cnum: CrateNum,
2567         bundled_lib_file_names: &FxHashSet<Symbol>,
2568     ) {
2569         let src = &codegen_results.crate_info.used_crate_source[&cnum];
2570         let cratepath = &src.rlib.as_ref().unwrap().0;
2571
2572         let mut link_upstream = |path: &Path| {
2573             cmd.link_rlib(&fix_windows_verbatim_for_gcc(path));
2574         };
2575
2576         // See the comment above in `link_staticlib` and `link_rlib` for why if
2577         // there's a static library that's not relevant we skip all object
2578         // files.
2579         let native_libs = &codegen_results.crate_info.native_libraries[&cnum];
2580         let skip_native = native_libs.iter().any(|lib| {
2581             matches!(lib.kind, NativeLibKind::Static { bundle: None | Some(true), .. })
2582                 && !relevant_lib(sess, lib)
2583         });
2584
2585         if (!are_upstream_rust_objects_already_included(sess)
2586             || ignored_for_lto(sess, &codegen_results.crate_info, cnum))
2587             && !skip_native
2588         {
2589             link_upstream(cratepath);
2590             return;
2591         }
2592
2593         let dst = tmpdir.join(cratepath.file_name().unwrap());
2594         let name = cratepath.file_name().unwrap().to_str().unwrap();
2595         let name = &name[3..name.len() - 5]; // chop off lib/.rlib
2596         let bundled_lib_file_names = bundled_lib_file_names.clone();
2597
2598         sess.prof.generic_activity_with_arg("link_altering_rlib", name).run(|| {
2599             let canonical_name = name.replace('-', "_");
2600             let upstream_rust_objects_already_included =
2601                 are_upstream_rust_objects_already_included(sess);
2602             let is_builtins = sess.target.no_builtins
2603                 || !codegen_results.crate_info.is_no_builtins.contains(&cnum);
2604
2605             let mut archive = archive_builder_builder.new_archive_builder(sess);
2606             if let Err(error) = archive.add_archive(
2607                 cratepath,
2608                 Box::new(move |f| {
2609                     if f == METADATA_FILENAME {
2610                         return true;
2611                     }
2612
2613                     let canonical = f.replace('-', "_");
2614
2615                     let is_rust_object =
2616                         canonical.starts_with(&canonical_name) && looks_like_rust_object_file(&f);
2617
2618                     // If we've been requested to skip all native object files
2619                     // (those not generated by the rust compiler) then we can skip
2620                     // this file. See above for why we may want to do this.
2621                     let skip_because_cfg_say_so = skip_native && !is_rust_object;
2622
2623                     // If we're performing LTO and this is a rust-generated object
2624                     // file, then we don't need the object file as it's part of the
2625                     // LTO module. Note that `#![no_builtins]` is excluded from LTO,
2626                     // though, so we let that object file slide.
2627                     let skip_because_lto =
2628                         upstream_rust_objects_already_included && is_rust_object && is_builtins;
2629
2630                     // We skip native libraries because:
2631                     // 1. This native libraries won't be used from the generated rlib,
2632                     //    so we can throw them away to avoid the copying work.
2633                     // 2. We can't allow it to be a single remaining entry in archive
2634                     //    as some linkers may complain on that.
2635                     if bundled_lib_file_names.contains(&Symbol::intern(f)) {
2636                         return true;
2637                     }
2638
2639                     if skip_because_cfg_say_so || skip_because_lto {
2640                         return true;
2641                     }
2642
2643                     false
2644                 }),
2645             ) {
2646                 sess.emit_fatal(errors::RlibArchiveBuildFailure { error });
2647             }
2648             if archive.build(&dst) {
2649                 link_upstream(&dst);
2650             }
2651         });
2652     }
2653
2654     // Same thing as above, but for dynamic crates instead of static crates.
2655     fn add_dynamic_crate(cmd: &mut dyn Linker, sess: &Session, cratepath: &Path) {
2656         // Just need to tell the linker about where the library lives and
2657         // what its name is
2658         let parent = cratepath.parent();
2659         if let Some(dir) = parent {
2660             cmd.include_path(&fix_windows_verbatim_for_gcc(dir));
2661         }
2662         let filestem = cratepath.file_stem().unwrap().to_str().unwrap();
2663         cmd.link_rust_dylib(
2664             &unlib(&sess.target, filestem),
2665             parent.unwrap_or_else(|| Path::new("")),
2666         );
2667     }
2668 }
2669
2670 /// Link in all of our upstream crates' native dependencies. Remember that all of these upstream
2671 /// native dependencies are all non-static dependencies. We've got two cases then:
2672 ///
2673 /// 1. The upstream crate is an rlib. In this case we *must* link in the native dependency because
2674 /// the rlib is just an archive.
2675 ///
2676 /// 2. The upstream crate is a dylib. In order to use the dylib, we have to have the dependency
2677 /// present on the system somewhere. Thus, we don't gain a whole lot from not linking in the
2678 /// dynamic dependency to this crate as well.
2679 ///
2680 /// The use case for this is a little subtle. In theory the native dependencies of a crate are
2681 /// purely an implementation detail of the crate itself, but the problem arises with generic and
2682 /// inlined functions. If a generic function calls a native function, then the generic function
2683 /// must be instantiated in the target crate, meaning that the native symbol must also be resolved
2684 /// in the target crate.
2685 fn add_upstream_native_libraries(
2686     cmd: &mut dyn Linker,
2687     sess: &Session,
2688     codegen_results: &CodegenResults,
2689 ) {
2690     let mut last = (None, NativeLibKind::Unspecified, None);
2691     for &cnum in &codegen_results.crate_info.used_crates {
2692         for lib in codegen_results.crate_info.native_libraries[&cnum].iter() {
2693             let Some(name) = lib.name else {
2694                 continue;
2695             };
2696             let name = name.as_str();
2697             if !relevant_lib(sess, &lib) {
2698                 continue;
2699             }
2700
2701             // Skip if this library is the same as the last.
2702             last = if (lib.name, lib.kind, lib.verbatim) == last {
2703                 continue;
2704             } else {
2705                 (lib.name, lib.kind, lib.verbatim)
2706             };
2707
2708             let verbatim = lib.verbatim.unwrap_or(false);
2709             match lib.kind {
2710                 NativeLibKind::Dylib { as_needed } => {
2711                     cmd.link_dylib(name, verbatim, as_needed.unwrap_or(true))
2712                 }
2713                 NativeLibKind::Unspecified => cmd.link_dylib(name, verbatim, true),
2714                 NativeLibKind::Framework { as_needed } => {
2715                     cmd.link_framework(name, as_needed.unwrap_or(true))
2716                 }
2717                 // ignore static native libraries here as we've
2718                 // already included them in add_local_native_libraries and
2719                 // add_upstream_rust_crates
2720                 NativeLibKind::Static { .. } => {}
2721                 NativeLibKind::RawDylib | NativeLibKind::LinkArg => {}
2722             }
2723         }
2724     }
2725 }
2726
2727 fn relevant_lib(sess: &Session, lib: &NativeLib) -> bool {
2728     match lib.cfg {
2729         Some(ref cfg) => rustc_attr::cfg_matches(cfg, &sess.parse_sess, CRATE_NODE_ID, None),
2730         None => true,
2731     }
2732 }
2733
2734 pub(crate) fn are_upstream_rust_objects_already_included(sess: &Session) -> bool {
2735     match sess.lto() {
2736         config::Lto::Fat => true,
2737         config::Lto::Thin => {
2738             // If we defer LTO to the linker, we haven't run LTO ourselves, so
2739             // any upstream object files have not been copied yet.
2740             !sess.opts.cg.linker_plugin_lto.enabled()
2741         }
2742         config::Lto::No | config::Lto::ThinLocal => false,
2743     }
2744 }
2745
2746 fn add_apple_sdk(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) {
2747     let arch = &sess.target.arch;
2748     let os = &sess.target.os;
2749     let llvm_target = &sess.target.llvm_target;
2750     if sess.target.vendor != "apple"
2751         || !matches!(os.as_ref(), "ios" | "tvos" | "watchos" | "macos")
2752         || !matches!(flavor, LinkerFlavor::Darwin(..))
2753     {
2754         return;
2755     }
2756
2757     if os == "macos" && !matches!(flavor, LinkerFlavor::Darwin(Cc::No, _)) {
2758         return;
2759     }
2760
2761     let sdk_name = match (arch.as_ref(), os.as_ref()) {
2762         ("aarch64", "tvos") => "appletvos",
2763         ("x86_64", "tvos") => "appletvsimulator",
2764         ("arm", "ios") => "iphoneos",
2765         ("aarch64", "ios") if llvm_target.contains("macabi") => "macosx",
2766         ("aarch64", "ios") if llvm_target.ends_with("-simulator") => "iphonesimulator",
2767         ("aarch64", "ios") => "iphoneos",
2768         ("x86", "ios") => "iphonesimulator",
2769         ("x86_64", "ios") if llvm_target.contains("macabi") => "macosx",
2770         ("x86_64", "ios") => "iphonesimulator",
2771         ("x86_64", "watchos") => "watchsimulator",
2772         ("arm64_32", "watchos") => "watchos",
2773         ("aarch64", "watchos") if llvm_target.ends_with("-simulator") => "watchsimulator",
2774         ("aarch64", "watchos") => "watchos",
2775         ("arm", "watchos") => "watchos",
2776         (_, "macos") => "macosx",
2777         _ => {
2778             sess.emit_err(errors::UnsupportedArch { arch, os });
2779             return;
2780         }
2781     };
2782     let sdk_root = match get_apple_sdk_root(sdk_name) {
2783         Ok(s) => s,
2784         Err(e) => {
2785             sess.emit_err(e);
2786             return;
2787         }
2788     };
2789
2790     match flavor {
2791         LinkerFlavor::Darwin(Cc::Yes, _) => {
2792             cmd.args(&["-isysroot", &sdk_root, "-Wl,-syslibroot", &sdk_root]);
2793         }
2794         LinkerFlavor::Darwin(Cc::No, _) => {
2795             cmd.args(&["-syslibroot", &sdk_root]);
2796         }
2797         _ => unreachable!(),
2798     }
2799 }
2800
2801 fn get_apple_sdk_root(sdk_name: &str) -> Result<String, errors::AppleSdkRootError<'_>> {
2802     // Following what clang does
2803     // (https://github.com/llvm/llvm-project/blob/
2804     // 296a80102a9b72c3eda80558fb78a3ed8849b341/clang/lib/Driver/ToolChains/Darwin.cpp#L1661-L1678)
2805     // to allow the SDK path to be set. (For clang, xcrun sets
2806     // SDKROOT; for rustc, the user or build system can set it, or we
2807     // can fall back to checking for xcrun on PATH.)
2808     if let Ok(sdkroot) = env::var("SDKROOT") {
2809         let p = Path::new(&sdkroot);
2810         match sdk_name {
2811             // Ignore `SDKROOT` if it's clearly set for the wrong platform.
2812             "appletvos"
2813                 if sdkroot.contains("TVSimulator.platform")
2814                     || sdkroot.contains("MacOSX.platform") => {}
2815             "appletvsimulator"
2816                 if sdkroot.contains("TVOS.platform") || sdkroot.contains("MacOSX.platform") => {}
2817             "iphoneos"
2818                 if sdkroot.contains("iPhoneSimulator.platform")
2819                     || sdkroot.contains("MacOSX.platform") => {}
2820             "iphonesimulator"
2821                 if sdkroot.contains("iPhoneOS.platform") || sdkroot.contains("MacOSX.platform") => {
2822             }
2823             "macosx10.15"
2824                 if sdkroot.contains("iPhoneOS.platform")
2825                     || sdkroot.contains("iPhoneSimulator.platform") => {}
2826             "watchos"
2827                 if sdkroot.contains("WatchSimulator.platform")
2828                     || sdkroot.contains("MacOSX.platform") => {}
2829             "watchsimulator"
2830                 if sdkroot.contains("WatchOS.platform") || sdkroot.contains("MacOSX.platform") => {}
2831             // Ignore `SDKROOT` if it's not a valid path.
2832             _ if !p.is_absolute() || p == Path::new("/") || !p.exists() => {}
2833             _ => return Ok(sdkroot),
2834         }
2835     }
2836     let res =
2837         Command::new("xcrun").arg("--show-sdk-path").arg("-sdk").arg(sdk_name).output().and_then(
2838             |output| {
2839                 if output.status.success() {
2840                     Ok(String::from_utf8(output.stdout).unwrap())
2841                 } else {
2842                     let error = String::from_utf8(output.stderr);
2843                     let error = format!("process exit with error: {}", error.unwrap());
2844                     Err(io::Error::new(io::ErrorKind::Other, &error[..]))
2845                 }
2846             },
2847         );
2848
2849     match res {
2850         Ok(output) => Ok(output.trim().to_string()),
2851         Err(error) => Err(errors::AppleSdkRootError::SdkPath { sdk_name, error }),
2852     }
2853 }
2854
2855 fn add_gcc_ld_path(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) {
2856     if let Some(ld_impl) = sess.opts.unstable_opts.gcc_ld {
2857         if let LinkerFlavor::Gnu(Cc::Yes, _)
2858         | LinkerFlavor::Darwin(Cc::Yes, _)
2859         | LinkerFlavor::WasmLld(Cc::Yes) = flavor
2860         {
2861             match ld_impl {
2862                 LdImpl::Lld => {
2863                     // Implement the "self-contained" part of -Zgcc-ld
2864                     // by adding rustc distribution directories to the tool search path.
2865                     for path in sess.get_tools_search_paths(false) {
2866                         cmd.arg({
2867                             let mut arg = OsString::from("-B");
2868                             arg.push(path.join("gcc-ld"));
2869                             arg
2870                         });
2871                     }
2872                     // Implement the "linker flavor" part of -Zgcc-ld
2873                     // by asking cc to use some kind of lld.
2874                     cmd.arg("-fuse-ld=lld");
2875                     if !flavor.is_gnu() {
2876                         // Tell clang to use a non-default LLD flavor.
2877                         // Gcc doesn't understand the target option, but we currently assume
2878                         // that gcc is not used for Apple and Wasm targets (#97402).
2879                         cmd.arg(format!("--target={}", sess.target.llvm_target));
2880                     }
2881                 }
2882             }
2883         } else {
2884             sess.emit_fatal(errors::OptionGccOnly);
2885         }
2886     }
2887 }