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