]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_ssa/src/back/link.rs
Auto merge of #88161 - michaelwoerister:fix-whole-archive-no-bundle, r=petrochenkov
[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::cstore::DllImport;
7 use rustc_middle::middle::dependency_format::Linkage;
8 use rustc_session::config::{self, CFGuard, CrateType, DebugInfo, LdImpl, Strip};
9 use rustc_session::config::{OutputFilenames, OutputType, PrintRequest};
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.host_filesearch(PathKind::All).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                 "looks like the linker segfaulted when we tried to call it, \
847                  automatically retrying again. cmd = {:?}, out = {}.",
848                 cmd, out,
849             );
850             continue;
851         }
852
853         if is_illegal_instruction(&output.status) {
854             warn!(
855                 "looks like the linker hit an illegal instruction when we \
856                  tried to call it, automatically retrying again. cmd = {:?}, ]\
857                  out = {}, status = {}.",
858                 cmd, out, output.status,
859             );
860             continue;
861         }
862
863         #[cfg(unix)]
864         fn is_illegal_instruction(status: &ExitStatus) -> bool {
865             use std::os::unix::prelude::*;
866             status.signal() == Some(libc::SIGILL)
867         }
868
869         #[cfg(not(unix))]
870         fn is_illegal_instruction(_status: &ExitStatus) -> bool {
871             false
872         }
873     }
874
875     match prog {
876         Ok(prog) => {
877             if !prog.status.success() {
878                 let mut output = prog.stderr.clone();
879                 output.extend_from_slice(&prog.stdout);
880                 let escaped_output = escape_stdout_stderr_string(&output);
881                 let mut err = sess.struct_err(&format!(
882                     "linking with `{}` failed: {}",
883                     linker_path.display(),
884                     prog.status
885                 ));
886                 err.note(&format!("{:?}", &cmd)).note(&escaped_output);
887                 if escaped_output.contains("undefined reference to") {
888                     err.help(
889                         "some `extern` functions couldn't be found; some native libraries may \
890                          need to be installed or have their path specified",
891                     );
892                     err.note("use the `-l` flag to specify native libraries to link");
893                     err.note("use the `cargo:rustc-link-lib` directive to specify the native \
894                               libraries to link with Cargo (see https://doc.rust-lang.org/cargo/reference/build-scripts.html#cargorustc-link-libkindname)");
895                 }
896                 err.emit();
897
898                 // If MSVC's `link.exe` was expected but the return code
899                 // is not a Microsoft LNK error then suggest a way to fix or
900                 // install the Visual Studio build tools.
901                 if let Some(code) = prog.status.code() {
902                     if sess.target.is_like_msvc
903                         && flavor == LinkerFlavor::Msvc
904                         // Respect the command line override
905                         && sess.opts.cg.linker.is_none()
906                         // Match exactly "link.exe"
907                         && linker_path.to_str() == Some("link.exe")
908                         // All Microsoft `link.exe` linking error codes are
909                         // four digit numbers in the range 1000 to 9999 inclusive
910                         && (code < 1000 || code > 9999)
911                     {
912                         let is_vs_installed = windows_registry::find_vs_version().is_ok();
913                         let has_linker = windows_registry::find_tool(
914                             &sess.opts.target_triple.triple(),
915                             "link.exe",
916                         )
917                         .is_some();
918
919                         sess.note_without_error("`link.exe` returned an unexpected error");
920                         if is_vs_installed && has_linker {
921                             // the linker is broken
922                             sess.note_without_error(
923                                 "the Visual Studio build tools may need to be repaired \
924                                 using the Visual Studio installer",
925                             );
926                             sess.note_without_error(
927                                 "or a necessary component may be missing from the \
928                                 \"C++ build tools\" workload",
929                             );
930                         } else if is_vs_installed {
931                             // the linker is not installed
932                             sess.note_without_error(
933                                 "in the Visual Studio installer, ensure the \
934                                 \"C++ build tools\" workload is selected",
935                             );
936                         } else {
937                             // visual studio is not installed
938                             sess.note_without_error(
939                                 "you may need to install Visual Studio build tools with the \
940                                 \"C++ build tools\" workload",
941                             );
942                         }
943                     }
944                 }
945
946                 sess.abort_if_errors();
947             }
948             info!("linker stderr:\n{}", escape_stdout_stderr_string(&prog.stderr));
949             info!("linker stdout:\n{}", escape_stdout_stderr_string(&prog.stdout));
950         }
951         Err(e) => {
952             let linker_not_found = e.kind() == io::ErrorKind::NotFound;
953
954             let mut linker_error = {
955                 if linker_not_found {
956                     sess.struct_err(&format!("linker `{}` not found", linker_path.display()))
957                 } else {
958                     sess.struct_err(&format!(
959                         "could not exec the linker `{}`",
960                         linker_path.display()
961                     ))
962                 }
963             };
964
965             linker_error.note(&e.to_string());
966
967             if !linker_not_found {
968                 linker_error.note(&format!("{:?}", &cmd));
969             }
970
971             linker_error.emit();
972
973             if sess.target.is_like_msvc && linker_not_found {
974                 sess.note_without_error(
975                     "the msvc targets depend on the msvc linker \
976                      but `link.exe` was not found",
977                 );
978                 sess.note_without_error(
979                     "please ensure that VS 2013, VS 2015, VS 2017 or VS 2019 \
980                      was installed with the Visual C++ option",
981                 );
982             }
983             sess.abort_if_errors();
984         }
985     }
986
987     match sess.split_debuginfo() {
988         // If split debug information is disabled or located in individual files
989         // there's nothing to do here.
990         SplitDebuginfo::Off | SplitDebuginfo::Unpacked => {}
991
992         // If packed split-debuginfo is requested, but the final compilation
993         // doesn't actually have any debug information, then we skip this step.
994         SplitDebuginfo::Packed if sess.opts.debuginfo == DebugInfo::None => {}
995
996         // On macOS the external `dsymutil` tool is used to create the packed
997         // debug information. Note that this will read debug information from
998         // the objects on the filesystem which we'll clean up later.
999         SplitDebuginfo::Packed if sess.target.is_like_osx => {
1000             let prog = Command::new("dsymutil").arg(out_filename).output();
1001             match prog {
1002                 Ok(prog) => {
1003                     if !prog.status.success() {
1004                         let mut output = prog.stderr.clone();
1005                         output.extend_from_slice(&prog.stdout);
1006                         sess.struct_warn(&format!(
1007                             "processing debug info with `dsymutil` failed: {}",
1008                             prog.status
1009                         ))
1010                         .note(&escape_string(&output))
1011                         .emit();
1012                     }
1013                 }
1014                 Err(e) => sess.fatal(&format!("unable to run `dsymutil`: {}", e)),
1015             }
1016         }
1017
1018         // On MSVC packed debug information is produced by the linker itself so
1019         // there's no need to do anything else here.
1020         SplitDebuginfo::Packed if sess.target.is_like_msvc => {}
1021
1022         // ... and otherwise we're processing a `*.dwp` packed dwarf file.
1023         SplitDebuginfo::Packed => link_dwarf_object(sess, &out_filename),
1024     }
1025
1026     if sess.target.is_like_osx {
1027         if let Some(option) = osx_strip_opt(sess.opts.debugging_opts.strip) {
1028             strip_symbols_in_osx(sess, &out_filename, option);
1029         }
1030     }
1031 }
1032
1033 fn strip_symbols_in_osx<'a>(sess: &'a Session, out_filename: &Path, option: &str) {
1034     let prog = Command::new("strip").arg(option).arg(out_filename).output();
1035     match prog {
1036         Ok(prog) => {
1037             if !prog.status.success() {
1038                 let mut output = prog.stderr.clone();
1039                 output.extend_from_slice(&prog.stdout);
1040                 sess.struct_warn(&format!(
1041                     "stripping debug info with `strip` failed: {}",
1042                     prog.status
1043                 ))
1044                 .note(&escape_string(&output))
1045                 .emit();
1046             }
1047         }
1048         Err(e) => sess.fatal(&format!("unable to run `strip`: {}", e)),
1049     }
1050 }
1051
1052 fn osx_strip_opt<'a>(strip: Strip) -> Option<&'a str> {
1053     match strip {
1054         Strip::Debuginfo => Some("-S"),
1055         Strip::Symbols => Some("-x"),
1056         Strip::None => None,
1057     }
1058 }
1059
1060 fn escape_string(s: &[u8]) -> String {
1061     str::from_utf8(s).map(|s| s.to_owned()).unwrap_or_else(|_| {
1062         let mut x = "Non-UTF-8 output: ".to_string();
1063         x.extend(s.iter().flat_map(|&b| ascii::escape_default(b)).map(char::from));
1064         x
1065     })
1066 }
1067
1068 fn add_sanitizer_libraries(sess: &Session, crate_type: CrateType, linker: &mut dyn Linker) {
1069     // On macOS the runtimes are distributed as dylibs which should be linked to
1070     // both executables and dynamic shared objects. Everywhere else the runtimes
1071     // are currently distributed as static liraries which should be linked to
1072     // executables only.
1073     let needs_runtime = match crate_type {
1074         CrateType::Executable => true,
1075         CrateType::Dylib | CrateType::Cdylib | CrateType::ProcMacro => sess.target.is_like_osx,
1076         CrateType::Rlib | CrateType::Staticlib => false,
1077     };
1078
1079     if !needs_runtime {
1080         return;
1081     }
1082
1083     let sanitizer = sess.opts.debugging_opts.sanitizer;
1084     if sanitizer.contains(SanitizerSet::ADDRESS) {
1085         link_sanitizer_runtime(sess, linker, "asan");
1086     }
1087     if sanitizer.contains(SanitizerSet::LEAK) {
1088         link_sanitizer_runtime(sess, linker, "lsan");
1089     }
1090     if sanitizer.contains(SanitizerSet::MEMORY) {
1091         link_sanitizer_runtime(sess, linker, "msan");
1092     }
1093     if sanitizer.contains(SanitizerSet::THREAD) {
1094         link_sanitizer_runtime(sess, linker, "tsan");
1095     }
1096     if sanitizer.contains(SanitizerSet::HWADDRESS) {
1097         link_sanitizer_runtime(sess, linker, "hwasan");
1098     }
1099 }
1100
1101 fn link_sanitizer_runtime(sess: &Session, linker: &mut dyn Linker, name: &str) {
1102     fn find_sanitizer_runtime(sess: &Session, filename: &String) -> PathBuf {
1103         let session_tlib =
1104             filesearch::make_target_lib_path(&sess.sysroot, sess.opts.target_triple.triple());
1105         let path = session_tlib.join(&filename);
1106         if path.exists() {
1107             return session_tlib;
1108         } else {
1109             let default_sysroot = filesearch::get_or_default_sysroot();
1110             let default_tlib = filesearch::make_target_lib_path(
1111                 &default_sysroot,
1112                 sess.opts.target_triple.triple(),
1113             );
1114             return default_tlib;
1115         }
1116     }
1117
1118     let channel = option_env!("CFG_RELEASE_CHANNEL")
1119         .map(|channel| format!("-{}", channel))
1120         .unwrap_or_default();
1121
1122     if sess.target.is_like_osx {
1123         // On Apple platforms, the sanitizer is always built as a dylib, and
1124         // LLVM will link to `@rpath/*.dylib`, so we need to specify an
1125         // rpath to the library as well (the rpath should be absolute, see
1126         // PR #41352 for details).
1127         let filename = format!("rustc{}_rt.{}", channel, name);
1128         let path = find_sanitizer_runtime(&sess, &filename);
1129         let rpath = path.to_str().expect("non-utf8 component in path");
1130         linker.args(&["-Wl,-rpath", "-Xlinker", rpath]);
1131         linker.link_dylib(Symbol::intern(&filename), false, true);
1132     } else {
1133         let filename = format!("librustc{}_rt.{}.a", channel, name);
1134         let path = find_sanitizer_runtime(&sess, &filename).join(&filename);
1135         linker.link_whole_rlib(&path);
1136     }
1137 }
1138
1139 /// Returns a boolean indicating whether the specified crate should be ignored
1140 /// during LTO.
1141 ///
1142 /// Crates ignored during LTO are not lumped together in the "massive object
1143 /// file" that we create and are linked in their normal rlib states. See
1144 /// comments below for what crates do not participate in LTO.
1145 ///
1146 /// It's unusual for a crate to not participate in LTO. Typically only
1147 /// compiler-specific and unstable crates have a reason to not participate in
1148 /// LTO.
1149 pub fn ignored_for_lto(sess: &Session, info: &CrateInfo, cnum: CrateNum) -> bool {
1150     // If our target enables builtin function lowering in LLVM then the
1151     // crates providing these functions don't participate in LTO (e.g.
1152     // no_builtins or compiler builtins crates).
1153     !sess.target.no_builtins
1154         && (info.compiler_builtins == Some(cnum) || info.is_no_builtins.contains(&cnum))
1155 }
1156
1157 // This functions tries to determine the appropriate linker (and corresponding LinkerFlavor) to use
1158 pub fn linker_and_flavor(sess: &Session) -> (PathBuf, LinkerFlavor) {
1159     fn infer_from(
1160         sess: &Session,
1161         linker: Option<PathBuf>,
1162         flavor: Option<LinkerFlavor>,
1163     ) -> Option<(PathBuf, LinkerFlavor)> {
1164         match (linker, flavor) {
1165             (Some(linker), Some(flavor)) => Some((linker, flavor)),
1166             // only the linker flavor is known; use the default linker for the selected flavor
1167             (None, Some(flavor)) => Some((
1168                 PathBuf::from(match flavor {
1169                     LinkerFlavor::Em => {
1170                         if cfg!(windows) {
1171                             "emcc.bat"
1172                         } else {
1173                             "emcc"
1174                         }
1175                     }
1176                     LinkerFlavor::Gcc => {
1177                         if cfg!(any(target_os = "solaris", target_os = "illumos")) {
1178                             // On historical Solaris systems, "cc" may have
1179                             // been Sun Studio, which is not flag-compatible
1180                             // with "gcc".  This history casts a long shadow,
1181                             // and many modern illumos distributions today
1182                             // ship GCC as "gcc" without also making it
1183                             // available as "cc".
1184                             "gcc"
1185                         } else {
1186                             "cc"
1187                         }
1188                     }
1189                     LinkerFlavor::Ld => "ld",
1190                     LinkerFlavor::Msvc => "link.exe",
1191                     LinkerFlavor::Lld(_) => "lld",
1192                     LinkerFlavor::PtxLinker => "rust-ptx-linker",
1193                     LinkerFlavor::BpfLinker => "bpf-linker",
1194                 }),
1195                 flavor,
1196             )),
1197             (Some(linker), None) => {
1198                 let stem = linker.file_stem().and_then(|stem| stem.to_str()).unwrap_or_else(|| {
1199                     sess.fatal("couldn't extract file stem from specified linker")
1200                 });
1201
1202                 let flavor = if stem == "emcc" {
1203                     LinkerFlavor::Em
1204                 } else if stem == "gcc"
1205                     || stem.ends_with("-gcc")
1206                     || stem == "clang"
1207                     || stem.ends_with("-clang")
1208                 {
1209                     LinkerFlavor::Gcc
1210                 } else if stem == "wasm-ld" || stem.ends_with("-wasm-ld") {
1211                     LinkerFlavor::Lld(LldFlavor::Wasm)
1212                 } else if stem == "ld" || stem == "ld.lld" || stem.ends_with("-ld") {
1213                     LinkerFlavor::Ld
1214                 } else if stem == "link" || stem == "lld-link" {
1215                     LinkerFlavor::Msvc
1216                 } else if stem == "lld" || stem == "rust-lld" {
1217                     LinkerFlavor::Lld(sess.target.lld_flavor)
1218                 } else {
1219                     // fall back to the value in the target spec
1220                     sess.target.linker_flavor
1221                 };
1222
1223                 Some((linker, flavor))
1224             }
1225             (None, None) => None,
1226         }
1227     }
1228
1229     // linker and linker flavor specified via command line have precedence over what the target
1230     // specification specifies
1231     if let Some(ret) = infer_from(sess, sess.opts.cg.linker.clone(), sess.opts.cg.linker_flavor) {
1232         return ret;
1233     }
1234
1235     if let Some(ret) = infer_from(
1236         sess,
1237         sess.target.linker.clone().map(PathBuf::from),
1238         Some(sess.target.linker_flavor),
1239     ) {
1240         return ret;
1241     }
1242
1243     bug!("Not enough information provided to determine how to invoke the linker");
1244 }
1245
1246 /// Returns a boolean indicating whether we should preserve the object files on
1247 /// the filesystem for their debug information. This is often useful with
1248 /// split-dwarf like schemes.
1249 fn preserve_objects_for_their_debuginfo(sess: &Session) -> bool {
1250     // If the objects don't have debuginfo there's nothing to preserve.
1251     if sess.opts.debuginfo == config::DebugInfo::None {
1252         return false;
1253     }
1254
1255     // If we're only producing artifacts that are archives, no need to preserve
1256     // the objects as they're losslessly contained inside the archives.
1257     let output_linked =
1258         sess.crate_types().iter().any(|&x| x != CrateType::Rlib && x != CrateType::Staticlib);
1259     if !output_linked {
1260         return false;
1261     }
1262
1263     // "unpacked" split debuginfo means that we leave object files as the
1264     // debuginfo is found in the original object files themselves
1265     sess.split_debuginfo() == SplitDebuginfo::Unpacked
1266 }
1267
1268 fn archive_search_paths(sess: &Session) -> Vec<PathBuf> {
1269     sess.target_filesearch(PathKind::Native).search_path_dirs()
1270 }
1271
1272 #[derive(PartialEq)]
1273 enum RlibFlavor {
1274     Normal,
1275     StaticlibBase,
1276 }
1277
1278 fn print_native_static_libs(sess: &Session, all_native_libs: &[NativeLib]) {
1279     let lib_args: Vec<_> = all_native_libs
1280         .iter()
1281         .filter(|l| relevant_lib(sess, l))
1282         .filter_map(|lib| {
1283             let name = lib.name?;
1284             match lib.kind {
1285                 NativeLibKind::Static { bundle: Some(false), .. }
1286                 | NativeLibKind::Dylib { .. }
1287                 | NativeLibKind::Unspecified => {
1288                     let verbatim = lib.verbatim.unwrap_or(false);
1289                     if sess.target.is_like_msvc {
1290                         Some(format!("{}{}", name, if verbatim { "" } else { ".lib" }))
1291                     } else if sess.target.linker_is_gnu {
1292                         Some(format!("-l{}{}", if verbatim { ":" } else { "" }, name))
1293                     } else {
1294                         Some(format!("-l{}", name))
1295                     }
1296                 }
1297                 NativeLibKind::Framework { .. } => {
1298                     // ld-only syntax, since there are no frameworks in MSVC
1299                     Some(format!("-framework {}", name))
1300                 }
1301                 // These are included, no need to print them
1302                 NativeLibKind::Static { bundle: None | Some(true), .. }
1303                 | NativeLibKind::RawDylib => None,
1304             }
1305         })
1306         .collect();
1307     if !lib_args.is_empty() {
1308         sess.note_without_error(
1309             "Link against the following native artifacts when linking \
1310                                  against this static library. The order and any duplication \
1311                                  can be significant on some platforms.",
1312         );
1313         // Prefix for greppability
1314         sess.note_without_error(&format!("native-static-libs: {}", &lib_args.join(" ")));
1315     }
1316 }
1317
1318 fn get_object_file_path(sess: &Session, name: &str, self_contained: bool) -> PathBuf {
1319     let fs = sess.target_filesearch(PathKind::Native);
1320     let file_path = fs.get_lib_path().join(name);
1321     if file_path.exists() {
1322         return file_path;
1323     }
1324     // Special directory with objects used only in self-contained linkage mode
1325     if self_contained {
1326         let file_path = fs.get_self_contained_lib_path().join(name);
1327         if file_path.exists() {
1328             return file_path;
1329         }
1330     }
1331     for search_path in fs.search_paths() {
1332         let file_path = search_path.dir.join(name);
1333         if file_path.exists() {
1334             return file_path;
1335         }
1336     }
1337     PathBuf::from(name)
1338 }
1339
1340 fn exec_linker(
1341     sess: &Session,
1342     cmd: &Command,
1343     out_filename: &Path,
1344     tmpdir: &Path,
1345 ) -> io::Result<Output> {
1346     // When attempting to spawn the linker we run a risk of blowing out the
1347     // size limits for spawning a new process with respect to the arguments
1348     // we pass on the command line.
1349     //
1350     // Here we attempt to handle errors from the OS saying "your list of
1351     // arguments is too big" by reinvoking the linker again with an `@`-file
1352     // that contains all the arguments. The theory is that this is then
1353     // accepted on all linkers and the linker will read all its options out of
1354     // there instead of looking at the command line.
1355     if !cmd.very_likely_to_exceed_some_spawn_limit() {
1356         match cmd.command().stdout(Stdio::piped()).stderr(Stdio::piped()).spawn() {
1357             Ok(child) => {
1358                 let output = child.wait_with_output();
1359                 flush_linked_file(&output, out_filename)?;
1360                 return output;
1361             }
1362             Err(ref e) if command_line_too_big(e) => {
1363                 info!("command line to linker was too big: {}", e);
1364             }
1365             Err(e) => return Err(e),
1366         }
1367     }
1368
1369     info!("falling back to passing arguments to linker via an @-file");
1370     let mut cmd2 = cmd.clone();
1371     let mut args = String::new();
1372     for arg in cmd2.take_args() {
1373         args.push_str(
1374             &Escape { arg: arg.to_str().unwrap(), is_like_msvc: sess.target.is_like_msvc }
1375                 .to_string(),
1376         );
1377         args.push('\n');
1378     }
1379     let file = tmpdir.join("linker-arguments");
1380     let bytes = if sess.target.is_like_msvc {
1381         let mut out = Vec::with_capacity((1 + args.len()) * 2);
1382         // start the stream with a UTF-16 BOM
1383         for c in std::iter::once(0xFEFF).chain(args.encode_utf16()) {
1384             // encode in little endian
1385             out.push(c as u8);
1386             out.push((c >> 8) as u8);
1387         }
1388         out
1389     } else {
1390         args.into_bytes()
1391     };
1392     fs::write(&file, &bytes)?;
1393     cmd2.arg(format!("@{}", file.display()));
1394     info!("invoking linker {:?}", cmd2);
1395     let output = cmd2.output();
1396     flush_linked_file(&output, out_filename)?;
1397     return output;
1398
1399     #[cfg(not(windows))]
1400     fn flush_linked_file(_: &io::Result<Output>, _: &Path) -> io::Result<()> {
1401         Ok(())
1402     }
1403
1404     #[cfg(windows)]
1405     fn flush_linked_file(
1406         command_output: &io::Result<Output>,
1407         out_filename: &Path,
1408     ) -> io::Result<()> {
1409         // On Windows, under high I/O load, output buffers are sometimes not flushed,
1410         // even long after process exit, causing nasty, non-reproducible output bugs.
1411         //
1412         // File::sync_all() calls FlushFileBuffers() down the line, which solves the problem.
1413         //
1414         // А full writeup of the original Chrome bug can be found at
1415         // randomascii.wordpress.com/2018/02/25/compiler-bug-linker-bug-windows-kernel-bug/amp
1416
1417         if let &Ok(ref out) = command_output {
1418             if out.status.success() {
1419                 if let Ok(of) = fs::OpenOptions::new().write(true).open(out_filename) {
1420                     of.sync_all()?;
1421                 }
1422             }
1423         }
1424
1425         Ok(())
1426     }
1427
1428     #[cfg(unix)]
1429     fn command_line_too_big(err: &io::Error) -> bool {
1430         err.raw_os_error() == Some(::libc::E2BIG)
1431     }
1432
1433     #[cfg(windows)]
1434     fn command_line_too_big(err: &io::Error) -> bool {
1435         const ERROR_FILENAME_EXCED_RANGE: i32 = 206;
1436         err.raw_os_error() == Some(ERROR_FILENAME_EXCED_RANGE)
1437     }
1438
1439     #[cfg(not(any(unix, windows)))]
1440     fn command_line_too_big(_: &io::Error) -> bool {
1441         false
1442     }
1443
1444     struct Escape<'a> {
1445         arg: &'a str,
1446         is_like_msvc: bool,
1447     }
1448
1449     impl<'a> fmt::Display for Escape<'a> {
1450         fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1451             if self.is_like_msvc {
1452                 // This is "documented" at
1453                 // https://docs.microsoft.com/en-us/cpp/build/reference/at-specify-a-linker-response-file
1454                 //
1455                 // Unfortunately there's not a great specification of the
1456                 // syntax I could find online (at least) but some local
1457                 // testing showed that this seemed sufficient-ish to catch
1458                 // at least a few edge cases.
1459                 write!(f, "\"")?;
1460                 for c in self.arg.chars() {
1461                     match c {
1462                         '"' => write!(f, "\\{}", c)?,
1463                         c => write!(f, "{}", c)?,
1464                     }
1465                 }
1466                 write!(f, "\"")?;
1467             } else {
1468                 // This is documented at https://linux.die.net/man/1/ld, namely:
1469                 //
1470                 // > Options in file are separated by whitespace. A whitespace
1471                 // > character may be included in an option by surrounding the
1472                 // > entire option in either single or double quotes. Any
1473                 // > character (including a backslash) may be included by
1474                 // > prefixing the character to be included with a backslash.
1475                 //
1476                 // We put an argument on each line, so all we need to do is
1477                 // ensure the line is interpreted as one whole argument.
1478                 for c in self.arg.chars() {
1479                     match c {
1480                         '\\' | ' ' => write!(f, "\\{}", c)?,
1481                         c => write!(f, "{}", c)?,
1482                     }
1483                 }
1484             }
1485             Ok(())
1486         }
1487     }
1488 }
1489
1490 fn link_output_kind(sess: &Session, crate_type: CrateType) -> LinkOutputKind {
1491     let kind = match (crate_type, sess.crt_static(Some(crate_type)), sess.relocation_model()) {
1492         (CrateType::Executable, _, _) if sess.is_wasi_reactor() => LinkOutputKind::WasiReactorExe,
1493         (CrateType::Executable, false, RelocModel::Pic) => LinkOutputKind::DynamicPicExe,
1494         (CrateType::Executable, false, _) => LinkOutputKind::DynamicNoPicExe,
1495         (CrateType::Executable, true, RelocModel::Pic) => LinkOutputKind::StaticPicExe,
1496         (CrateType::Executable, true, _) => LinkOutputKind::StaticNoPicExe,
1497         (_, true, _) => LinkOutputKind::StaticDylib,
1498         (_, false, _) => LinkOutputKind::DynamicDylib,
1499     };
1500
1501     // Adjust the output kind to target capabilities.
1502     let opts = &sess.target;
1503     let pic_exe_supported = opts.position_independent_executables;
1504     let static_pic_exe_supported = opts.static_position_independent_executables;
1505     let static_dylib_supported = opts.crt_static_allows_dylibs;
1506     match kind {
1507         LinkOutputKind::DynamicPicExe if !pic_exe_supported => LinkOutputKind::DynamicNoPicExe,
1508         LinkOutputKind::StaticPicExe if !static_pic_exe_supported => LinkOutputKind::StaticNoPicExe,
1509         LinkOutputKind::StaticDylib if !static_dylib_supported => LinkOutputKind::DynamicDylib,
1510         _ => kind,
1511     }
1512 }
1513
1514 // Returns true if linker is located within sysroot
1515 fn detect_self_contained_mingw(sess: &Session) -> bool {
1516     let (linker, _) = linker_and_flavor(&sess);
1517     // Assume `-C linker=rust-lld` as self-contained mode
1518     if linker == Path::new("rust-lld") {
1519         return true;
1520     }
1521     let linker_with_extension = if cfg!(windows) && linker.extension().is_none() {
1522         linker.with_extension("exe")
1523     } else {
1524         linker
1525     };
1526     for dir in env::split_paths(&env::var_os("PATH").unwrap_or_default()) {
1527         let full_path = dir.join(&linker_with_extension);
1528         // If linker comes from sysroot assume self-contained mode
1529         if full_path.is_file() && !full_path.starts_with(&sess.sysroot) {
1530             return false;
1531         }
1532     }
1533     true
1534 }
1535
1536 /// Whether we link to our own CRT objects instead of relying on gcc to pull them.
1537 /// We only provide such support for a very limited number of targets.
1538 fn crt_objects_fallback(sess: &Session, crate_type: CrateType) -> bool {
1539     if let Some(self_contained) = sess.opts.cg.link_self_contained {
1540         return self_contained;
1541     }
1542
1543     match sess.target.crt_objects_fallback {
1544         // FIXME: Find a better heuristic for "native musl toolchain is available",
1545         // based on host and linker path, for example.
1546         // (https://github.com/rust-lang/rust/pull/71769#issuecomment-626330237).
1547         Some(CrtObjectsFallback::Musl) => sess.crt_static(Some(crate_type)),
1548         Some(CrtObjectsFallback::Mingw) => {
1549             sess.host == sess.target
1550                 && sess.target.vendor != "uwp"
1551                 && detect_self_contained_mingw(&sess)
1552         }
1553         // FIXME: Figure out cases in which WASM needs to link with a native toolchain.
1554         Some(CrtObjectsFallback::Wasm) => true,
1555         None => false,
1556     }
1557 }
1558
1559 /// Add pre-link object files defined by the target spec.
1560 fn add_pre_link_objects(
1561     cmd: &mut dyn Linker,
1562     sess: &Session,
1563     link_output_kind: LinkOutputKind,
1564     self_contained: bool,
1565 ) {
1566     let opts = &sess.target;
1567     let objects =
1568         if self_contained { &opts.pre_link_objects_fallback } else { &opts.pre_link_objects };
1569     for obj in objects.get(&link_output_kind).iter().copied().flatten() {
1570         cmd.add_object(&get_object_file_path(sess, obj, self_contained));
1571     }
1572 }
1573
1574 /// Add post-link object files defined by the target spec.
1575 fn add_post_link_objects(
1576     cmd: &mut dyn Linker,
1577     sess: &Session,
1578     link_output_kind: LinkOutputKind,
1579     self_contained: bool,
1580 ) {
1581     let opts = &sess.target;
1582     let objects =
1583         if self_contained { &opts.post_link_objects_fallback } else { &opts.post_link_objects };
1584     for obj in objects.get(&link_output_kind).iter().copied().flatten() {
1585         cmd.add_object(&get_object_file_path(sess, obj, self_contained));
1586     }
1587 }
1588
1589 /// Add arbitrary "pre-link" args defined by the target spec or from command line.
1590 /// FIXME: Determine where exactly these args need to be inserted.
1591 fn add_pre_link_args(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) {
1592     if let Some(args) = sess.target.pre_link_args.get(&flavor) {
1593         cmd.args(args);
1594     }
1595     cmd.args(&sess.opts.debugging_opts.pre_link_args);
1596 }
1597
1598 /// Add a link script embedded in the target, if applicable.
1599 fn add_link_script(cmd: &mut dyn Linker, sess: &Session, tmpdir: &Path, crate_type: CrateType) {
1600     match (crate_type, &sess.target.link_script) {
1601         (CrateType::Cdylib | CrateType::Executable, Some(script)) => {
1602             if !sess.target.linker_is_gnu {
1603                 sess.fatal("can only use link script when linking with GNU-like linker");
1604             }
1605
1606             let file_name = ["rustc", &sess.target.llvm_target, "linkfile.ld"].join("-");
1607
1608             let path = tmpdir.join(file_name);
1609             if let Err(e) = fs::write(&path, script) {
1610                 sess.fatal(&format!("failed to write link script to {}: {}", path.display(), e));
1611             }
1612
1613             cmd.arg("--script");
1614             cmd.arg(path);
1615         }
1616         _ => {}
1617     }
1618 }
1619
1620 /// Add arbitrary "user defined" args defined from command line.
1621 /// FIXME: Determine where exactly these args need to be inserted.
1622 fn add_user_defined_link_args(cmd: &mut dyn Linker, sess: &Session) {
1623     cmd.args(&sess.opts.cg.link_args);
1624 }
1625
1626 /// Add arbitrary "late link" args defined by the target spec.
1627 /// FIXME: Determine where exactly these args need to be inserted.
1628 fn add_late_link_args(
1629     cmd: &mut dyn Linker,
1630     sess: &Session,
1631     flavor: LinkerFlavor,
1632     crate_type: CrateType,
1633     codegen_results: &CodegenResults,
1634 ) {
1635     let any_dynamic_crate = crate_type == CrateType::Dylib
1636         || codegen_results.crate_info.dependency_formats.iter().any(|(ty, list)| {
1637             *ty == crate_type && list.iter().any(|&linkage| linkage == Linkage::Dynamic)
1638         });
1639     if any_dynamic_crate {
1640         if let Some(args) = sess.target.late_link_args_dynamic.get(&flavor) {
1641             cmd.args(args);
1642         }
1643     } else {
1644         if let Some(args) = sess.target.late_link_args_static.get(&flavor) {
1645             cmd.args(args);
1646         }
1647     }
1648     if let Some(args) = sess.target.late_link_args.get(&flavor) {
1649         cmd.args(args);
1650     }
1651 }
1652
1653 /// Add arbitrary "post-link" args defined by the target spec.
1654 /// FIXME: Determine where exactly these args need to be inserted.
1655 fn add_post_link_args(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) {
1656     if let Some(args) = sess.target.post_link_args.get(&flavor) {
1657         cmd.args(args);
1658     }
1659 }
1660
1661 /// Add object files containing code from the current crate.
1662 fn add_local_crate_regular_objects(cmd: &mut dyn Linker, codegen_results: &CodegenResults) {
1663     for obj in codegen_results.modules.iter().filter_map(|m| m.object.as_ref()) {
1664         cmd.add_object(obj);
1665     }
1666 }
1667
1668 /// Add object files for allocator code linked once for the whole crate tree.
1669 fn add_local_crate_allocator_objects(cmd: &mut dyn Linker, codegen_results: &CodegenResults) {
1670     if let Some(obj) = codegen_results.allocator_module.as_ref().and_then(|m| m.object.as_ref()) {
1671         cmd.add_object(obj);
1672     }
1673 }
1674
1675 /// Add object files containing metadata for the current crate.
1676 fn add_local_crate_metadata_objects(
1677     cmd: &mut dyn Linker,
1678     crate_type: CrateType,
1679     codegen_results: &CodegenResults,
1680 ) {
1681     // When linking a dynamic library, we put the metadata into a section of the
1682     // executable. This metadata is in a separate object file from the main
1683     // object file, so we link that in here.
1684     if crate_type == CrateType::Dylib || crate_type == CrateType::ProcMacro {
1685         if let Some(obj) = codegen_results.metadata_module.as_ref().and_then(|m| m.object.as_ref())
1686         {
1687             cmd.add_object(obj);
1688         }
1689     }
1690 }
1691
1692 /// Add sysroot and other globally set directories to the directory search list.
1693 fn add_library_search_dirs(cmd: &mut dyn Linker, sess: &Session, self_contained: bool) {
1694     // The default library location, we need this to find the runtime.
1695     // The location of crates will be determined as needed.
1696     let lib_path = sess.target_filesearch(PathKind::All).get_lib_path();
1697     cmd.include_path(&fix_windows_verbatim_for_gcc(&lib_path));
1698
1699     // Special directory with libraries used only in self-contained linkage mode
1700     if self_contained {
1701         let lib_path = sess.target_filesearch(PathKind::All).get_self_contained_lib_path();
1702         cmd.include_path(&fix_windows_verbatim_for_gcc(&lib_path));
1703     }
1704 }
1705
1706 /// Add options making relocation sections in the produced ELF files read-only
1707 /// and suppressing lazy binding.
1708 fn add_relro_args(cmd: &mut dyn Linker, sess: &Session) {
1709     match sess.opts.debugging_opts.relro_level.unwrap_or(sess.target.relro_level) {
1710         RelroLevel::Full => cmd.full_relro(),
1711         RelroLevel::Partial => cmd.partial_relro(),
1712         RelroLevel::Off => cmd.no_relro(),
1713         RelroLevel::None => {}
1714     }
1715 }
1716
1717 /// Add library search paths used at runtime by dynamic linkers.
1718 fn add_rpath_args(
1719     cmd: &mut dyn Linker,
1720     sess: &Session,
1721     codegen_results: &CodegenResults,
1722     out_filename: &Path,
1723 ) {
1724     // FIXME (#2397): At some point we want to rpath our guesses as to
1725     // where extern libraries might live, based on the
1726     // add_lib_search_paths
1727     if sess.opts.cg.rpath {
1728         let libs = codegen_results
1729             .crate_info
1730             .used_crates
1731             .iter()
1732             .filter_map(|cnum| {
1733                 codegen_results.crate_info.used_crate_source[cnum]
1734                     .dylib
1735                     .as_ref()
1736                     .map(|(path, _)| &**path)
1737             })
1738             .collect::<Vec<_>>();
1739         let mut rpath_config = RPathConfig {
1740             libs: &*libs,
1741             out_filename: out_filename.to_path_buf(),
1742             has_rpath: sess.target.has_rpath,
1743             is_like_osx: sess.target.is_like_osx,
1744             linker_is_gnu: sess.target.linker_is_gnu,
1745         };
1746         cmd.args(&rpath::get_rpath_flags(&mut rpath_config));
1747     }
1748 }
1749
1750 /// Produce the linker command line containing linker path and arguments.
1751 ///
1752 /// When comments in the function say "order-(in)dependent" they mean order-dependence between
1753 /// options and libraries/object files. For example `--whole-archive` (order-dependent) applies
1754 /// to specific libraries passed after it, and `-o` (output file, order-independent) applies
1755 /// to the linking process as a whole.
1756 /// Order-independent options may still override each other in order-dependent fashion,
1757 /// e.g `--foo=yes --foo=no` may be equivalent to `--foo=no`.
1758 fn linker_with_args<'a, B: ArchiveBuilder<'a>>(
1759     path: &Path,
1760     flavor: LinkerFlavor,
1761     sess: &'a Session,
1762     crate_type: CrateType,
1763     tmpdir: &Path,
1764     out_filename: &Path,
1765     codegen_results: &CodegenResults,
1766 ) -> Command {
1767     let crt_objects_fallback = crt_objects_fallback(sess, crate_type);
1768     let cmd = &mut *super::linker::get_linker(
1769         sess,
1770         path,
1771         flavor,
1772         crt_objects_fallback,
1773         &codegen_results.crate_info.target_cpu,
1774     );
1775     let link_output_kind = link_output_kind(sess, crate_type);
1776
1777     // ------------ Early order-dependent options ------------
1778
1779     // If we're building something like a dynamic library then some platforms
1780     // need to make sure that all symbols are exported correctly from the
1781     // dynamic library.
1782     // Must be passed before any libraries to prevent the symbols to export from being thrown away,
1783     // at least on some platforms (e.g. windows-gnu).
1784     cmd.export_symbols(
1785         tmpdir,
1786         crate_type,
1787         &codegen_results.crate_info.exported_symbols[&crate_type],
1788     );
1789
1790     // Can be used for adding custom CRT objects or overriding order-dependent options above.
1791     // FIXME: In practice built-in target specs use this for arbitrary order-independent options,
1792     // introduce a target spec option for order-independent linker options and migrate built-in
1793     // specs to it.
1794     add_pre_link_args(cmd, sess, flavor);
1795
1796     // ------------ Object code and libraries, order-dependent ------------
1797
1798     // Pre-link CRT objects.
1799     add_pre_link_objects(cmd, sess, link_output_kind, crt_objects_fallback);
1800
1801     // Sanitizer libraries.
1802     add_sanitizer_libraries(sess, crate_type, cmd);
1803
1804     // Object code from the current crate.
1805     // Take careful note of the ordering of the arguments we pass to the linker
1806     // here. Linkers will assume that things on the left depend on things to the
1807     // right. Things on the right cannot depend on things on the left. This is
1808     // all formally implemented in terms of resolving symbols (libs on the right
1809     // resolve unknown symbols of libs on the left, but not vice versa).
1810     //
1811     // For this reason, we have organized the arguments we pass to the linker as
1812     // such:
1813     //
1814     // 1. The local object that LLVM just generated
1815     // 2. Local native libraries
1816     // 3. Upstream rust libraries
1817     // 4. Upstream native libraries
1818     //
1819     // The rationale behind this ordering is that those items lower down in the
1820     // list can't depend on items higher up in the list. For example nothing can
1821     // depend on what we just generated (e.g., that'd be a circular dependency).
1822     // Upstream rust libraries are not supposed to depend on our local native
1823     // libraries as that would violate the structure of the DAG, in that
1824     // scenario they are required to link to them as well in a shared fashion.
1825     // (The current implementation still doesn't prevent it though, see the FIXME below.)
1826     //
1827     // Note that upstream rust libraries may contain native dependencies as
1828     // well, but they also can't depend on what we just started to add to the
1829     // link line. And finally upstream native libraries can't depend on anything
1830     // in this DAG so far because they can only depend on other native libraries
1831     // and such dependencies are also required to be specified.
1832     add_local_crate_regular_objects(cmd, codegen_results);
1833     add_local_crate_metadata_objects(cmd, crate_type, codegen_results);
1834     add_local_crate_allocator_objects(cmd, codegen_results);
1835
1836     // Avoid linking to dynamic libraries unless they satisfy some undefined symbols
1837     // at the point at which they are specified on the command line.
1838     // Must be passed before any (dynamic) libraries to have effect on them.
1839     // On Solaris-like systems, `-z ignore` acts as both `--as-needed` and `--gc-sections`
1840     // so it will ignore unreferenced ELF sections from relocatable objects.
1841     // For that reason, we put this flag after metadata objects as they would otherwise be removed.
1842     // FIXME: Support more fine-grained dead code removal on Solaris/illumos
1843     // and move this option back to the top.
1844     cmd.add_as_needed();
1845
1846     // FIXME: Move this below to other native libraries
1847     // (or alternatively link all native libraries after their respective crates).
1848     // This change is somewhat breaking in practice due to local static libraries being linked
1849     // as whole-archive (#85144), so removing whole-archive may be a pre-requisite.
1850     if sess.opts.debugging_opts.link_native_libraries {
1851         add_local_native_libraries(cmd, sess, codegen_results);
1852     }
1853
1854     // Upstream rust libraries and their nobundle static libraries
1855     add_upstream_rust_crates::<B>(cmd, sess, codegen_results, crate_type, tmpdir);
1856
1857     // Upstream dymamic native libraries linked with `#[link]` attributes at and `-l`
1858     // command line options.
1859     // If -Zlink-native-libraries=false is set, then the assumption is that an
1860     // external build system already has the native dependencies defined, and it
1861     // will provide them to the linker itself.
1862     if sess.opts.debugging_opts.link_native_libraries {
1863         add_upstream_native_libraries(cmd, sess, codegen_results);
1864     }
1865
1866     // Library linking above uses some global state for things like `-Bstatic`/`-Bdynamic` to make
1867     // command line shorter, reset it to default here before adding more libraries.
1868     cmd.reset_per_library_state();
1869
1870     // FIXME: Built-in target specs occasionally use this for linking system libraries,
1871     // eliminate all such uses by migrating them to `#[link]` attributes in `lib(std,c,unwind)`
1872     // and remove the option.
1873     add_late_link_args(cmd, sess, flavor, crate_type, codegen_results);
1874
1875     // ------------ Arbitrary order-independent options ------------
1876
1877     // Add order-independent options determined by rustc from its compiler options,
1878     // target properties and source code.
1879     add_order_independent_options(
1880         cmd,
1881         sess,
1882         link_output_kind,
1883         crt_objects_fallback,
1884         flavor,
1885         crate_type,
1886         codegen_results,
1887         out_filename,
1888         tmpdir,
1889     );
1890
1891     // Can be used for arbitrary order-independent options.
1892     // In practice may also be occasionally used for linking native libraries.
1893     // Passed after compiler-generated options to support manual overriding when necessary.
1894     add_user_defined_link_args(cmd, sess);
1895
1896     // ------------ Object code and libraries, order-dependent ------------
1897
1898     // Post-link CRT objects.
1899     add_post_link_objects(cmd, sess, link_output_kind, crt_objects_fallback);
1900
1901     // ------------ Late order-dependent options ------------
1902
1903     // Doesn't really make sense.
1904     // FIXME: In practice built-in target specs use this for arbitrary order-independent options,
1905     // introduce a target spec option for order-independent linker options, migrate built-in specs
1906     // to it and remove the option.
1907     add_post_link_args(cmd, sess, flavor);
1908
1909     cmd.take_cmd()
1910 }
1911
1912 fn add_order_independent_options(
1913     cmd: &mut dyn Linker,
1914     sess: &Session,
1915     link_output_kind: LinkOutputKind,
1916     crt_objects_fallback: bool,
1917     flavor: LinkerFlavor,
1918     crate_type: CrateType,
1919     codegen_results: &CodegenResults,
1920     out_filename: &Path,
1921     tmpdir: &Path,
1922 ) {
1923     add_gcc_ld_path(cmd, sess, flavor);
1924
1925     add_apple_sdk(cmd, sess, flavor);
1926
1927     add_link_script(cmd, sess, tmpdir, crate_type);
1928
1929     if sess.target.is_like_fuchsia && crate_type == CrateType::Executable {
1930         let prefix = if sess.opts.debugging_opts.sanitizer.contains(SanitizerSet::ADDRESS) {
1931             "asan/"
1932         } else {
1933             ""
1934         };
1935         cmd.arg(format!("--dynamic-linker={}ld.so.1", prefix));
1936     }
1937
1938     if sess.target.eh_frame_header {
1939         cmd.add_eh_frame_header();
1940     }
1941
1942     // Make the binary compatible with data execution prevention schemes.
1943     cmd.add_no_exec();
1944
1945     if crt_objects_fallback {
1946         cmd.no_crt_objects();
1947     }
1948
1949     if sess.target.is_like_emscripten {
1950         cmd.arg("-s");
1951         cmd.arg(if sess.panic_strategy() == PanicStrategy::Abort {
1952             "DISABLE_EXCEPTION_CATCHING=1"
1953         } else {
1954             "DISABLE_EXCEPTION_CATCHING=0"
1955         });
1956     }
1957
1958     if flavor == LinkerFlavor::PtxLinker {
1959         // Provide the linker with fallback to internal `target-cpu`.
1960         cmd.arg("--fallback-arch");
1961         cmd.arg(&codegen_results.crate_info.target_cpu);
1962     } else if flavor == LinkerFlavor::BpfLinker {
1963         cmd.arg("--cpu");
1964         cmd.arg(&codegen_results.crate_info.target_cpu);
1965         cmd.arg("--cpu-features");
1966         cmd.arg(match &sess.opts.cg.target_feature {
1967             feat if !feat.is_empty() => feat,
1968             _ => &sess.target.options.features,
1969         });
1970     }
1971
1972     cmd.linker_plugin_lto();
1973
1974     add_library_search_dirs(cmd, sess, crt_objects_fallback);
1975
1976     cmd.output_filename(out_filename);
1977
1978     if crate_type == CrateType::Executable && sess.target.is_like_windows {
1979         if let Some(ref s) = codegen_results.crate_info.windows_subsystem {
1980             cmd.subsystem(s);
1981         }
1982     }
1983
1984     // Try to strip as much out of the generated object by removing unused
1985     // sections if possible. See more comments in linker.rs
1986     if !sess.link_dead_code() {
1987         // If PGO is enabled sometimes gc_sections will remove the profile data section
1988         // as it appears to be unused. This can then cause the PGO profile file to lose
1989         // some functions. If we are generating a profile we shouldn't strip those metadata
1990         // sections to ensure we have all the data for PGO.
1991         let keep_metadata =
1992             crate_type == CrateType::Dylib || sess.opts.cg.profile_generate.enabled();
1993         cmd.gc_sections(keep_metadata);
1994     }
1995
1996     cmd.set_output_kind(link_output_kind, out_filename);
1997
1998     add_relro_args(cmd, sess);
1999
2000     // Pass optimization flags down to the linker.
2001     cmd.optimize();
2002
2003     // Pass debuginfo and strip flags down to the linker.
2004     cmd.debuginfo(sess.opts.debugging_opts.strip);
2005
2006     // We want to prevent the compiler from accidentally leaking in any system libraries,
2007     // so by default we tell linkers not to link to any default libraries.
2008     if !sess.opts.cg.default_linker_libraries && sess.target.no_default_libraries {
2009         cmd.no_default_libraries();
2010     }
2011
2012     if sess.opts.cg.profile_generate.enabled() || sess.instrument_coverage() {
2013         cmd.pgo_gen();
2014     }
2015
2016     if sess.opts.cg.control_flow_guard != CFGuard::Disabled {
2017         cmd.control_flow_guard();
2018     }
2019
2020     add_rpath_args(cmd, sess, codegen_results, out_filename);
2021 }
2022
2023 /// # Native library linking
2024 ///
2025 /// User-supplied library search paths (-L on the command line). These are the same paths used to
2026 /// find Rust crates, so some of them may have been added already by the previous crate linking
2027 /// code. This only allows them to be found at compile time so it is still entirely up to outside
2028 /// forces to make sure that library can be found at runtime.
2029 ///
2030 /// Also note that the native libraries linked here are only the ones located in the current crate.
2031 /// Upstream crates with native library dependencies may have their native library pulled in above.
2032 fn add_local_native_libraries(
2033     cmd: &mut dyn Linker,
2034     sess: &Session,
2035     codegen_results: &CodegenResults,
2036 ) {
2037     let filesearch = sess.target_filesearch(PathKind::All);
2038     for search_path in filesearch.search_paths() {
2039         match search_path.kind {
2040             PathKind::Framework => {
2041                 cmd.framework_path(&search_path.dir);
2042             }
2043             _ => {
2044                 cmd.include_path(&fix_windows_verbatim_for_gcc(&search_path.dir));
2045             }
2046         }
2047     }
2048
2049     let relevant_libs =
2050         codegen_results.crate_info.used_libraries.iter().filter(|l| relevant_lib(sess, l));
2051
2052     let search_path = OnceCell::new();
2053     let mut last = (NativeLibKind::Unspecified, None);
2054     for lib in relevant_libs {
2055         let name = match lib.name {
2056             Some(l) => l,
2057             None => continue,
2058         };
2059
2060         // Skip if this library is the same as the last.
2061         last = if (lib.kind, lib.name) == last { continue } else { (lib.kind, lib.name) };
2062
2063         let verbatim = lib.verbatim.unwrap_or(false);
2064         match lib.kind {
2065             NativeLibKind::Dylib { as_needed } => {
2066                 cmd.link_dylib(name, verbatim, as_needed.unwrap_or(true))
2067             }
2068             NativeLibKind::Unspecified => cmd.link_dylib(name, verbatim, true),
2069             NativeLibKind::Framework { as_needed } => {
2070                 cmd.link_framework(name, as_needed.unwrap_or(true))
2071             }
2072             NativeLibKind::Static { bundle: None | Some(true), .. }
2073             | NativeLibKind::Static { whole_archive: Some(true), .. } => {
2074                 cmd.link_whole_staticlib(
2075                     name,
2076                     verbatim,
2077                     &search_path.get_or_init(|| archive_search_paths(sess)),
2078                 );
2079             }
2080             NativeLibKind::Static { .. } => cmd.link_staticlib(name, verbatim),
2081             NativeLibKind::RawDylib => {
2082                 // FIXME(#58713): Proper handling for raw dylibs.
2083                 bug!("raw_dylib feature not yet implemented");
2084             }
2085         }
2086     }
2087 }
2088
2089 /// # Linking Rust crates and their nobundle static libraries
2090 ///
2091 /// Rust crates are not considered at all when creating an rlib output. All dependencies will be
2092 /// linked when producing the final output (instead of the intermediate rlib version).
2093 fn add_upstream_rust_crates<'a, B: ArchiveBuilder<'a>>(
2094     cmd: &mut dyn Linker,
2095     sess: &'a Session,
2096     codegen_results: &CodegenResults,
2097     crate_type: CrateType,
2098     tmpdir: &Path,
2099 ) {
2100     // All of the heavy lifting has previously been accomplished by the
2101     // dependency_format module of the compiler. This is just crawling the
2102     // output of that module, adding crates as necessary.
2103     //
2104     // Linking to a rlib involves just passing it to the linker (the linker
2105     // will slurp up the object files inside), and linking to a dynamic library
2106     // involves just passing the right -l flag.
2107
2108     let (_, data) = codegen_results
2109         .crate_info
2110         .dependency_formats
2111         .iter()
2112         .find(|(ty, _)| *ty == crate_type)
2113         .expect("failed to find crate type in dependency format list");
2114
2115     // Invoke get_used_crates to ensure that we get a topological sorting of
2116     // crates.
2117     let deps = &codegen_results.crate_info.used_crates;
2118
2119     // There's a few internal crates in the standard library (aka libcore and
2120     // libstd) which actually have a circular dependence upon one another. This
2121     // currently arises through "weak lang items" where libcore requires things
2122     // like `rust_begin_unwind` but libstd ends up defining it. To get this
2123     // circular dependence to work correctly in all situations we'll need to be
2124     // sure to correctly apply the `--start-group` and `--end-group` options to
2125     // GNU linkers, otherwise if we don't use any other symbol from the standard
2126     // library it'll get discarded and the whole application won't link.
2127     //
2128     // In this loop we're calculating the `group_end`, after which crate to
2129     // pass `--end-group` and `group_start`, before which crate to pass
2130     // `--start-group`. We currently do this by passing `--end-group` after
2131     // the first crate (when iterating backwards) that requires a lang item
2132     // defined somewhere else. Once that's set then when we've defined all the
2133     // necessary lang items we'll pass `--start-group`.
2134     //
2135     // Note that this isn't amazing logic for now but it should do the trick
2136     // for the current implementation of the standard library.
2137     let mut group_end = None;
2138     let mut group_start = None;
2139     // Crates available for linking thus far.
2140     let mut available = FxHashSet::default();
2141     // Crates required to satisfy dependencies discovered so far.
2142     let mut required = FxHashSet::default();
2143
2144     let info = &codegen_results.crate_info;
2145     for &cnum in deps.iter().rev() {
2146         if let Some(missing) = info.missing_lang_items.get(&cnum) {
2147             let missing_crates = missing.iter().map(|i| info.lang_item_to_crate.get(i).copied());
2148             required.extend(missing_crates);
2149         }
2150
2151         required.insert(Some(cnum));
2152         available.insert(Some(cnum));
2153
2154         if required.len() > available.len() && group_end.is_none() {
2155             group_end = Some(cnum);
2156         }
2157         if required.len() == available.len() && group_end.is_some() {
2158             group_start = Some(cnum);
2159             break;
2160         }
2161     }
2162
2163     // If we didn't end up filling in all lang items from upstream crates then
2164     // we'll be filling it in with our crate. This probably means we're the
2165     // standard library itself, so skip this for now.
2166     if group_end.is_some() && group_start.is_none() {
2167         group_end = None;
2168     }
2169
2170     let mut compiler_builtins = None;
2171     let search_path = OnceCell::new();
2172
2173     for &cnum in deps.iter() {
2174         if group_start == Some(cnum) {
2175             cmd.group_start();
2176         }
2177
2178         // We may not pass all crates through to the linker. Some crates may
2179         // appear statically in an existing dylib, meaning we'll pick up all the
2180         // symbols from the dylib.
2181         let src = &codegen_results.crate_info.used_crate_source[&cnum];
2182         match data[cnum.as_usize() - 1] {
2183             _ if codegen_results.crate_info.profiler_runtime == Some(cnum) => {
2184                 add_static_crate::<B>(cmd, sess, codegen_results, tmpdir, crate_type, cnum);
2185             }
2186             // compiler-builtins are always placed last to ensure that they're
2187             // linked correctly.
2188             _ if codegen_results.crate_info.compiler_builtins == Some(cnum) => {
2189                 assert!(compiler_builtins.is_none());
2190                 compiler_builtins = Some(cnum);
2191             }
2192             Linkage::NotLinked | Linkage::IncludedFromDylib => {}
2193             Linkage::Static => {
2194                 add_static_crate::<B>(cmd, sess, codegen_results, tmpdir, crate_type, cnum);
2195
2196                 // Link static native libs with "-bundle" modifier only if the crate they originate from
2197                 // is being linked statically to the current crate.  If it's linked dynamically
2198                 // or is an rlib already included via some other dylib crate, the symbols from
2199                 // native libs will have already been included in that dylib.
2200                 //
2201                 // If -Zlink-native-libraries=false is set, then the assumption is that an
2202                 // external build system already has the native dependencies defined, and it
2203                 // will provide them to the linker itself.
2204                 if sess.opts.debugging_opts.link_native_libraries {
2205                     let mut last = None;
2206                     for lib in &codegen_results.crate_info.native_libraries[&cnum] {
2207                         if !relevant_lib(sess, lib) {
2208                             // Skip libraries if they are disabled by `#[link(cfg=...)]`
2209                             continue;
2210                         }
2211
2212                         // Skip if this library is the same as the last.
2213                         if last == lib.name {
2214                             continue;
2215                         }
2216
2217                         if let Some(static_lib_name) = lib.name {
2218                             if let NativeLibKind::Static { bundle: Some(false), whole_archive } =
2219                                 lib.kind
2220                             {
2221                                 let verbatim = lib.verbatim.unwrap_or(false);
2222                                 if whole_archive == Some(true) {
2223                                     cmd.link_whole_staticlib(
2224                                         static_lib_name,
2225                                         verbatim,
2226                                         search_path.get_or_init(|| archive_search_paths(sess)),
2227                                     );
2228                                 } else {
2229                                     cmd.link_staticlib(static_lib_name, verbatim);
2230                                 }
2231
2232                                 last = lib.name;
2233                             }
2234                         }
2235                     }
2236                 }
2237             }
2238             Linkage::Dynamic => add_dynamic_crate(cmd, sess, &src.dylib.as_ref().unwrap().0),
2239         }
2240
2241         if group_end == Some(cnum) {
2242             cmd.group_end();
2243         }
2244     }
2245
2246     // compiler-builtins are always placed last to ensure that they're
2247     // linked correctly.
2248     // We must always link the `compiler_builtins` crate statically. Even if it
2249     // was already "included" in a dylib (e.g., `libstd` when `-C prefer-dynamic`
2250     // is used)
2251     if let Some(cnum) = compiler_builtins {
2252         add_static_crate::<B>(cmd, sess, codegen_results, tmpdir, crate_type, cnum);
2253     }
2254
2255     // Converts a library file-stem into a cc -l argument
2256     fn unlib<'a>(target: &Target, stem: &'a str) -> &'a str {
2257         if stem.starts_with("lib") && !target.is_like_windows { &stem[3..] } else { stem }
2258     }
2259
2260     // Adds the static "rlib" versions of all crates to the command line.
2261     // There's a bit of magic which happens here specifically related to LTO,
2262     // namely that we remove upstream object files.
2263     //
2264     // When performing LTO, almost(*) all of the bytecode from the upstream
2265     // libraries has already been included in our object file output. As a
2266     // result we need to remove the object files in the upstream libraries so
2267     // the linker doesn't try to include them twice (or whine about duplicate
2268     // symbols). We must continue to include the rest of the rlib, however, as
2269     // it may contain static native libraries which must be linked in.
2270     //
2271     // (*) Crates marked with `#![no_builtins]` don't participate in LTO and
2272     // their bytecode wasn't included. The object files in those libraries must
2273     // still be passed to the linker.
2274     //
2275     // Note, however, that if we're not doing LTO we can just pass the rlib
2276     // blindly to the linker (fast) because it's fine if it's not actually
2277     // included as we're at the end of the dependency chain.
2278     fn add_static_crate<'a, B: ArchiveBuilder<'a>>(
2279         cmd: &mut dyn Linker,
2280         sess: &'a Session,
2281         codegen_results: &CodegenResults,
2282         tmpdir: &Path,
2283         crate_type: CrateType,
2284         cnum: CrateNum,
2285     ) {
2286         let src = &codegen_results.crate_info.used_crate_source[&cnum];
2287         let cratepath = &src.rlib.as_ref().unwrap().0;
2288
2289         let mut link_upstream = |path: &Path| {
2290             // If we're creating a dylib, then we need to include the
2291             // whole of each object in our archive into that artifact. This is
2292             // because a `dylib` can be reused as an intermediate artifact.
2293             //
2294             // Note, though, that we don't want to include the whole of a
2295             // compiler-builtins crate (e.g., compiler-rt) because it'll get
2296             // repeatedly linked anyway.
2297             let path = fix_windows_verbatim_for_gcc(path);
2298             if crate_type == CrateType::Dylib
2299                 && codegen_results.crate_info.compiler_builtins != Some(cnum)
2300             {
2301                 cmd.link_whole_rlib(&path);
2302             } else {
2303                 cmd.link_rlib(&path);
2304             }
2305         };
2306
2307         // See the comment above in `link_staticlib` and `link_rlib` for why if
2308         // there's a static library that's not relevant we skip all object
2309         // files.
2310         let native_libs = &codegen_results.crate_info.native_libraries[&cnum];
2311         let skip_native = native_libs.iter().any(|lib| {
2312             matches!(lib.kind, NativeLibKind::Static { bundle: None | Some(true), .. })
2313                 && !relevant_lib(sess, lib)
2314         });
2315
2316         if (!are_upstream_rust_objects_already_included(sess)
2317             || ignored_for_lto(sess, &codegen_results.crate_info, cnum))
2318             && !skip_native
2319         {
2320             link_upstream(cratepath);
2321             return;
2322         }
2323
2324         let dst = tmpdir.join(cratepath.file_name().unwrap());
2325         let name = cratepath.file_name().unwrap().to_str().unwrap();
2326         let name = &name[3..name.len() - 5]; // chop off lib/.rlib
2327
2328         sess.prof.generic_activity_with_arg("link_altering_rlib", name).run(|| {
2329             let mut archive = <B as ArchiveBuilder>::new(sess, &dst, Some(cratepath));
2330             archive.update_symbols();
2331
2332             let mut any_objects = false;
2333             for f in archive.src_files() {
2334                 if f == METADATA_FILENAME {
2335                     archive.remove_file(&f);
2336                     continue;
2337                 }
2338
2339                 let canonical = f.replace("-", "_");
2340                 let canonical_name = name.replace("-", "_");
2341
2342                 let is_rust_object =
2343                     canonical.starts_with(&canonical_name) && looks_like_rust_object_file(&f);
2344
2345                 // If we've been requested to skip all native object files
2346                 // (those not generated by the rust compiler) then we can skip
2347                 // this file. See above for why we may want to do this.
2348                 let skip_because_cfg_say_so = skip_native && !is_rust_object;
2349
2350                 // If we're performing LTO and this is a rust-generated object
2351                 // file, then we don't need the object file as it's part of the
2352                 // LTO module. Note that `#![no_builtins]` is excluded from LTO,
2353                 // though, so we let that object file slide.
2354                 let skip_because_lto = are_upstream_rust_objects_already_included(sess)
2355                     && is_rust_object
2356                     && (sess.target.no_builtins
2357                         || !codegen_results.crate_info.is_no_builtins.contains(&cnum));
2358
2359                 if skip_because_cfg_say_so || skip_because_lto {
2360                     archive.remove_file(&f);
2361                 } else {
2362                     any_objects = true;
2363                 }
2364             }
2365
2366             if !any_objects {
2367                 return;
2368             }
2369             archive.build();
2370             link_upstream(&dst);
2371         });
2372     }
2373
2374     // Same thing as above, but for dynamic crates instead of static crates.
2375     fn add_dynamic_crate(cmd: &mut dyn Linker, sess: &Session, cratepath: &Path) {
2376         // Just need to tell the linker about where the library lives and
2377         // what its name is
2378         let parent = cratepath.parent();
2379         if let Some(dir) = parent {
2380             cmd.include_path(&fix_windows_verbatim_for_gcc(dir));
2381         }
2382         let filestem = cratepath.file_stem().unwrap().to_str().unwrap();
2383         cmd.link_rust_dylib(
2384             Symbol::intern(&unlib(&sess.target, filestem)),
2385             parent.unwrap_or_else(|| Path::new("")),
2386         );
2387     }
2388 }
2389
2390 /// Link in all of our upstream crates' native dependencies. Remember that all of these upstream
2391 /// native dependencies are all non-static dependencies. We've got two cases then:
2392 ///
2393 /// 1. The upstream crate is an rlib. In this case we *must* link in the native dependency because
2394 /// the rlib is just an archive.
2395 ///
2396 /// 2. The upstream crate is a dylib. In order to use the dylib, we have to have the dependency
2397 /// present on the system somewhere. Thus, we don't gain a whole lot from not linking in the
2398 /// dynamic dependency to this crate as well.
2399 ///
2400 /// The use case for this is a little subtle. In theory the native dependencies of a crate are
2401 /// purely an implementation detail of the crate itself, but the problem arises with generic and
2402 /// inlined functions. If a generic function calls a native function, then the generic function
2403 /// must be instantiated in the target crate, meaning that the native symbol must also be resolved
2404 /// in the target crate.
2405 fn add_upstream_native_libraries(
2406     cmd: &mut dyn Linker,
2407     sess: &Session,
2408     codegen_results: &CodegenResults,
2409 ) {
2410     let mut last = (NativeLibKind::Unspecified, None);
2411     for &cnum in &codegen_results.crate_info.used_crates {
2412         for lib in codegen_results.crate_info.native_libraries[&cnum].iter() {
2413             let name = match lib.name {
2414                 Some(l) => l,
2415                 None => continue,
2416             };
2417             if !relevant_lib(sess, &lib) {
2418                 continue;
2419             }
2420
2421             // Skip if this library is the same as the last.
2422             last = if (lib.kind, lib.name) == last { continue } else { (lib.kind, lib.name) };
2423
2424             let verbatim = lib.verbatim.unwrap_or(false);
2425             match lib.kind {
2426                 NativeLibKind::Dylib { as_needed } => {
2427                     cmd.link_dylib(name, verbatim, as_needed.unwrap_or(true))
2428                 }
2429                 NativeLibKind::Unspecified => cmd.link_dylib(name, verbatim, true),
2430                 NativeLibKind::Framework { as_needed } => {
2431                     cmd.link_framework(name, as_needed.unwrap_or(true))
2432                 }
2433                 // ignore static native libraries here as we've
2434                 // already included them in add_local_native_libraries and
2435                 // add_upstream_rust_crates
2436                 NativeLibKind::Static { .. } => {}
2437                 NativeLibKind::RawDylib => {}
2438             }
2439         }
2440     }
2441 }
2442
2443 fn relevant_lib(sess: &Session, lib: &NativeLib) -> bool {
2444     match lib.cfg {
2445         Some(ref cfg) => rustc_attr::cfg_matches(cfg, &sess.parse_sess, None),
2446         None => true,
2447     }
2448 }
2449
2450 fn are_upstream_rust_objects_already_included(sess: &Session) -> bool {
2451     match sess.lto() {
2452         config::Lto::Fat => true,
2453         config::Lto::Thin => {
2454             // If we defer LTO to the linker, we haven't run LTO ourselves, so
2455             // any upstream object files have not been copied yet.
2456             !sess.opts.cg.linker_plugin_lto.enabled()
2457         }
2458         config::Lto::No | config::Lto::ThinLocal => false,
2459     }
2460 }
2461
2462 fn add_apple_sdk(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) {
2463     let arch = &sess.target.arch;
2464     let os = &sess.target.os;
2465     let llvm_target = &sess.target.llvm_target;
2466     if sess.target.vendor != "apple"
2467         || !matches!(os.as_str(), "ios" | "tvos")
2468         || flavor != LinkerFlavor::Gcc
2469     {
2470         return;
2471     }
2472     let sdk_name = match (arch.as_str(), os.as_str()) {
2473         ("aarch64", "tvos") => "appletvos",
2474         ("x86_64", "tvos") => "appletvsimulator",
2475         ("arm", "ios") => "iphoneos",
2476         ("aarch64", "ios") if llvm_target.contains("macabi") => "macosx",
2477         ("aarch64", "ios") if llvm_target.contains("sim") => "iphonesimulator",
2478         ("aarch64", "ios") => "iphoneos",
2479         ("x86", "ios") => "iphonesimulator",
2480         ("x86_64", "ios") if llvm_target.contains("macabi") => "macosx",
2481         ("x86_64", "ios") => "iphonesimulator",
2482         _ => {
2483             sess.err(&format!("unsupported arch `{}` for os `{}`", arch, os));
2484             return;
2485         }
2486     };
2487     let sdk_root = match get_apple_sdk_root(sdk_name) {
2488         Ok(s) => s,
2489         Err(e) => {
2490             sess.err(&e);
2491             return;
2492         }
2493     };
2494     if llvm_target.contains("macabi") {
2495         cmd.args(&["-target", llvm_target])
2496     } else {
2497         let arch_name = llvm_target.split('-').next().expect("LLVM target must have a hyphen");
2498         cmd.args(&["-arch", arch_name])
2499     }
2500     cmd.args(&["-isysroot", &sdk_root, "-Wl,-syslibroot", &sdk_root]);
2501 }
2502
2503 fn get_apple_sdk_root(sdk_name: &str) -> Result<String, String> {
2504     // Following what clang does
2505     // (https://github.com/llvm/llvm-project/blob/
2506     // 296a80102a9b72c3eda80558fb78a3ed8849b341/clang/lib/Driver/ToolChains/Darwin.cpp#L1661-L1678)
2507     // to allow the SDK path to be set. (For clang, xcrun sets
2508     // SDKROOT; for rustc, the user or build system can set it, or we
2509     // can fall back to checking for xcrun on PATH.)
2510     if let Ok(sdkroot) = env::var("SDKROOT") {
2511         let p = Path::new(&sdkroot);
2512         match sdk_name {
2513             // Ignore `SDKROOT` if it's clearly set for the wrong platform.
2514             "appletvos"
2515                 if sdkroot.contains("TVSimulator.platform")
2516                     || sdkroot.contains("MacOSX.platform") => {}
2517             "appletvsimulator"
2518                 if sdkroot.contains("TVOS.platform") || sdkroot.contains("MacOSX.platform") => {}
2519             "iphoneos"
2520                 if sdkroot.contains("iPhoneSimulator.platform")
2521                     || sdkroot.contains("MacOSX.platform") => {}
2522             "iphonesimulator"
2523                 if sdkroot.contains("iPhoneOS.platform") || sdkroot.contains("MacOSX.platform") => {
2524             }
2525             "macosx10.15"
2526                 if sdkroot.contains("iPhoneOS.platform")
2527                     || sdkroot.contains("iPhoneSimulator.platform") => {}
2528             // Ignore `SDKROOT` if it's not a valid path.
2529             _ if !p.is_absolute() || p == Path::new("/") || !p.exists() => {}
2530             _ => return Ok(sdkroot),
2531         }
2532     }
2533     let res =
2534         Command::new("xcrun").arg("--show-sdk-path").arg("-sdk").arg(sdk_name).output().and_then(
2535             |output| {
2536                 if output.status.success() {
2537                     Ok(String::from_utf8(output.stdout).unwrap())
2538                 } else {
2539                     let error = String::from_utf8(output.stderr);
2540                     let error = format!("process exit with error: {}", error.unwrap());
2541                     Err(io::Error::new(io::ErrorKind::Other, &error[..]))
2542                 }
2543             },
2544         );
2545
2546     match res {
2547         Ok(output) => Ok(output.trim().to_string()),
2548         Err(e) => Err(format!("failed to get {} SDK path: {}", sdk_name, e)),
2549     }
2550 }
2551
2552 fn add_gcc_ld_path(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) {
2553     if let Some(ld_impl) = sess.opts.debugging_opts.gcc_ld {
2554         if let LinkerFlavor::Gcc = flavor {
2555             match ld_impl {
2556                 LdImpl::Lld => {
2557                     if sess.target.lld_flavor == LldFlavor::Ld64 {
2558                         let tools_path =
2559                             sess.host_filesearch(PathKind::All).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 =
2575                             sess.host_filesearch(PathKind::All).get_tools_search_paths(false);
2576                         let lld_path = tools_path
2577                             .into_iter()
2578                             .map(|p| p.join("gcc-ld"))
2579                             .find(|p| {
2580                                 p.join(if sess.host.is_like_windows { "ld.exe" } else { "ld" })
2581                                     .exists()
2582                             })
2583                             .unwrap_or_else(|| sess.fatal("rust-lld (as ld) not found"));
2584                         cmd.cmd().arg({
2585                             let mut arg = OsString::from("-B");
2586                             arg.push(lld_path);
2587                             arg
2588                         });
2589                     }
2590                 }
2591             }
2592         } else {
2593             sess.fatal("option `-Z gcc-ld` is used even though linker flavor is not gcc");
2594         }
2595     }
2596 }