Skip to main content

rustc_codegen_ssa/back/
link.rs

1mod raw_dylib;
2
3use std::collections::BTreeSet;
4use std::ffi::OsString;
5use std::fs::{File, OpenOptions, read};
6use std::io::{BufReader, BufWriter, Write};
7use std::ops::{ControlFlow, Deref};
8use std::path::{Path, PathBuf};
9use std::process::{Output, Stdio};
10use std::{env, fmt, fs, io, mem, str};
11
12use find_msvc_tools;
13use itertools::Itertools;
14use object::{Object, ObjectSection, ObjectSymbol};
15use regex::Regex;
16use rustc_arena::TypedArena;
17use rustc_attr_parsing::eval_config_entry;
18use rustc_data_structures::fx::{FxHashSet, FxIndexSet};
19use rustc_data_structures::jobserver;
20use rustc_data_structures::memmap::Mmap;
21use rustc_data_structures::temp_dir::MaybeTempDir;
22use rustc_errors::DiagCtxtHandle;
23use rustc_fs_util::{TempDirBuilder, fix_windows_verbatim_for_gcc, try_canonicalize};
24use rustc_hir::def_id::{CrateNum, LOCAL_CRATE};
25use rustc_lint_defs::builtin::{LINKER_INFO, LINKER_MESSAGES};
26use rustc_macros::Diagnostic;
27use rustc_metadata::EncodedMetadata;
28use rustc_metadata::fs::{METADATA_FILENAME, copy_to_stdout, emit_wrapper_file};
29use rustc_middle::diagnostics::DuplicateEiiImpls;
30use rustc_middle::lint::emit_lint_base;
31use rustc_middle::middle::debugger_visualizer::DebuggerVisualizerFile;
32use rustc_middle::middle::dependency_format::Linkage;
33use rustc_middle::middle::exported_symbols::SymbolExportKind;
34use rustc_session::config::{
35    self, CFGuard, DebugInfo, InstrumentMcount, LinkerFeaturesCli, LinkerJobs, OutFileName,
36    OutputFilenames, OutputType, PrintKind, SplitDwarfKind, Strip,
37};
38use rustc_session::output::{check_file_is_writeable, invalid_output_for_target, out_filename};
39use rustc_session::search_paths::PathKind;
40/// For all the linkers we support, and information they might
41/// need out of the shared crate context before we get rid of it.
42use rustc_session::{Session, filesearch};
43use rustc_span::{Symbol, bug};
44use rustc_structures::{CrateType, NativeLibKind};
45use rustc_target::spec::crt_objects::CrtObjects;
46use rustc_target::spec::{
47    Arch, BinaryFormat, Cc, CfgAbi, Env, LinkOutputKind, LinkSelfContainedComponents,
48    LinkSelfContainedDefault, LinkerFeatures, LinkerFlavor, LinkerFlavorCli, Lld, Os, RelocModel,
49    RelroLevel, SanitizerSet, SplitDebuginfo,
50};
51use tracing::{debug, info, warn};
52
53use super::archive::{
54    AddArchiveKind, ArchiveBuilder, ArchiveBuilderBuilder, ArchiveEntryKind, ArchiveSymbols,
55};
56use super::command::Command;
57use super::linker::{self, Linker};
58use super::metadata::{MetadataPosition, create_wrapper_file};
59use super::rmeta_link::RmetaLinkCache;
60use super::rpath::{self, RPathConfig};
61use super::{apple, rmeta_link, versioned_llvm_target};
62use crate::base::needs_allocator_shim_for_linking;
63use crate::{
64    CodegenLintLevelSpecs, CompiledModule, CompiledModules, CrateInfo, NativeLib, SymbolExport,
65    diagnostics,
66};
67
68pub fn ensure_removed(dcx: DiagCtxtHandle<'_>, path: &Path) {
69    if let Err(e) = fs::remove_file(path) {
70        if e.kind() != io::ErrorKind::NotFound {
71            dcx.err(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("failed to remove {0}: {1}",
                path.display(), e))
    })format!("failed to remove {}: {}", path.display(), e));
72        }
73    }
74}
75
76fn eii_impl_crate_name(crate_info: &CrateInfo, cnum: CrateNum) -> Symbol {
77    if cnum == LOCAL_CRATE { crate_info.local_crate_name } else { crate_info.crate_name[&cnum] }
78}
79
80fn check_externally_implementable_item_linkage(sess: &Session, crate_info: &CrateInfo) {
81    if crate_info.eii_linkage.is_empty() {
82        return;
83    }
84
85    // A crate can request multiple linked outputs with overlapping dependency
86    // formats, so report each underlying conflict once.
87    let mut emitted = FxHashSet::default();
88
89    // This needs the dependency formats selected for the final artifact. The
90    // earlier EII pass still handles missing impls and duplicate explicit impls.
91    for dependency_formats in crate_info.dependency_formats.values() {
92        for (eii_index, eii) in crate_info.eii_linkage.iter().enumerate() {
93            let Some(explicit_impl) = eii.impls.first() else {
94                continue;
95            };
96            // If the explicit impl is already coming from a dylib, that dylib
97            // has already resolved the default-vs-explicit choice.
98            if #[allow(non_exhaustive_omitted_patterns)] match dependency_formats.get(explicit_impl.impl_crate)
    {
    Some(Linkage::Dynamic | Linkage::IncludedFromDylib) => true,
    _ => false,
}matches!(
99                dependency_formats.get(explicit_impl.impl_crate),
100                Some(Linkage::Dynamic | Linkage::IncludedFromDylib)
101            ) {
102                continue;
103            }
104
105            let Some(default_impl) = &eii.default_impl else {
106                continue;
107            };
108            if !#[allow(non_exhaustive_omitted_patterns)] match dependency_formats.get(default_impl.impl_crate)
    {
    Some(Linkage::Dynamic | Linkage::IncludedFromDylib) => true,
    _ => false,
}matches!(
109                dependency_formats.get(default_impl.impl_crate),
110                Some(Linkage::Dynamic | Linkage::IncludedFromDylib)
111            ) {
112                continue;
113            }
114
115            if !emitted.insert(eii_index) {
116                continue;
117            }
118
119            sess.dcx().emit_err(DuplicateEiiImpls {
120                name: eii.name,
121                first_span: explicit_impl.span,
122                first_crate: eii_impl_crate_name(crate_info, explicit_impl.impl_crate),
123                second_span: default_impl.span,
124                second_crate: eii_impl_crate_name(crate_info, default_impl.impl_crate),
125                help: (),
126                additional_crates: None,
127                num_additional_crates: 0,
128                additional_crate_names: String::new(),
129            });
130        }
131    }
132}
133
134/// The fallback directories are passed to linker, but not used when rustc does the search,
135/// because in the latter case the set of fallback directories cannot always be determined
136/// consistently at the moment.
137struct NativeLibSearchFallback<'a> {
138    self_contained_components: LinkSelfContainedComponents,
139    apple_sdk_root: Option<&'a Path>,
140}
141
142fn walk_native_lib_search_dirs<R>(
143    sess: &Session,
144    fallback: Option<NativeLibSearchFallback<'_>>,
145    mut f: impl FnMut(&Path, bool /*is_framework*/) -> ControlFlow<R>,
146) -> ControlFlow<R> {
147    // Library search paths explicitly supplied by user (`-L` on the command line).
148    for search_path in sess.target_filesearch().cli_search_paths(PathKind::Native) {
149        f(&search_path.dir, false)?;
150    }
151    for search_path in sess.target_filesearch().cli_search_paths(PathKind::Framework) {
152        // Frameworks are looked up strictly in framework-specific paths.
153        if search_path.kind != PathKind::All {
154            f(&search_path.dir, true)?;
155        }
156    }
157
158    let Some(NativeLibSearchFallback { self_contained_components, apple_sdk_root }) = fallback
159    else {
160        return ControlFlow::Continue(());
161    };
162
163    // The toolchain ships some native library components and self-contained linking was enabled.
164    // Add the self-contained library directory to search paths.
165    if self_contained_components.intersects(
166        LinkSelfContainedComponents::LIBC
167            | LinkSelfContainedComponents::UNWIND
168            | LinkSelfContainedComponents::MINGW,
169    ) {
170        f(&sess.target_tlib_path.dir.join("self-contained"), false)?;
171    }
172
173    let has_shared_llvm_apple_darwin =
174        sess.target.is_like_darwin && sess.target_tlib_path.dir.join("libLLVM.dylib").exists();
175
176    // Toolchains for some targets may ship `libunwind.a`, but place it into the main sysroot
177    // library directory instead of the self-contained directories.
178    // Sanitizer libraries have the same issue and are also linked by name on Apple targets.
179    // The targets here should be in sync with `copy_third_party_objects` in bootstrap.
180    // On Apple targets, shared LLVM is linked by name, so when `libLLVM.dylib` is
181    // present in the target libdir, add that directory to the linker search path.
182    // FIXME: implement `-Clink-self-contained=+/-unwind,+/-sanitizers`, move the shipped libunwind
183    // and sanitizers to self-contained directory, and stop adding this search path.
184    // FIXME: On AIX this also has the side-effect of making the list of library search paths
185    // non-empty, which is needed or the linker may decide to record the LIBPATH env, if
186    // defined, as the search path instead of appending the default search paths.
187    if sess.target.cfg_abi == CfgAbi::Fortanix
188        || sess.target.os == Os::Linux
189        || sess.target.os == Os::Fuchsia
190        || sess.target.is_like_aix
191        || sess.target.is_like_darwin
192            && (!sess.sanitizers().is_empty() || has_shared_llvm_apple_darwin)
193        || sess.target.os == Os::Windows
194            && sess.target.env == Env::Gnu
195            && sess.target.cfg_abi == CfgAbi::Llvm
196    {
197        f(&sess.target_tlib_path.dir, false)?;
198    }
199
200    // Mac Catalyst uses the macOS SDK, but to link to iOS-specific frameworks
201    // we must have the support library stubs in the library search path (#121430).
202    if let Some(sdk_root) = apple_sdk_root
203        && sess.target.env == Env::MacAbi
204    {
205        f(&sdk_root.join("System/iOSSupport/usr/lib"), false)?;
206        f(&sdk_root.join("System/iOSSupport/System/Library/Frameworks"), true)?;
207    }
208
209    ControlFlow::Continue(())
210}
211
212pub(super) fn try_find_native_static_library(
213    sess: &Session,
214    name: &str,
215    verbatim: bool,
216) -> Option<PathBuf> {
217    let default = sess.staticlib_components(verbatim);
218    let formats = if verbatim {
219        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [default]))vec![default]
220    } else {
221        // On Windows, static libraries sometimes show up as libfoo.a and other
222        // times show up as foo.lib
223        let unix = ("lib", ".a");
224        if default == unix { ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [default]))vec![default] } else { ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [default, unix]))vec![default, unix] }
225    };
226
227    walk_native_lib_search_dirs(sess, None, |dir, is_framework| {
228        if !is_framework {
229            for (prefix, suffix) in &formats {
230                let test = dir.join(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}{1}{2}", prefix, name, suffix))
    })format!("{prefix}{name}{suffix}"));
231                if test.exists() {
232                    return ControlFlow::Break(test);
233                }
234            }
235        }
236        ControlFlow::Continue(())
237    })
238    .break_value()
239}
240
241pub(super) fn try_find_native_dynamic_library(
242    sess: &Session,
243    name: &str,
244    verbatim: bool,
245) -> Option<PathBuf> {
246    let default = sess.staticlib_components(verbatim);
247    let formats = if verbatim {
248        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [default]))vec![default]
249    } else {
250        // While the official naming convention for MSVC import libraries
251        // is foo.lib, Meson follows the libfoo.dll.a convention to
252        // disambiguate .a for static libraries
253        let meson = ("lib", ".dll.a");
254        // and MinGW uses .a altogether
255        let mingw = ("lib", ".a");
256        ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [default, meson, mingw]))vec![default, meson, mingw]
257    };
258
259    walk_native_lib_search_dirs(sess, None, |dir, is_framework| {
260        if !is_framework {
261            for (prefix, suffix) in &formats {
262                let test = dir.join(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}{1}{2}", prefix, name, suffix))
    })format!("{prefix}{name}{suffix}"));
263                if test.exists() {
264                    return ControlFlow::Break(test);
265                }
266            }
267        }
268        ControlFlow::Continue(())
269    })
270    .break_value()
271}
272
273pub(super) fn find_native_static_library(name: &str, verbatim: bool, sess: &Session) -> PathBuf {
274    try_find_native_static_library(sess, name, verbatim).unwrap_or_else(|| {
275        sess.dcx().emit_fatal(diagnostics::MissingNativeLibrary::new(name, verbatim))
276    })
277}
278
279/// If `lib` is a static library that is bundled into the rlib as a packed archive, returns the
280/// file name of that archive. Returns `None` for libraries that are instead unpacked into loose
281/// object files, or not bundled at all.
282fn find_bundled_library(
283    lib: &NativeLib,
284    sess: &Session,
285    crate_types: &[CrateType],
286) -> Option<Symbol> {
287    if let NativeLibKind::Static { bundle: Some(true) | None, whole_archive, .. } = lib.kind
288        && crate_types.iter().any(|t| #[allow(non_exhaustive_omitted_patterns)] match t {
    &CrateType::Rlib | CrateType::StaticLib => true,
    _ => false,
}matches!(t, &CrateType::Rlib | CrateType::StaticLib))
289        && (sess.opts.unstable_opts.packed_bundled_libs
290            || lib.cfg.is_some()
291            || whole_archive == Some(true))
292    {
293        return find_native_static_library(lib.name.as_str(), lib.verbatim, sess)
294            .file_name()
295            .and_then(|s| s.to_str())
296            .map(Symbol::intern);
297    }
298    None
299}
300
301/// Performs the linkage portion of the compilation phase. This will generate all
302/// of the requested outputs for this compilation session.
303pub fn link_binary(
304    sess: &Session,
305    archive_builder_builder: &dyn ArchiveBuilderBuilder,
306    compiled_modules: CompiledModules,
307    crate_info: CrateInfo,
308    metadata: EncodedMetadata,
309    outputs: &OutputFilenames,
310    codegen_backend: &'static str,
311) {
312    let _timer = sess.timer("link_binary");
313    let output_metadata = sess.opts.output_types.contains_key(&OutputType::Metadata);
314    let mut tempfiles_for_stdout_output: Vec<PathBuf> = Vec::new();
315    let mut rmeta_link_cache = RmetaLinkCache::default();
316
317    if outputs.outputs.should_link() {
318        sess.time("check_externally_implementable_item_linkage", || {
319            check_externally_implementable_item_linkage(sess, &crate_info);
320        });
321        sess.dcx().abort_if_errors();
322    }
323
324    for &crate_type in &crate_info.crate_types {
325        // Ignore executable crates if we have -Z no-codegen, as they will error.
326        if (sess.opts.unstable_opts.no_codegen || !sess.opts.output_types.should_codegen())
327            && !output_metadata
328            && crate_type == CrateType::Executable
329        {
330            continue;
331        }
332
333        if invalid_output_for_target(sess, crate_type) {
334            ::rustc_span::macros::bug_impl(None,
    format_args!("invalid output type `{0:?}` for target `{1}`", crate_type,
        sess.opts.target_triple), Location::caller());bug!("invalid output type `{:?}` for target `{}`", crate_type, sess.opts.target_triple);
335        }
336
337        sess.time("link_binary_check_files_are_writeable", || {
338            for m in &compiled_modules.modules {
339                if let Some(obj) = &m.object {
340                    check_file_is_writeable(obj, sess);
341                }
342                if let Some(obj) = &m.global_asm_object {
343                    check_file_is_writeable(obj, sess);
344                }
345            }
346        });
347
348        if outputs.outputs.should_link() {
349            let output = out_filename(sess, crate_type, outputs, crate_info.local_crate_name);
350            let tmpdir = TempDirBuilder::new()
351                .prefix("rustc")
352                .tempdir_in(output.parent().unwrap_or_else(|| Path::new(".")))
353                .unwrap_or_else(|error| {
354                    sess.dcx().emit_fatal(diagnostics::CreateTempDir { error })
355                });
356            let path = MaybeTempDir::new(tmpdir, sess.opts.cg.save_temps);
357
358            let crate_name = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}", crate_info.local_crate_name))
    })format!("{}", crate_info.local_crate_name);
359            let out_filename = output.file_for_writing(outputs, OutputType::Exe, &crate_name);
360            match crate_type {
361                CrateType::Rlib => {
362                    let _timer = sess.timer("link_rlib");
363                    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:363",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(363u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("preparing rlib to {0:?}",
                                                    out_filename) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("preparing rlib to {:?}", out_filename);
364                    link_rlib(
365                        sess,
366                        archive_builder_builder,
367                        &compiled_modules,
368                        &crate_info,
369                        &metadata,
370                        RlibFlavor::Normal,
371                        &path,
372                    )
373                    .build(&out_filename, None);
374                }
375                CrateType::StaticLib => {
376                    link_staticlib(
377                        sess,
378                        archive_builder_builder,
379                        &mut rmeta_link_cache,
380                        &compiled_modules,
381                        &crate_info,
382                        &metadata,
383                        &out_filename,
384                        &path,
385                    );
386                }
387                _ => {
388                    link_natively(
389                        sess,
390                        archive_builder_builder,
391                        &mut rmeta_link_cache,
392                        crate_type,
393                        &out_filename,
394                        &compiled_modules,
395                        &crate_info,
396                        &metadata,
397                        path.as_ref(),
398                        codegen_backend,
399                    );
400                }
401            }
402            if sess.opts.json_artifact_notifications {
403                sess.dcx().emit_artifact_notification(&out_filename, "link");
404            }
405
406            if sess.prof.enabled()
407                && let Some(artifact_name) = out_filename.file_name()
408            {
409                // Record size for self-profiling
410                let file_size = std::fs::metadata(&out_filename).map(|m| m.len()).unwrap_or(0);
411
412                sess.prof.artifact_size(
413                    "linked_artifact",
414                    artifact_name.to_string_lossy(),
415                    file_size,
416                );
417            }
418
419            if sess.target.binary_format == BinaryFormat::Elf {
420                if let Err(err) = warn_if_linked_with_gold(sess, &out_filename) {
421                    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:421",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(421u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message",
                                        {
                                            const NAME:
                                                ::tracing::__macro_support::FieldName<{
                                                    ::tracing::__macro_support::FieldName::len("err")
                                                }> =
                                                ::tracing::__macro_support::FieldName::new("err");
                                            NAME.as_str()
                                        }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("Error while checking if gold was the linker")
                                            as &dyn ::tracing::field::Value)),
                                (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&err)
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!(?err, "Error while checking if gold was the linker");
422                }
423            }
424
425            if output.is_stdout() {
426                if output.is_tty() {
427                    sess.dcx().emit_err(diagnostics::BinaryOutputToTty {
428                        shorthand: OutputType::Exe.shorthand(),
429                    });
430                } else if let Err(e) = copy_to_stdout(&out_filename) {
431                    sess.dcx().emit_err(diagnostics::CopyPath::new(
432                        &out_filename,
433                        output.as_path(),
434                        e,
435                    ));
436                }
437                tempfiles_for_stdout_output.push(out_filename);
438            }
439        }
440    }
441
442    // Remove the temporary object file and metadata if we aren't saving temps.
443    sess.time("link_binary_remove_temps", || {
444        // If the user requests that temporaries are saved, don't delete any.
445        if sess.opts.cg.save_temps {
446            return;
447        }
448
449        let maybe_remove_temps_from_module =
450            |preserve_objects: bool, preserve_dwarf_objects: bool, module: &CompiledModule| {
451                if !preserve_objects && let Some(ref obj) = module.object {
452                    ensure_removed(sess.dcx(), obj);
453                }
454
455                if !preserve_objects && let Some(ref obj) = module.global_asm_object {
456                    ensure_removed(sess.dcx(), obj);
457                }
458
459                if !preserve_dwarf_objects && let Some(ref dwo_obj) = module.dwarf_object {
460                    ensure_removed(sess.dcx(), dwo_obj);
461                }
462            };
463
464        let remove_temps_from_module =
465            |module: &CompiledModule| maybe_remove_temps_from_module(false, false, module);
466
467        // Otherwise, always remove the allocator module temporaries.
468        if let Some(ref allocator_module) = compiled_modules.allocator_module {
469            remove_temps_from_module(allocator_module);
470        }
471
472        // Remove the temporary files if output goes to stdout
473        for temp in tempfiles_for_stdout_output {
474            ensure_removed(sess.dcx(), &temp);
475        }
476
477        // If no requested outputs require linking, then the object temporaries should
478        // be kept.
479        if !sess.opts.output_types.should_link() {
480            return;
481        }
482
483        // Potentially keep objects for their debuginfo.
484        let (preserve_objects, preserve_dwarf_objects) = preserve_objects_for_their_debuginfo(sess);
485        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:485",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(485u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&[{
                                            const NAME:
                                                ::tracing::__macro_support::FieldName<{
                                                    ::tracing::__macro_support::FieldName::len("preserve_objects")
                                                }> =
                                                ::tracing::__macro_support::FieldName::new("preserve_objects");
                                            NAME.as_str()
                                        },
                                        {
                                            const NAME:
                                                ::tracing::__macro_support::FieldName<{
                                                    ::tracing::__macro_support::FieldName::len("preserve_dwarf_objects")
                                                }> =
                                                ::tracing::__macro_support::FieldName::new("preserve_dwarf_objects");
                                            NAME.as_str()
                                        }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&preserve_objects)
                                            as &dyn ::tracing::field::Value)),
                                (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&preserve_dwarf_objects)
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(?preserve_objects, ?preserve_dwarf_objects);
486
487        for module in &compiled_modules.modules {
488            maybe_remove_temps_from_module(preserve_objects, preserve_dwarf_objects, module);
489        }
490    });
491}
492
493// Crate type is not passed when calculating the dylibs to include for LTO. In that case all
494// crate types must use the same dependency formats.
495pub fn each_linked_rlib(
496    info: &CrateInfo,
497    crate_type: Option<CrateType>,
498    f: &mut dyn FnMut(CrateNum, &Path),
499) -> Result<(), diagnostics::LinkRlibError> {
500    let fmts = if let Some(crate_type) = crate_type {
501        let Some(fmts) = info.dependency_formats.get(&crate_type) else {
502            return Err(diagnostics::LinkRlibError::MissingFormat);
503        };
504
505        fmts
506    } else {
507        let mut dep_formats = info.dependency_formats.iter();
508        let (ty1, list1) = dep_formats.next().ok_or(diagnostics::LinkRlibError::MissingFormat)?;
509        if let Some((ty2, list2)) = dep_formats.find(|(_, list2)| list1 != *list2) {
510            return Err(diagnostics::LinkRlibError::IncompatibleDependencyFormats {
511                ty1: ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0:?}", ty1))
    })format!("{ty1:?}"),
512                ty2: ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0:?}", ty2))
    })format!("{ty2:?}"),
513                list1: ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0:?}", list1))
    })format!("{list1:?}"),
514                list2: ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0:?}", list2))
    })format!("{list2:?}"),
515            });
516        }
517        list1
518    };
519
520    let used_dep_crates = info.used_crates.iter();
521    for &cnum in used_dep_crates {
522        match fmts.get(cnum) {
523            Some(&Linkage::NotLinked | &Linkage::Dynamic | &Linkage::IncludedFromDylib) => continue,
524            Some(_) => {}
525            None => return Err(diagnostics::LinkRlibError::MissingFormat),
526        }
527        let crate_name = info.crate_name[&cnum];
528        let used_crate_source = &info.used_crate_source[&cnum];
529        if let Some(path) = &used_crate_source.rlib {
530            f(cnum, path);
531        } else if used_crate_source.rmeta.is_some() {
532            return Err(diagnostics::LinkRlibError::OnlyRmetaFound { crate_name });
533        } else {
534            return Err(diagnostics::LinkRlibError::NotFound { crate_name });
535        }
536    }
537    Ok(())
538}
539
540/// Create an 'rlib'.
541///
542/// An rlib in its current incarnation is essentially a renamed .a file (with "dummy" object files).
543/// The rlib primarily contains the object file of the crate, but it also some of the object files
544/// from native libraries.
545fn link_rlib<'a>(
546    sess: &'a Session,
547    archive_builder_builder: &dyn ArchiveBuilderBuilder,
548    compiled_modules: &CompiledModules,
549    crate_info: &CrateInfo,
550    metadata: &EncodedMetadata,
551    flavor: RlibFlavor,
552    tmpdir: &MaybeTempDir,
553) -> Box<dyn ArchiveBuilder + 'a> {
554    let mut ab = archive_builder_builder.new_archive_builder(sess);
555
556    // Pre-compute the list of Rust object filenames and materialize the rmeta-link
557    // wrapper file before any `add_file` calls. This lets the rmeta-link member be
558    // placed immediately after metadata in the archive, so consumers can find
559    // it without iterating every archive member.
560    let rust_object_files: Vec<String> = compiled_modules
561        .modules
562        .iter()
563        .filter_map(|m| m.object.as_ref())
564        .chain(compiled_modules.modules.iter().filter_map(|m| m.global_asm_object.as_ref()))
565        .map(|obj| obj.file_name().unwrap().to_str().unwrap().to_string())
566        .collect();
567
568    let native_lib_filenames: Vec<Option<Symbol>> = crate_info
569        .used_libraries
570        .iter()
571        .map(|lib| find_bundled_library(lib, sess, &crate_info.crate_types))
572        .collect();
573
574    let metadata_link_file = if #[allow(non_exhaustive_omitted_patterns)] match flavor {
    RlibFlavor::Normal => true,
    _ => false,
}matches!(flavor, RlibFlavor::Normal) {
575        let native_lib_filenames: Vec<Option<String>> =
576            native_lib_filenames.iter().map(|f| f.map(|s| s.to_string())).collect();
577        let metadata_link = rmeta_link::RmetaLink { rust_object_files, native_lib_filenames };
578        let metadata_link_data = metadata_link.encode();
579        let (wrapper, _) =
580            create_wrapper_file(sess, rmeta_link::SECTION.to_string(), &metadata_link_data);
581        Some(emit_wrapper_file(sess, &wrapper, tmpdir.as_ref(), rmeta_link::FILENAME))
582    } else {
583        None
584    };
585
586    let trailing_metadata = match flavor {
587        RlibFlavor::Normal => {
588            let (metadata, metadata_position) =
589                create_wrapper_file(sess, ".rmeta".to_string(), metadata.stub_or_full());
590            let metadata = emit_wrapper_file(sess, &metadata, tmpdir.as_ref(), METADATA_FILENAME);
591            match metadata_position {
592                MetadataPosition::First => {
593                    // Most of the time metadata in rlib files is wrapped in a "dummy" object
594                    // file for the target platform so the rlib can be processed entirely by
595                    // normal linkers for the platform. Sometimes this is not possible however.
596                    // If it is possible however, placing the metadata object first improves
597                    // performance of getting metadata from rlibs.
598                    ab.add_file(&metadata, ArchiveEntryKind::Other);
599                    // Place the rmeta-link member immediately after metadata so consumers
600                    // can find it without iterating the whole archive.
601                    if let Some(file) = &metadata_link_file {
602                        ab.add_file(file, ArchiveEntryKind::Other);
603                    }
604                    None
605                }
606                MetadataPosition::Last => Some(metadata),
607            }
608        }
609
610        RlibFlavor::StaticlibBase => None,
611    };
612
613    for m in &compiled_modules.modules {
614        if let Some(obj) = m.object.as_ref() {
615            ab.add_file(obj, ArchiveEntryKind::RustObj);
616        }
617
618        if let Some(obj) = m.global_asm_object.as_ref() {
619            ab.add_file(obj, ArchiveEntryKind::RustObj);
620        }
621
622        if let Some(dwarf_obj) = m.dwarf_object.as_ref() {
623            ab.add_file(dwarf_obj, ArchiveEntryKind::Other);
624        }
625    }
626
627    match flavor {
628        RlibFlavor::Normal => {}
629        RlibFlavor::StaticlibBase => {
630            if let Some(m) = &compiled_modules.allocator_module {
631                if let Some(obj) = &m.object {
632                    ab.add_file(obj, ArchiveEntryKind::RustObj);
633                }
634                if let Some(obj) = &m.global_asm_object {
635                    ab.add_file(obj, ArchiveEntryKind::RustObj);
636                }
637            }
638        }
639    }
640
641    // Used if packed_bundled_libs flag enabled.
642    let mut packed_bundled_libs = Vec::new();
643
644    // Note that in this loop we are ignoring the value of `lib.cfg`. That is,
645    // we may not be configured to actually include a static library if we're
646    // adding it here. That's because later when we consume this rlib we'll
647    // decide whether we actually needed the static library or not.
648    //
649    // To do this "correctly" we'd need to keep track of which libraries added
650    // which object files to the archive. We don't do that here, however. The
651    // #[link(cfg(..))] feature is unstable, though, and only intended to get
652    // liblibc working. In that sense the check below just indicates that if
653    // there are any libraries we want to omit object files for at link time we
654    // just exclude all custom object files.
655    //
656    // Eventually if we want to stabilize or flesh out the #[link(cfg(..))]
657    // feature then we'll need to figure out how to record what objects were
658    // loaded from the libraries found here and then encode that into the
659    // metadata of the rlib we're generating somehow.
660    for (i, lib) in crate_info.used_libraries.iter().enumerate() {
661        let NativeLibKind::Static { bundle: None | Some(true), .. } = lib.kind else {
662            continue;
663        };
664        if flavor == RlibFlavor::Normal
665            && let Some(filename) = native_lib_filenames[i]
666        {
667            let path = find_native_static_library(filename.as_str(), true, sess);
668            let src = read(path).unwrap_or_else(|e| {
669                sess.dcx().emit_fatal(diagnostics::ReadFileError { message: e })
670            });
671            let (data, _) = create_wrapper_file(sess, ".bundled_lib".to_string(), &src);
672            let wrapper_file = emit_wrapper_file(sess, &data, tmpdir.as_ref(), filename.as_str());
673            packed_bundled_libs.push(wrapper_file);
674        } else {
675            let path = find_native_static_library(lib.name.as_str(), lib.verbatim, sess);
676            ab.add_archive(&path, AddArchiveKind::Other).unwrap_or_else(|error| {
677                sess.dcx().emit_fatal(diagnostics::AddNativeLibrary { library_path: path, error })
678            });
679        }
680    }
681
682    // On Windows, we add the raw-dylib import libraries to the rlibs already.
683    // But on ELF, this is not possible, as a shared object cannot be a member of a static library.
684    // Instead, we add all raw-dylibs to the final link on ELF.
685    if sess.target.is_like_windows {
686        for output_path in raw_dylib::create_raw_dylib_dll_import_libs(
687            sess,
688            archive_builder_builder,
689            crate_info.used_libraries.iter(),
690            tmpdir.as_ref(),
691            true,
692        ) {
693            ab.add_archive(&output_path, AddArchiveKind::Other).unwrap_or_else(|error| {
694                sess.dcx()
695                    .emit_fatal(diagnostics::AddNativeLibrary { library_path: output_path, error });
696            });
697        }
698    }
699
700    if let Some(trailing_metadata) = trailing_metadata {
701        // Note that it is important that we add all of our non-object "magical
702        // files" *after* all of the object files in the archive. The reason for
703        // this is as follows:
704        //
705        // * When performing LTO, this archive will be modified to remove
706        //   objects from above. The reason for this is described below.
707        //
708        // * When the system linker looks at an archive, it will attempt to
709        //   determine the architecture of the archive in order to see whether its
710        //   linkable.
711        //
712        //   The algorithm for this detection is: iterate over the files in the
713        //   archive. Skip magical SYMDEF names. Interpret the first file as an
714        //   object file. Read architecture from the object file.
715        //
716        // * As one can probably see, if "metadata" and "foo.bc" were placed
717        //   before all of the objects, then the architecture of this archive would
718        //   not be correctly inferred once 'foo.o' is removed.
719        //
720        // * Most of the time metadata in rlib files is wrapped in a "dummy" object
721        //   file for the target platform so the rlib can be processed entirely by
722        //   normal linkers for the platform. Sometimes this is not possible however.
723        //
724        // Basically, all this means is that this code should not move above the
725        // code above.
726        ab.add_file(&trailing_metadata, ArchiveEntryKind::Other);
727        // Place the rmeta-link member immediately after metadata so consumers can
728        // find it without iterating the whole archive.
729        if let Some(file) = &metadata_link_file {
730            ab.add_file(file, ArchiveEntryKind::Other);
731        }
732    }
733
734    // Add all bundled static native library dependencies.
735    // Archives added to the end of .rlib archive, see comment above for the reason.
736    for lib in packed_bundled_libs {
737        ab.add_file(&lib, ArchiveEntryKind::Other)
738    }
739
740    ab
741}
742
743/// Create a static archive.
744///
745/// This is essentially the same thing as an rlib, but it also involves adding all of the upstream
746/// crates' objects into the archive. This will slurp in all of the native libraries of upstream
747/// dependencies as well.
748///
749/// Additionally, there's no way for us to link dynamic libraries, so we warn about all dynamic
750/// library dependencies that they're not linked in.
751///
752/// There's no need to include metadata in a static archive, so ensure to not link in the metadata
753/// object file (and also don't prepare the archive with a metadata file).
754fn link_staticlib(
755    sess: &Session,
756    archive_builder_builder: &dyn ArchiveBuilderBuilder,
757    rmeta_link_cache: &mut RmetaLinkCache,
758    compiled_modules: &CompiledModules,
759    crate_info: &CrateInfo,
760    metadata: &EncodedMetadata,
761    out_filename: &Path,
762    tempdir: &MaybeTempDir,
763) {
764    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:764",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(764u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("preparing staticlib to {0:?}",
                                                    out_filename) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("preparing staticlib to {:?}", out_filename);
765    let mut ab = link_rlib(
766        sess,
767        archive_builder_builder,
768        compiled_modules,
769        crate_info,
770        metadata,
771        RlibFlavor::StaticlibBase,
772        tempdir,
773    );
774    let mut all_native_libs = ::alloc::vec::Vec::new()vec![];
775
776    let res = each_linked_rlib(crate_info, Some(CrateType::StaticLib), &mut |cnum, path| {
777        let lto = are_upstream_rust_objects_already_included(sess)
778            && !ignored_for_lto(sess, crate_info, cnum);
779
780        let native_libs = &crate_info.native_libraries[&cnum];
781        let bundled_filenames =
782            rmeta_link_cache.native_lib_filenames(&sess.target, path, native_libs);
783        let relevant_libs: FxIndexSet<_> = native_libs
784            .iter()
785            .enumerate()
786            .filter(|(_, lib)| relevant_lib(sess, lib))
787            .filter_map(|(i, _)| bundled_filenames.get(i).copied().flatten())
788            .collect();
789
790        let bundled_libs: FxIndexSet<_> = native_libs
791            .iter()
792            .enumerate()
793            .filter_map(|(i, _)| bundled_filenames.get(i).copied().flatten())
794            .collect();
795        ab.add_archive(
796            path,
797            AddArchiveKind::Rlib(rmeta_link_cache, &|fname: &str, entry_kind| {
798                // Ignore metadata and rmeta-link files.
799                if fname == METADATA_FILENAME || fname == rmeta_link::FILENAME {
800                    return true;
801                }
802
803                // Don't include Rust objects if LTO is enabled.
804                if lto && entry_kind == ArchiveEntryKind::RustObj {
805                    return true;
806                }
807
808                // Skip objects for bundled libs.
809                if bundled_libs.contains(&Symbol::intern(fname)) {
810                    return true;
811                }
812
813                false
814            }),
815        )
816        .unwrap();
817
818        archive_builder_builder
819            .extract_bundled_libs(path, tempdir.as_ref(), &relevant_libs)
820            .unwrap_or_else(|e| sess.dcx().emit_fatal(e));
821
822        for filename in relevant_libs.iter() {
823            let joined = tempdir.as_ref().join(filename.as_str());
824            let path = joined.as_path();
825            ab.add_archive(path, AddArchiveKind::Other).unwrap();
826        }
827
828        all_native_libs.extend(crate_info.native_libraries[&cnum].iter().cloned());
829    });
830    if let Err(e) = res {
831        sess.dcx().emit_fatal(e);
832    }
833
834    let hide = sess.opts.unstable_opts.staticlib_hide_internal_symbols;
835    let rename = sess.opts.unstable_opts.staticlib_rename_internal_symbols;
836
837    let hide_supported =
838        #[allow(non_exhaustive_omitted_patterns)] match sess.target.binary_format {
    BinaryFormat::Elf | BinaryFormat::MachO => true,
    _ => false,
}matches!(sess.target.binary_format, BinaryFormat::Elf | BinaryFormat::MachO);
839    // Rename only rewrites symbol names, so it also works on COFF; hide
840    // needs a visibility concept COFF lacks.
841    let rename_supported = #[allow(non_exhaustive_omitted_patterns)] match sess.target.binary_format {
    BinaryFormat::Elf | BinaryFormat::MachO | BinaryFormat::Coff => true,
    _ => false,
}matches!(
842        sess.target.binary_format,
843        BinaryFormat::Elf | BinaryFormat::MachO | BinaryFormat::Coff
844    );
845
846    let exported_symbols = if hide || rename {
847        if hide && !hide_supported {
848            sess.dcx().emit_warn(diagnostics::StaticlibHideInternalSymbolsUnsupported {
849                binary_format: sess.target.archive_format.to_string(),
850            });
851        }
852        if rename && !rename_supported {
853            sess.dcx().emit_warn(diagnostics::StaticlibRenameInternalSymbolsUnsupported {
854                binary_format: sess.target.archive_format.to_string(),
855            });
856        }
857        if (hide && hide_supported) || (rename && rename_supported) {
858            crate_info
859                .exported_symbols
860                .get(&CrateType::StaticLib)
861                .map(|symbols| symbols.iter().map(|symbol| symbol.name.clone()).collect())
862        } else {
863            None
864        }
865    } else {
866        None
867    };
868
869    let symbols = exported_symbols.map(|exported| ArchiveSymbols {
870        exported,
871        rename_suffix: (rename && rename_supported)
872            .then(|| crate_info.symbol_rename_suffix.clone()),
873        // A warning was already emitted above if hiding was requested for an
874        // unsupported format; don't also ask the backend to hide there.
875        hide: hide && hide_supported,
876    });
877
878    ab.build(out_filename, symbols);
879
880    let crates = crate_info.used_crates.iter();
881
882    let fmts = crate_info
883        .dependency_formats
884        .get(&CrateType::StaticLib)
885        .expect("no dependency formats for staticlib");
886
887    let mut all_rust_dylibs = ::alloc::vec::Vec::new()vec![];
888    for &cnum in crates {
889        let Some(Linkage::Dynamic) = fmts.get(cnum) else {
890            continue;
891        };
892        let crate_name = crate_info.crate_name[&cnum];
893        let used_crate_source = &crate_info.used_crate_source[&cnum];
894        if let Some(path) = &used_crate_source.dylib {
895            all_rust_dylibs.push(&**path);
896        } else if used_crate_source.rmeta.is_some() {
897            sess.dcx().emit_fatal(diagnostics::LinkRlibError::OnlyRmetaFound { crate_name });
898        } else {
899            sess.dcx().emit_fatal(diagnostics::LinkRlibError::NotFound { crate_name });
900        }
901    }
902
903    all_native_libs.extend_from_slice(&crate_info.used_libraries);
904
905    for print in &sess.opts.prints {
906        if print.kind == PrintKind::NativeStaticLibs {
907            print_native_static_libs(sess, &print.out, &all_native_libs, &all_rust_dylibs);
908        }
909    }
910}
911
912/// Use `thorin` (rust implementation of a dwarf packaging utility) to link DWARF objects into a
913/// DWARF package.
914fn link_dwarf_object(
915    sess: &Session,
916    compiled_modules: &CompiledModules,
917    crate_info: &CrateInfo,
918    executable_out_filename: &Path,
919) {
920    let mut dwp_out_filename = executable_out_filename.to_path_buf().into_os_string();
921    dwp_out_filename.push(".dwp");
922    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:922",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(922u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&[{
                                            const NAME:
                                                ::tracing::__macro_support::FieldName<{
                                                    ::tracing::__macro_support::FieldName::len("dwp_out_filename")
                                                }> =
                                                ::tracing::__macro_support::FieldName::new("dwp_out_filename");
                                            NAME.as_str()
                                        },
                                        {
                                            const NAME:
                                                ::tracing::__macro_support::FieldName<{
                                                    ::tracing::__macro_support::FieldName::len("executable_out_filename")
                                                }> =
                                                ::tracing::__macro_support::FieldName::new("executable_out_filename");
                                            NAME.as_str()
                                        }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&dwp_out_filename)
                                            as &dyn ::tracing::field::Value)),
                                (::tracing::__macro_support::Option::Some(&::tracing::field::debug(&executable_out_filename)
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(?dwp_out_filename, ?executable_out_filename);
923
924    #[derive(#[automatically_derived]
impl<Relocations: ::core::default::Default> ::core::default::Default for
    ThorinSession<Relocations> {
    #[inline]
    fn default() -> Self {
        Self {
            arena_data: ::core::default::Default::default(),
            arena_mmap: ::core::default::Default::default(),
            arena_relocations: ::core::default::Default::default(),
        }
    }
}Default)]
925    struct ThorinSession<Relocations> {
926        arena_data: TypedArena<Vec<u8>>,
927        arena_mmap: TypedArena<Mmap>,
928        arena_relocations: TypedArena<Relocations>,
929    }
930
931    impl<Relocations> ThorinSession<Relocations> {
932        fn alloc_mmap(&self, data: Mmap) -> &Mmap {
933            &*self.arena_mmap.alloc(data)
934        }
935    }
936
937    impl<Relocations> thorin::Session<Relocations> for ThorinSession<Relocations> {
938        fn alloc_data(&self, data: Vec<u8>) -> &[u8] {
939            &*self.arena_data.alloc(data)
940        }
941
942        fn alloc_relocation(&self, data: Relocations) -> &Relocations {
943            &*self.arena_relocations.alloc(data)
944        }
945
946        fn read_input(&self, path: &Path) -> std::io::Result<&[u8]> {
947            let file = File::open(&path)?;
948            let mmap = (unsafe { Mmap::map(file) })?;
949            Ok(self.alloc_mmap(mmap))
950        }
951    }
952
953    match sess.time("run_thorin", || -> Result<(), thorin::Error> {
954        let thorin_sess = ThorinSession::default();
955        let mut package = thorin::DwarfPackage::new(&thorin_sess);
956
957        // Input objs contain .o/.dwo files from the current crate.
958        match sess.opts.unstable_opts.split_dwarf_kind {
959            SplitDwarfKind::Single => {
960                for m in &compiled_modules.modules {
961                    if let Some(input_obj) = &m.object {
962                        package.add_input_object(input_obj)?;
963                    }
964                    if let Some(input_obj) = &m.global_asm_object {
965                        package.add_input_object(input_obj)?;
966                    }
967                }
968            }
969            SplitDwarfKind::Split => {
970                for input_obj in
971                    compiled_modules.modules.iter().filter_map(|m| m.dwarf_object.as_ref())
972                {
973                    package.add_input_object(input_obj)?;
974                }
975            }
976        }
977
978        // Input rlibs contain .o/.dwo files from dependencies.
979        let input_rlibs = crate_info
980            .used_crate_source
981            .items()
982            .filter_map(|(_, csource)| csource.rlib.as_ref())
983            .into_sorted_stable_ord();
984
985        for input_rlib in input_rlibs {
986            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:986",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(986u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&[{
                                            const NAME:
                                                ::tracing::__macro_support::FieldName<{
                                                    ::tracing::__macro_support::FieldName::len("input_rlib")
                                                }> =
                                                ::tracing::__macro_support::FieldName::new("input_rlib");
                                            NAME.as_str()
                                        }], ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&::tracing::field::debug(&input_rlib)
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(?input_rlib);
987            package.add_input_object(input_rlib)?;
988        }
989
990        // Failing to read the referenced objects is expected for dependencies where the path in the
991        // executable will have been cleaned by Cargo, but the referenced objects will be contained
992        // within rlibs provided as inputs.
993        //
994        // If paths have been remapped, then .o/.dwo files from the current crate also won't be
995        // found, but are provided explicitly above.
996        //
997        // Adding an executable is primarily done to make `thorin` check that all the referenced
998        // dwarf objects are found in the end.
999        package.add_executable(
1000            executable_out_filename,
1001            thorin::MissingReferencedObjectBehaviour::Skip,
1002        )?;
1003
1004        let output_stream = BufWriter::new(
1005            OpenOptions::new()
1006                .read(true)
1007                .write(true)
1008                .create(true)
1009                .truncate(true)
1010                .open(dwp_out_filename)?,
1011        );
1012        let mut output_stream = thorin::object::write::StreamingBuffer::new(output_stream);
1013        package.finish()?.emit(&mut output_stream)?;
1014        output_stream.result()?;
1015        output_stream.into_inner().flush()?;
1016
1017        Ok(())
1018    }) {
1019        Ok(()) => {}
1020        Err(e) => sess.dcx().emit_fatal(diagnostics::ThorinErrorWrapper(e)),
1021    }
1022}
1023
1024#[derive(const _: () =
    {
        impl<'_sess> rustc_errors::Diagnostic<'_sess> for LinkerOutput {
            #[track_caller]
            fn into_diag(self, dcx: rustc_errors::DiagCtxtHandle<'_sess>,
                level: rustc_errors::Level) -> rustc_errors::Diag<'_sess> {
                match self {
                    LinkerOutput { inner: __binding_0 } => {
                        let mut diag =
                            rustc_errors::Diag::new(dcx, level,
                                rustc_errors::DiagMessage::Inline(std::borrow::Cow::Borrowed("{$inner}")));
                        ;
                        diag.arg("inner", __binding_0);
                        diag
                    }
                }
            }
        }
    };Diagnostic)]
1025#[diag("{$inner}")]
1026/// Translating this is kind of useless. We don't pass translation flags to the linker, so we'd just
1027/// end up with inconsistent languages within the same diagnostic.
1028struct LinkerOutput {
1029    inner: String,
1030}
1031
1032fn is_msvc_link_exe(sess: &Session) -> bool {
1033    let (linker_path, flavor) = linker_and_flavor(sess);
1034    sess.target.is_like_msvc
1035        && flavor == LinkerFlavor::Msvc(Lld::No)
1036        // Match exactly "link.exe"
1037        && linker_path.to_str() == Some("link.exe")
1038}
1039
1040fn is_macos_linker(sess: &Session) -> bool {
1041    let (_, flavor) = linker_and_flavor(sess);
1042    sess.target.is_like_darwin && #[allow(non_exhaustive_omitted_patterns)] match flavor {
    LinkerFlavor::Darwin(..) => true,
    _ => false,
}matches!(flavor, LinkerFlavor::Darwin(..))
1043}
1044
1045fn is_windows_gnu_ld(sess: &Session) -> bool {
1046    let (_, flavor) = linker_and_flavor(sess);
1047    sess.target.is_like_windows
1048        && !sess.target.is_like_msvc
1049        && #[allow(non_exhaustive_omitted_patterns)] match flavor {
    LinkerFlavor::Gnu(_, Lld::No) => true,
    _ => false,
}matches!(flavor, LinkerFlavor::Gnu(_, Lld::No))
1050        && sess.target.options.cfg_abi != CfgAbi::Llvm
1051}
1052
1053fn is_windows_gnu_clang(sess: &Session) -> bool {
1054    let (_, flavor) = linker_and_flavor(sess);
1055    sess.target.is_like_windows
1056        && !sess.target.is_like_msvc
1057        && #[allow(non_exhaustive_omitted_patterns)] match flavor {
    LinkerFlavor::Gnu(Cc::Yes, Lld::No) => true,
    _ => false,
}matches!(flavor, LinkerFlavor::Gnu(Cc::Yes, Lld::No))
1058        && sess.target.options.cfg_abi == CfgAbi::Llvm
1059}
1060
1061fn report_linker_output(
1062    sess: &Session,
1063    levels: CodegenLintLevelSpecs,
1064    stdout: &[u8],
1065    stderr: &[u8],
1066) {
1067    let mut escaped_stderr = escape_string(&stderr);
1068    let mut escaped_stdout = escape_string(&stdout);
1069    let mut linker_info = String::new();
1070
1071    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1071",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1071u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("linker stderr:\n{0}",
                                                    &escaped_stderr) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("linker stderr:\n{}", &escaped_stderr);
1072    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1072",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1072u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("linker stdout:\n{0}",
                                                    &escaped_stdout) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("linker stdout:\n{}", &escaped_stdout);
1073
1074    fn for_each(bytes: &[u8], mut f: impl FnMut(&str, &mut String)) -> String {
1075        let mut output = String::new();
1076        if let Ok(str) = str::from_utf8(bytes) {
1077            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1077",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1077u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("line: {0}",
                                                    str) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("line: {str}");
1078            output = String::with_capacity(str.len());
1079            for line in str.lines() {
1080                f(line.trim(), &mut output);
1081            }
1082        }
1083        escape_string(output.trim().as_bytes())
1084    }
1085
1086    fn has_lnk_code(line: &str) -> bool {
1087        // link.exe diagnostics are structured as `LINK : warning LNK####:` or
1088        // `LINK : fatal error LNK####:`. The code is always followed by a `:`
1089        // that is the second colon in the line, so matching that structure
1090        // instead of scanning for `LNK####` anywhere avoids false positives on
1091        // file names.
1092        let Some((code_colon, _)) = line.match_indices(':').nth(1) else {
1093            return false;
1094        };
1095        let Some(code) = code_colon.checked_sub(7) else {
1096            return false;
1097        };
1098        let code = &line.as_bytes()[code..code_colon];
1099        code.starts_with(b"LNK") && code[3..].iter().all(u8::is_ascii_digit)
1100    }
1101
1102    if is_msvc_link_exe(sess) {
1103        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1103",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1103u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("inferred MSVC link.exe")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("inferred MSVC link.exe");
1104
1105        escaped_stdout = for_each(&stdout, |line, output| {
1106            // Hide progress messages from link.exe that we don't care about.
1107            // These include localized variants of the English messages (e.g.
1108            // "Creating library ..."), which rustc cannot recognize by text
1109            // without the English language pack.
1110            // See https://github.com/rust-lang/rust/issues/159133
1111            // When incremental linking is enabled and an .ilk exists, but its
1112            // associated .exe is missing, link.exe prints the path of the
1113            // missing .exe followed by:
1114            let ilk_but_no_exe =
1115                "not found or not built by the last incremental link; performing full link";
1116            // LNK6004 is the one code-bearing line that is still informational.
1117            if has_lnk_code(line) && !line.ends_with(ilk_but_no_exe) {
1118                *output += line;
1119                *output += "\r\n"
1120            } else {
1121                linker_info += line;
1122                linker_info += "\r\n";
1123            }
1124        });
1125    } else if is_macos_linker(sess) {
1126        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1126",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1126u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("inferred macOS linker")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("inferred macOS linker");
1127
1128        // FIXME: Tracked by https://github.com/rust-lang/rust/issues/136113
1129        let deployment_mismatch = |line: &str| {
1130            // ld64 (object files + dylibs) and ld_prime (object files only):
1131            (line.starts_with("ld: ")
1132                && line.contains("was built for newer")
1133                && line.contains("than being linked"))
1134            // ld_prime (Xcode 15+, dylibs only):
1135            || (line.starts_with("ld: ")
1136                && line.contains("building for")
1137                && line.contains("but linking with")
1138                && line.contains("which was built for newer version"))
1139            // lld (ld64.lld / rust-lld):
1140            || line.contains("which is newer than target minimum of")
1141        };
1142        // FIXME: This is a real warning we would like to show, but it hits too many crates
1143        // to want to turn it on immediately.
1144        let search_path = |line: &str| {
1145            line.starts_with("ld: warning: search path '") && line.ends_with("' not found")
1146        };
1147        escaped_stderr = for_each(&stderr, |line, output| {
1148            // This duplicate library warning is just not helpful at all.
1149            if line.starts_with("ld: warning: ignoring duplicate libraries: ")
1150                || deployment_mismatch(line)
1151                || search_path(line)
1152            {
1153                linker_info += line;
1154                linker_info += "\n";
1155            } else {
1156                *output += line;
1157                *output += "\n"
1158            }
1159        });
1160    } else if is_windows_gnu_ld(sess) {
1161        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1161",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1161u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("inferred Windows GNU LD")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("inferred Windows GNU LD");
1162
1163        let mut saw_exclude_symbol = false;
1164        // See https://github.com/rust-lang/rust/issues/112368.
1165        // FIXME: maybe check that binutils is older than 2.40 before downgrading this warning?
1166        let exclude_symbols = |line: &str| {
1167            line.starts_with("Warning: .drectve `-exclude-symbols:")
1168                && line.ends_with("' unrecognized")
1169        };
1170        escaped_stderr = for_each(&stderr, |line, output| {
1171            if exclude_symbols(line) {
1172                saw_exclude_symbol = true;
1173                linker_info += line;
1174                linker_info += "\n";
1175            } else if saw_exclude_symbol && line == "Warning: corrupt .drectve at end of def file" {
1176                linker_info += line;
1177                linker_info += "\n";
1178            } else {
1179                *output += line;
1180                *output += "\n"
1181            }
1182        });
1183    } else if is_windows_gnu_clang(sess) {
1184        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1184",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1184u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("inferred Windows Clang (GNU ABI)")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("inferred Windows Clang (GNU ABI)");
1185        escaped_stderr = for_each(&stderr, |line, output| {
1186            if line.contains("argument unused during compilation: '-nolibc'") {
1187                linker_info += line;
1188                linker_info += "\n";
1189            } else {
1190                *output += line;
1191                *output += "\n"
1192            }
1193        });
1194    };
1195
1196    let lint_msg = |msg| {
1197        emit_lint_base(
1198            sess,
1199            LINKER_MESSAGES,
1200            levels.linker_messages,
1201            None,
1202            LinkerOutput { inner: msg },
1203        );
1204    };
1205    let lint_info = |msg| {
1206        emit_lint_base(sess, LINKER_INFO, levels.linker_info, None, LinkerOutput { inner: msg });
1207    };
1208
1209    if !escaped_stderr.is_empty() {
1210        // We already print `warning:` at the start of the diagnostic. Remove it from the linker output if present.
1211        escaped_stderr =
1212            escaped_stderr.strip_prefix("warning: ").unwrap_or(&escaped_stderr).to_owned();
1213        // Windows GNU LD prints uppercase Warning
1214        escaped_stderr = escaped_stderr
1215            .strip_prefix("Warning: ")
1216            .unwrap_or(&escaped_stderr)
1217            .replace(": warning: ", ": ");
1218        lint_msg(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("linker stderr: {0}",
                escaped_stderr.trim_end()))
    })format!("linker stderr: {}", escaped_stderr.trim_end()));
1219    }
1220    if !escaped_stdout.is_empty() {
1221        lint_msg(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("linker stdout: {0}",
                escaped_stdout.trim_end()))
    })format!("linker stdout: {}", escaped_stdout.trim_end()))
1222    }
1223    if !linker_info.is_empty() {
1224        lint_info(linker_info);
1225    }
1226}
1227
1228/// Create a dynamic library or executable.
1229///
1230/// This will invoke the system linker/cc to create the resulting file. This links to all upstream
1231/// files as well.
1232fn link_natively(
1233    sess: &Session,
1234    archive_builder_builder: &dyn ArchiveBuilderBuilder,
1235    rmeta_link_cache: &mut RmetaLinkCache,
1236    crate_type: CrateType,
1237    out_filename: &Path,
1238    compiled_modules: &CompiledModules,
1239    crate_info: &CrateInfo,
1240    metadata: &EncodedMetadata,
1241    tmpdir: &Path,
1242    codegen_backend: &'static str,
1243) {
1244    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1244",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1244u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("preparing {0:?} to {1:?}",
                                                    crate_type, out_filename) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("preparing {:?} to {:?}", crate_type, out_filename);
1245    let (linker_path, flavor) = linker_and_flavor(sess);
1246    let self_contained_components = self_contained_components(sess, crate_type, &linker_path);
1247
1248    // On AIX, we ship all libraries as .a big_af archive
1249    // the expected format is lib<name>.a(libname.so) for the actual
1250    // dynamic library. So we link to a temporary .so file to be archived
1251    // at the final out_filename location
1252    let should_archive = crate_type != CrateType::Executable && sess.target.is_like_aix;
1253    let archive_member =
1254        should_archive.then(|| tmpdir.join(out_filename.file_name().unwrap()).with_extension("so"));
1255    let temp_filename = archive_member.as_deref().unwrap_or(out_filename);
1256
1257    let (mut cmd, jobserver_tokens) = linker_with_args(
1258        &linker_path,
1259        flavor,
1260        sess,
1261        archive_builder_builder,
1262        rmeta_link_cache,
1263        crate_type,
1264        tmpdir,
1265        temp_filename,
1266        compiled_modules,
1267        crate_info,
1268        metadata,
1269        self_contained_components,
1270        codegen_backend,
1271    );
1272
1273    linker::disable_localization(&mut cmd);
1274
1275    for (k, v) in sess.target.link_env.as_ref() {
1276        cmd.env(k.as_ref(), v.as_ref());
1277    }
1278    for k in sess.target.link_env_remove.as_ref() {
1279        cmd.env_remove(k.as_ref());
1280    }
1281
1282    for print in &sess.opts.prints {
1283        if print.kind == PrintKind::LinkArgs {
1284            let content = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0:?}\n", cmd))
    })format!("{cmd:?}\n");
1285            print.out.overwrite(&content, sess);
1286        }
1287    }
1288
1289    // May have not found libraries in the right formats.
1290    sess.dcx().abort_if_errors();
1291
1292    // Invoke the system linker
1293    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1293",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1293u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("{0:?}",
                                                    cmd) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("{cmd:?}");
1294    let unknown_arg_regex =
1295        Regex::new(r"(unknown|unrecognized) (command line )?(option|argument)").unwrap();
1296    let mut prog;
1297    loop {
1298        prog = sess.time("run_linker", || exec_linker(sess, &cmd, out_filename, flavor, tmpdir));
1299        let Ok(ref output) = prog else {
1300            break;
1301        };
1302        if output.status.success() {
1303            break;
1304        }
1305        let mut out = output.stderr.clone();
1306        out.extend(&output.stdout);
1307        let out = String::from_utf8_lossy(&out);
1308
1309        // Check to see if the link failed with an error message that indicates it
1310        // doesn't recognize the -no-pie option. If so, re-perform the link step
1311        // without it. This is safe because if the linker doesn't support -no-pie
1312        // then it should not default to linking executables as pie. Different
1313        // versions of gcc seem to use different quotes in the error message so
1314        // don't check for them.
1315        if #[allow(non_exhaustive_omitted_patterns)] match flavor {
    LinkerFlavor::Gnu(Cc::Yes, _) => true,
    _ => false,
}matches!(flavor, LinkerFlavor::Gnu(Cc::Yes, _))
1316            && unknown_arg_regex.is_match(&out)
1317            && out.contains("-no-pie")
1318            && cmd.get_args().iter().any(|e| e == "-no-pie")
1319        {
1320            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1320",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1320u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("linker output: {0:?}",
                                                    out) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("linker output: {:?}", out);
1321            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1321",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::WARN,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1321u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::WARN <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::WARN <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("Linker does not support -no-pie command line option. Retrying without.")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};warn!("Linker does not support -no-pie command line option. Retrying without.");
1322            for arg in cmd.take_args() {
1323                if arg != "-no-pie" {
1324                    cmd.arg(arg);
1325                }
1326            }
1327            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1327",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1327u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("{0:?}",
                                                    cmd) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("{cmd:?}");
1328            continue;
1329        }
1330
1331        // Check if linking failed with an error message that indicates the driver didn't recognize
1332        // the `-fuse-ld=lld` option. If so, re-perform the link step without it. This avoids having
1333        // to spawn multiple instances on the happy path to do version checking, and ensures things
1334        // keep working on the tier 1 baseline of GLIBC 2.17+. That is generally understood as GCCs
1335        // circa RHEL/CentOS 7, 4.5 or so, whereas lld support was added in GCC 9.
1336        if #[allow(non_exhaustive_omitted_patterns)] match flavor {
    LinkerFlavor::Gnu(Cc::Yes, Lld::Yes) => true,
    _ => false,
}matches!(flavor, LinkerFlavor::Gnu(Cc::Yes, Lld::Yes))
1337            && unknown_arg_regex.is_match(&out)
1338            && out.contains("-fuse-ld=lld")
1339            && cmd.get_args().iter().any(|e| e.to_string_lossy() == "-fuse-ld=lld")
1340        {
1341            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1341",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1341u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("linker output: {0:?}",
                                                    out) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("linker output: {:?}", out);
1342            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1342",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1342u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("The linker driver does not support `-fuse-ld=lld`. Retrying without it.")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("The linker driver does not support `-fuse-ld=lld`. Retrying without it.");
1343            for arg in cmd.take_args() {
1344                if arg.to_string_lossy() != "-fuse-ld=lld" {
1345                    cmd.arg(arg);
1346                }
1347            }
1348            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1348",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1348u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("{0:?}",
                                                    cmd) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("{cmd:?}");
1349            continue;
1350        }
1351
1352        // Detect '-static-pie' used with an older version of gcc or clang not supporting it.
1353        // Fallback from '-static-pie' to '-static' in that case.
1354        if #[allow(non_exhaustive_omitted_patterns)] match flavor {
    LinkerFlavor::Gnu(Cc::Yes, _) => true,
    _ => false,
}matches!(flavor, LinkerFlavor::Gnu(Cc::Yes, _))
1355            && unknown_arg_regex.is_match(&out)
1356            && (out.contains("-static-pie") || out.contains("--no-dynamic-linker"))
1357            && cmd.get_args().iter().any(|e| e == "-static-pie")
1358        {
1359            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1359",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1359u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("linker output: {0:?}",
                                                    out) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("linker output: {:?}", out);
1360            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1360",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::WARN,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1360u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::WARN <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::WARN <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("Linker does not support -static-pie command line option. Retrying with -static instead.")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};warn!(
1361                "Linker does not support -static-pie command line option. Retrying with -static instead."
1362            );
1363            // Mirror `add_(pre,post)_link_objects` to replace CRT objects.
1364            let self_contained_crt_objects = self_contained_components.is_crt_objects_enabled();
1365            let opts = &sess.target;
1366            let pre_objects = if self_contained_crt_objects {
1367                &opts.pre_link_objects_self_contained
1368            } else {
1369                &opts.pre_link_objects
1370            };
1371            let post_objects = if self_contained_crt_objects {
1372                &opts.post_link_objects_self_contained
1373            } else {
1374                &opts.post_link_objects
1375            };
1376            let get_objects = |objects: &CrtObjects, kind| {
1377                objects
1378                    .get(&kind)
1379                    .into_flat_iter()
1380                    .map(|obj| {
1381                        get_object_file_path(sess, obj, self_contained_crt_objects).into_os_string()
1382                    })
1383                    .collect::<Vec<_>>()
1384            };
1385            let pre_objects_static_pie = get_objects(pre_objects, LinkOutputKind::StaticPicExe);
1386            let post_objects_static_pie = get_objects(post_objects, LinkOutputKind::StaticPicExe);
1387            let mut pre_objects_static = get_objects(pre_objects, LinkOutputKind::StaticNoPicExe);
1388            let mut post_objects_static = get_objects(post_objects, LinkOutputKind::StaticNoPicExe);
1389            // Assume that we know insertion positions for the replacement arguments from replaced
1390            // arguments, which is true for all supported targets.
1391            if !(pre_objects_static.is_empty() || !pre_objects_static_pie.is_empty()) {
    ::core::panicking::panic("assertion failed: pre_objects_static.is_empty() || !pre_objects_static_pie.is_empty()")
};assert!(pre_objects_static.is_empty() || !pre_objects_static_pie.is_empty());
1392            if !(post_objects_static.is_empty() || !post_objects_static_pie.is_empty()) {
    ::core::panicking::panic("assertion failed: post_objects_static.is_empty() || !post_objects_static_pie.is_empty()")
};assert!(post_objects_static.is_empty() || !post_objects_static_pie.is_empty());
1393            for arg in cmd.take_args() {
1394                if arg == "-static-pie" {
1395                    // Replace the output kind.
1396                    cmd.arg("-static");
1397                } else if pre_objects_static_pie.contains(&arg) {
1398                    // Replace the pre-link objects (replace the first and remove the rest).
1399                    cmd.args(mem::take(&mut pre_objects_static));
1400                } else if post_objects_static_pie.contains(&arg) {
1401                    // Replace the post-link objects (replace the first and remove the rest).
1402                    cmd.args(mem::take(&mut post_objects_static));
1403                } else {
1404                    cmd.arg(arg);
1405                }
1406            }
1407            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1407",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1407u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("{0:?}",
                                                    cmd) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("{cmd:?}");
1408            continue;
1409        }
1410
1411        break;
1412    }
1413
1414    // Finished running linker, release the tokens.
1415    drop(jobserver_tokens);
1416
1417    match prog {
1418        Ok(prog) => {
1419            if !prog.status.success() {
1420                let mut output = prog.stderr.clone();
1421                output.extend_from_slice(&prog.stdout);
1422                let escaped_output = escape_linker_output(&output, flavor);
1423                let err = diagnostics::LinkingFailed {
1424                    linker_path: &linker_path,
1425                    exit_status: prog.status,
1426                    command: cmd,
1427                    escaped_output,
1428                    verbose: sess.opts.verbose,
1429                    sysroot_dir: sess.opts.sysroot.path().to_owned(),
1430                };
1431                sess.dcx().emit_err(err);
1432                // If MSVC's `link.exe` was expected but the return code
1433                // is not a Microsoft LNK error then suggest a way to fix or
1434                // install the Visual Studio build tools.
1435                if let Some(code) = prog.status.code() {
1436                    // All Microsoft `link.exe` linking ror codes are
1437                    // four digit numbers in the range 1000 to 9999 inclusive
1438                    if is_msvc_link_exe(sess) && (code < 1000 || code > 9999) {
1439                        let is_vs_installed = find_msvc_tools::find_vs_version().is_ok();
1440                        let has_linker =
1441                            find_msvc_tools::find_tool(sess.target.arch.desc(), "link.exe")
1442                                .is_some();
1443
1444                        sess.dcx().emit_note(diagnostics::LinkExeUnexpectedError);
1445
1446                        // STATUS_STACK_BUFFER_OVERRUN is also used for fast abnormal program termination, e.g. abort().
1447                        // Emit a special diagnostic to let people know that this most likely doesn't indicate a stack buffer overrun.
1448                        const STATUS_STACK_BUFFER_OVERRUN: i32 = 0xc0000409u32 as _;
1449                        if code == STATUS_STACK_BUFFER_OVERRUN {
1450                            sess.dcx().emit_note(diagnostics::LinkExeStatusStackBufferOverrun);
1451                        }
1452
1453                        if is_vs_installed && has_linker {
1454                            // the linker is broken
1455                            sess.dcx().emit_note(diagnostics::RepairVSBuildTools);
1456                            sess.dcx().emit_note(diagnostics::MissingCppBuildToolComponent);
1457                        } else if is_vs_installed {
1458                            // the linker is not installed
1459                            sess.dcx().emit_note(diagnostics::SelectCppBuildToolWorkload);
1460                        } else {
1461                            // visual studio is not installed
1462                            sess.dcx().emit_note(diagnostics::VisualStudioNotInstalled);
1463                        }
1464                    }
1465                }
1466
1467                sess.dcx().abort_if_errors();
1468            }
1469
1470            {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:1470",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(1470u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("reporting linker output: flavor={0:?}",
                                                    flavor) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("reporting linker output: flavor={flavor:?}");
1471            report_linker_output(sess, crate_info.lint_level_specs, &prog.stdout, &prog.stderr);
1472        }
1473        Err(e) => {
1474            let linker_not_found = e.kind() == io::ErrorKind::NotFound;
1475
1476            let err = if linker_not_found {
1477                sess.dcx().emit_err(diagnostics::LinkerNotFound { linker_path, error: e })
1478            } else {
1479                sess.dcx().emit_err(diagnostics::UnableToExeLinker {
1480                    linker_path,
1481                    error: e,
1482                    command_formatted: ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0:?}", cmd))
    })format!("{cmd:?}"),
1483                })
1484            };
1485
1486            if sess.target.is_like_msvc && linker_not_found {
1487                sess.dcx().emit_note(diagnostics::MsvcMissingLinker);
1488                sess.dcx().emit_note(diagnostics::CheckInstalledVisualStudio);
1489                sess.dcx().emit_note(diagnostics::InsufficientVSCodeProduct);
1490            }
1491            err.raise_fatal();
1492        }
1493    }
1494
1495    match sess.split_debuginfo() {
1496        // If split debug information is disabled or located in individual files
1497        // there's nothing to do here.
1498        SplitDebuginfo::Off | SplitDebuginfo::Unpacked => {}
1499
1500        // If packed split-debuginfo is requested, but the final compilation
1501        // doesn't actually have any debug information, then we skip this step.
1502        SplitDebuginfo::Packed if sess.opts.debuginfo == DebugInfo::None => {}
1503
1504        // On macOS the external `dsymutil` tool is used to create the packed
1505        // debug information. Note that this will read debug information from
1506        // the objects on the filesystem which we'll clean up later.
1507        SplitDebuginfo::Packed if sess.target.is_like_darwin => {
1508            let prog = Command::new("dsymutil").arg(out_filename).output();
1509            match prog {
1510                Ok(prog) => {
1511                    if !prog.status.success() {
1512                        let mut output = prog.stderr.clone();
1513                        output.extend_from_slice(&prog.stdout);
1514                        sess.dcx().emit_warn(diagnostics::ProcessingDymutilFailed {
1515                            status: prog.status,
1516                            output: escape_string(&output),
1517                        });
1518                    }
1519                }
1520                Err(error) => sess.dcx().emit_fatal(diagnostics::UnableToRunDsymutil { error }),
1521            }
1522        }
1523
1524        // On MSVC packed debug information is produced by the linker itself so
1525        // there's no need to do anything else here.
1526        SplitDebuginfo::Packed if sess.target.is_like_windows => {}
1527
1528        // ... and otherwise we're processing a `*.dwp` packed dwarf file.
1529        //
1530        // We cannot rely on the .o paths in the executable because they may have been
1531        // remapped by --remap-path-prefix and therefore invalid, so we need to provide
1532        // the .o/.dwo paths explicitly.
1533        SplitDebuginfo::Packed => {
1534            link_dwarf_object(sess, compiled_modules, crate_info, out_filename)
1535        }
1536    }
1537
1538    let strip = sess.opts.cg.strip;
1539
1540    if sess.target.is_like_darwin {
1541        let stripcmd = "rust-objcopy";
1542        match (strip, crate_type) {
1543            (Strip::Debuginfo, _) => {
1544                strip_with_external_utility(sess, stripcmd, out_filename, &["--strip-debug"])
1545            }
1546
1547            // Per the manpage, --discard-all is the maximum safe strip level for dynamic libraries. (#93988)
1548            (
1549                Strip::Symbols,
1550                CrateType::Dylib | CrateType::Cdylib | CrateType::ProcMacro | CrateType::Sdylib,
1551            ) => strip_with_external_utility(sess, stripcmd, out_filename, &["--discard-all"]),
1552            (Strip::Symbols, _) => {
1553                strip_with_external_utility(sess, stripcmd, out_filename, &["--strip-all"])
1554            }
1555            (Strip::None, _) => {}
1556        }
1557    }
1558
1559    if sess.target.is_like_solaris {
1560        // Many illumos systems will have both the native 'strip' utility and
1561        // the GNU one. Use the native version explicitly and do not rely on
1562        // what's in the path.
1563        //
1564        // If cross-compiling and there is not a native version, then use
1565        // `llvm-strip` and hope.
1566        let stripcmd = if !sess.host.is_like_solaris { "rust-objcopy" } else { "/usr/bin/strip" };
1567        match strip {
1568            // Always preserve the symbol table (-x).
1569            Strip::Debuginfo => strip_with_external_utility(sess, stripcmd, out_filename, &["-x"]),
1570            // Strip::Symbols is handled via the --strip-all linker option.
1571            Strip::Symbols => {}
1572            Strip::None => {}
1573        }
1574    }
1575
1576    if sess.target.is_like_aix {
1577        // `llvm-strip` doesn't work for AIX - their strip must be used.
1578        if !sess.host.is_like_aix {
1579            sess.dcx().emit_warn(diagnostics::AixStripNotUsed);
1580        }
1581        let stripcmd = "/usr/bin/strip";
1582        match strip {
1583            Strip::Debuginfo => {
1584                // FIXME: AIX's strip utility only offers option to strip line number information.
1585                strip_with_external_utility(sess, stripcmd, temp_filename, &["-X32_64", "-l"])
1586            }
1587            Strip::Symbols => {
1588                // Must be noted this option might remove symbol __aix_rust_metadata and thus removes .info section which contains metadata.
1589                strip_with_external_utility(sess, stripcmd, temp_filename, &["-X32_64", "-r"])
1590            }
1591            Strip::None => {}
1592        }
1593    }
1594
1595    if should_archive {
1596        let mut ab = archive_builder_builder.new_archive_builder(sess);
1597        ab.add_file(temp_filename, ArchiveEntryKind::Other);
1598        ab.build(out_filename, None);
1599    }
1600}
1601
1602fn strip_with_external_utility(sess: &Session, util: &str, out_filename: &Path, options: &[&str]) {
1603    let mut cmd = Command::new(util);
1604    cmd.args(options);
1605
1606    let mut new_path = sess.get_tools_search_paths(false);
1607    if let Some(path) = env::var_os("PATH") {
1608        new_path.extend(env::split_paths(&path));
1609    }
1610    cmd.env("PATH", env::join_paths(new_path).unwrap());
1611
1612    let prog = cmd.arg(out_filename).output();
1613    match prog {
1614        Ok(prog) => {
1615            if !prog.status.success() {
1616                let mut output = prog.stderr.clone();
1617                output.extend_from_slice(&prog.stdout);
1618                sess.dcx().emit_warn(diagnostics::StrippingDebugInfoFailed {
1619                    util,
1620                    status: prog.status,
1621                    output: escape_string(&output),
1622                });
1623            }
1624        }
1625        Err(error) => sess.dcx().emit_fatal(diagnostics::UnableToRun { util, error }),
1626    }
1627}
1628
1629fn escape_string(s: &[u8]) -> String {
1630    match str::from_utf8(s) {
1631        Ok(s) => s.to_owned(),
1632        Err(_) => ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("Non-UTF-8 output: {0}",
                s.escape_ascii()))
    })format!("Non-UTF-8 output: {}", s.escape_ascii()),
1633    }
1634}
1635
1636#[cfg(not(windows))]
1637fn escape_linker_output(s: &[u8], _flavour: LinkerFlavor) -> String {
1638    escape_string(s)
1639}
1640
1641/// If the output of the msvc linker is not UTF-8 and the host is Windows,
1642/// then try to convert the string from the OEM encoding.
1643#[cfg(windows)]
1644fn escape_linker_output(s: &[u8], flavour: LinkerFlavor) -> String {
1645    // This only applies to the actual MSVC linker.
1646    if flavour != LinkerFlavor::Msvc(Lld::No) {
1647        return escape_string(s);
1648    }
1649    match str::from_utf8(s) {
1650        Ok(s) => return s.to_owned(),
1651        Err(_) => match win::locale_byte_str_to_string(s, win::oem_code_page()) {
1652            Some(s) => s,
1653            // The string is not UTF-8 and isn't valid for the OEM code page
1654            None => format!("Non-UTF-8 output: {}", s.escape_ascii()),
1655        },
1656    }
1657}
1658
1659/// Wrappers around the Windows API.
1660#[cfg(windows)]
1661mod win {
1662    use windows::Win32::Globalization::{
1663        CP_OEMCP, GetLocaleInfoEx, LOCALE_IUSEUTF8LEGACYOEMCP, LOCALE_NAME_SYSTEM_DEFAULT,
1664        LOCALE_RETURN_NUMBER, MB_ERR_INVALID_CHARS, MultiByteToWideChar,
1665    };
1666
1667    /// Get the Windows system OEM code page. This is most notably the code page
1668    /// used for link.exe's output.
1669    pub(super) fn oem_code_page() -> u32 {
1670        unsafe {
1671            let mut cp: u32 = 0;
1672            // We're using the `LOCALE_RETURN_NUMBER` flag to return a u32.
1673            // But the API requires us to pass the data as though it's a [u16] string.
1674            let len = size_of::<u32>() / size_of::<u16>();
1675            let data = std::slice::from_raw_parts_mut(&mut cp as *mut u32 as *mut u16, len);
1676            let len_written = GetLocaleInfoEx(
1677                LOCALE_NAME_SYSTEM_DEFAULT,
1678                LOCALE_IUSEUTF8LEGACYOEMCP | LOCALE_RETURN_NUMBER,
1679                Some(data),
1680            );
1681            if len_written as usize == len { cp } else { CP_OEMCP }
1682        }
1683    }
1684    /// Try to convert a multi-byte string to a UTF-8 string using the given code page
1685    /// The string does not need to be null terminated.
1686    ///
1687    /// This is implemented as a wrapper around `MultiByteToWideChar`.
1688    /// See <https://learn.microsoft.com/en-us/windows/win32/api/stringapiset/nf-stringapiset-multibytetowidechar>
1689    ///
1690    /// It will fail if the multi-byte string is longer than `i32::MAX` or if it contains
1691    /// any invalid bytes for the expected encoding.
1692    pub(super) fn locale_byte_str_to_string(s: &[u8], code_page: u32) -> Option<String> {
1693        // `MultiByteToWideChar` requires a length to be a "positive integer".
1694        if s.len() > isize::MAX as usize {
1695            return None;
1696        }
1697        // Error if the string is not valid for the expected code page.
1698        let flags = MB_ERR_INVALID_CHARS;
1699        // Call MultiByteToWideChar twice.
1700        // First to calculate the length then to convert the string.
1701        let mut len = unsafe { MultiByteToWideChar(code_page, flags, s, None) };
1702        if len > 0 {
1703            let mut utf16 = vec![0; len as usize];
1704            len = unsafe { MultiByteToWideChar(code_page, flags, s, Some(&mut utf16)) };
1705            if len > 0 {
1706                return utf16.get(..len as usize).map(String::from_utf16_lossy);
1707            }
1708        }
1709        None
1710    }
1711}
1712
1713fn add_sanitizer_libraries(
1714    sess: &Session,
1715    flavor: LinkerFlavor,
1716    crate_type: CrateType,
1717    linker: &mut dyn Linker,
1718) {
1719    if sess.target.is_like_android {
1720        // Sanitizer runtime libraries are provided dynamically on Android
1721        // targets.
1722        return;
1723    }
1724
1725    if sess.opts.unstable_opts.external_clangrt {
1726        // Linking against in-tree sanitizer runtimes is disabled via
1727        // `-Z external-clangrt`
1728        return;
1729    }
1730
1731    if #[allow(non_exhaustive_omitted_patterns)] match crate_type {
    CrateType::Rlib | CrateType::StaticLib => true,
    _ => false,
}matches!(crate_type, CrateType::Rlib | CrateType::StaticLib) {
1732        return;
1733    }
1734
1735    // On macOS and Windows using MSVC the runtimes are distributed as dylibs
1736    // which should be linked to both executables and dynamic libraries.
1737    // Everywhere else the runtimes are currently distributed as static
1738    // libraries which should be linked to executables only.
1739    if #[allow(non_exhaustive_omitted_patterns)] match crate_type {
    CrateType::Dylib | CrateType::Cdylib | CrateType::ProcMacro |
        CrateType::Sdylib => true,
    _ => false,
}matches!(
1740        crate_type,
1741        CrateType::Dylib | CrateType::Cdylib | CrateType::ProcMacro | CrateType::Sdylib
1742    ) && !(sess.target.is_like_darwin || sess.target.is_like_msvc)
1743    {
1744        return;
1745    }
1746
1747    let sanitizer = sess.sanitizers();
1748    if sanitizer.contains(SanitizerSet::ADDRESS) {
1749        link_sanitizer_runtime(sess, flavor, linker, "asan");
1750    }
1751    if sanitizer.contains(SanitizerSet::DATAFLOW) {
1752        link_sanitizer_runtime(sess, flavor, linker, "dfsan");
1753    }
1754    if sanitizer.contains(SanitizerSet::LEAK)
1755        && !sanitizer.contains(SanitizerSet::ADDRESS)
1756        && !sanitizer.contains(SanitizerSet::HWADDRESS)
1757    {
1758        link_sanitizer_runtime(sess, flavor, linker, "lsan");
1759    }
1760    if sanitizer.contains(SanitizerSet::MEMORY) {
1761        link_sanitizer_runtime(sess, flavor, linker, "msan");
1762    }
1763    if sanitizer.contains(SanitizerSet::THREAD) {
1764        link_sanitizer_runtime(sess, flavor, linker, "tsan");
1765    }
1766    if sanitizer.contains(SanitizerSet::HWADDRESS) {
1767        link_sanitizer_runtime(sess, flavor, linker, "hwasan");
1768    }
1769    if sanitizer.contains(SanitizerSet::SAFESTACK) {
1770        link_sanitizer_runtime(sess, flavor, linker, "safestack");
1771    }
1772    if sanitizer.contains(SanitizerSet::REALTIME) {
1773        link_sanitizer_runtime(sess, flavor, linker, "rtsan");
1774    }
1775    if sanitizer.contains(SanitizerSet::CFI)
1776        && (sess.opts.unstable_opts.sanitizer_cfi_diag.unwrap_or(false)
1777            || sess.opts.unstable_opts.sanitizer_cfi_recover.unwrap_or(false))
1778    {
1779        link_sanitizer_runtime(sess, flavor, linker, "ubsan");
1780    }
1781}
1782
1783fn link_sanitizer_runtime(
1784    sess: &Session,
1785    flavor: LinkerFlavor,
1786    linker: &mut dyn Linker,
1787    name: &str,
1788) {
1789    fn find_sanitizer_runtime(sess: &Session, filename: &str) -> PathBuf {
1790        let path = sess.target_tlib_path.dir.join(filename);
1791        if path.exists() {
1792            sess.target_tlib_path.dir.to_path_buf()
1793        } else {
1794            filesearch::make_target_lib_path(
1795                &sess.opts.sysroot.default,
1796                sess.opts.target_triple.tuple(),
1797            )
1798        }
1799    }
1800
1801    let channel =
1802        ::core::option::Option::Some("nightly")option_env!("CFG_RELEASE_CHANNEL").map(|channel| ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("-{0}", channel))
    })format!("-{channel}")).unwrap_or_default();
1803
1804    if sess.target.is_like_darwin {
1805        // On Apple platforms, the sanitizer is always built as a dylib, and
1806        // LLVM will link to `@rpath/*.dylib`, so we need to specify an
1807        // rpath to the library as well (the rpath should be absolute, see
1808        // PR #41352 for details).
1809        let filename = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("rustc{0}_rt.{1}", channel, name))
    })format!("rustc{channel}_rt.{name}");
1810        let path = find_sanitizer_runtime(sess, &filename);
1811        let rpath = path.to_str().expect("non-utf8 component in path");
1812        linker.link_args(&["-rpath", rpath]);
1813        linker.link_dylib_by_name(&filename, false, true);
1814    } else if sess.target.is_like_msvc && flavor == LinkerFlavor::Msvc(Lld::No) && name == "asan" {
1815        // MSVC provides the `/INFERASANLIBS` argument to automatically find the
1816        // compatible ASAN library.
1817        linker.link_arg("/INFERASANLIBS");
1818    } else {
1819        let filename = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("librustc{0}_rt.{1}.a", channel,
                name))
    })format!("librustc{channel}_rt.{name}.a");
1820        let path = find_sanitizer_runtime(sess, &filename).join(&filename);
1821        linker.link_staticlib_by_path(&path, true);
1822    }
1823}
1824
1825/// Returns a boolean indicating whether the specified crate should be ignored
1826/// during LTO.
1827///
1828/// Crates ignored during LTO are not lumped together in the "massive object
1829/// file" that we create and are linked in their normal rlib states. See
1830/// comments below for what crates do not participate in LTO.
1831///
1832/// It's unusual for a crate to not participate in LTO. Typically only
1833/// compiler-specific and unstable crates have a reason to not participate in
1834/// LTO.
1835pub fn ignored_for_lto(sess: &Session, info: &CrateInfo, cnum: CrateNum) -> bool {
1836    // If our target enables builtin function lowering in LLVM then the
1837    // crates providing these functions don't participate in LTO (e.g.
1838    // no_builtins or compiler builtins crates).
1839    !sess.target.no_builtins
1840        && (info.compiler_builtins == Some(cnum) || info.is_no_builtins.contains(&cnum))
1841}
1842
1843/// This functions tries to determine the appropriate linker (and corresponding LinkerFlavor) to use
1844pub fn linker_and_flavor(sess: &Session) -> (PathBuf, LinkerFlavor) {
1845    fn infer_from(
1846        sess: &Session,
1847        linker: Option<PathBuf>,
1848        flavor: Option<LinkerFlavor>,
1849        features: LinkerFeaturesCli,
1850    ) -> Option<(PathBuf, LinkerFlavor)> {
1851        let flavor = flavor.map(|flavor| adjust_flavor_to_features(flavor, features));
1852        match (linker, flavor) {
1853            (Some(linker), Some(flavor)) => Some((linker, flavor)),
1854            // only the linker flavor is known; use the default linker for the selected flavor
1855            (None, Some(flavor)) => Some((
1856                PathBuf::from(match flavor {
1857                    LinkerFlavor::Gnu(Cc::Yes, _)
1858                    | LinkerFlavor::Darwin(Cc::Yes, _)
1859                    | LinkerFlavor::WasmLld(Cc::Yes)
1860                    | LinkerFlavor::Unix(Cc::Yes) => {
1861                        if falsecfg!(any(target_os = "solaris", target_os = "illumos")) {
1862                            // On historical Solaris systems, "cc" may have
1863                            // been Sun Studio, which is not flag-compatible
1864                            // with "gcc". This history casts a long shadow,
1865                            // and many modern illumos distributions today
1866                            // ship GCC as "gcc" without also making it
1867                            // available as "cc".
1868                            "gcc"
1869                        } else {
1870                            "cc"
1871                        }
1872                    }
1873                    LinkerFlavor::Gnu(_, Lld::Yes)
1874                    | LinkerFlavor::Darwin(_, Lld::Yes)
1875                    | LinkerFlavor::WasmLld(..)
1876                    | LinkerFlavor::Msvc(Lld::Yes) => "lld",
1877                    LinkerFlavor::Gnu(..) | LinkerFlavor::Darwin(..) | LinkerFlavor::Unix(..) => {
1878                        "ld"
1879                    }
1880                    LinkerFlavor::Msvc(..) => "link.exe",
1881                    LinkerFlavor::EmCc => {
1882                        if falsecfg!(windows) {
1883                            "emcc.bat"
1884                        } else {
1885                            "emcc"
1886                        }
1887                    }
1888                    LinkerFlavor::Bpf => "bpf-linker",
1889                    LinkerFlavor::Llbc => "llvm-bitcode-linker",
1890                }),
1891                flavor,
1892            )),
1893            (Some(linker), None) => {
1894                let stem = linker.file_stem().and_then(|stem| stem.to_str()).unwrap_or_else(|| {
1895                    sess.dcx().emit_fatal(diagnostics::LinkerFileStem);
1896                });
1897                let flavor = sess.target.linker_flavor.with_linker_hints(stem);
1898                let flavor = adjust_flavor_to_features(flavor, features);
1899                Some((linker, flavor))
1900            }
1901            (None, None) => None,
1902        }
1903    }
1904
1905    // While linker flavors and linker features are isomorphic (and thus targets don't need to
1906    // define features separately), we use the flavor as the root piece of data and have the
1907    // linker-features CLI flag influence *that*, so that downstream code does not have to check for
1908    // both yet.
1909    fn adjust_flavor_to_features(
1910        flavor: LinkerFlavor,
1911        features: LinkerFeaturesCli,
1912    ) -> LinkerFlavor {
1913        // Note: a linker feature cannot be both enabled and disabled on the CLI.
1914        if features.enabled.contains(LinkerFeatures::LLD) {
1915            flavor.with_lld_enabled()
1916        } else if features.disabled.contains(LinkerFeatures::LLD) {
1917            flavor.with_lld_disabled()
1918        } else {
1919            flavor
1920        }
1921    }
1922
1923    let features = sess.opts.cg.linker_features;
1924
1925    // linker and linker flavor specified via command line have precedence over what the target
1926    // specification specifies
1927    let linker_flavor = match sess.opts.cg.linker_flavor {
1928        // The linker flavors that are non-target specific can be directly translated to LinkerFlavor
1929        Some(LinkerFlavorCli::Llbc) => Some(LinkerFlavor::Llbc),
1930        // The linker flavors that corresponds to targets needs logic that keeps the base LinkerFlavor
1931        linker_flavor => {
1932            linker_flavor.map(|flavor| sess.target.linker_flavor.with_cli_hints(flavor))
1933        }
1934    };
1935    if let Some(ret) = infer_from(sess, sess.opts.cg.linker.clone(), linker_flavor, features) {
1936        return ret;
1937    }
1938
1939    if let Some(ret) = infer_from(
1940        sess,
1941        sess.target.linker.as_deref().map(PathBuf::from),
1942        Some(sess.target.linker_flavor),
1943        features,
1944    ) {
1945        return ret;
1946    }
1947
1948    ::rustc_span::macros::bug_impl(None,
    format_args!("Not enough information provided to determine how to invoke the linker"),
    Location::caller());bug!("Not enough information provided to determine how to invoke the linker");
1949}
1950
1951/// Returns a pair of boolean indicating whether we should preserve the object and
1952/// dwarf object files on the filesystem for their debug information. This is often
1953/// useful with split-dwarf like schemes.
1954fn preserve_objects_for_their_debuginfo(sess: &Session) -> (bool, bool) {
1955    // If the objects don't have debuginfo there's nothing to preserve.
1956    if sess.opts.debuginfo == config::DebugInfo::None {
1957        return (false, false);
1958    }
1959
1960    match (sess.split_debuginfo(), sess.opts.unstable_opts.split_dwarf_kind) {
1961        // If there is no split debuginfo then do not preserve objects.
1962        (SplitDebuginfo::Off, _) => (false, false),
1963        // If there is packed split debuginfo, then the debuginfo in the objects
1964        // has been packaged and the objects can be deleted.
1965        (SplitDebuginfo::Packed, _) => (false, false),
1966        // If there is unpacked split debuginfo and the current target can not use
1967        // split dwarf, then keep objects.
1968        (SplitDebuginfo::Unpacked, _) if !sess.target_can_use_split_dwarf() => (true, false),
1969        // If there is unpacked split debuginfo and the target can use split dwarf, then
1970        // keep the object containing that debuginfo (whether that is an object file or
1971        // dwarf object file depends on the split dwarf kind).
1972        (SplitDebuginfo::Unpacked, SplitDwarfKind::Single) => (true, false),
1973        (SplitDebuginfo::Unpacked, SplitDwarfKind::Split) => (false, true),
1974    }
1975}
1976
1977#[derive(#[automatically_derived]
impl ::core::marker::StructuralPartialEq for RlibFlavor { }
#[automatically_derived]
impl ::core::cmp::PartialEq for RlibFlavor {
    #[inline]
    fn eq(&self, other: &Self) -> bool {
        ::core::intrinsics::discriminant_value(self) ==
            ::core::intrinsics::discriminant_value(other)
    }
}PartialEq)]
1978enum RlibFlavor {
1979    Normal,
1980    StaticlibBase,
1981}
1982
1983fn print_native_static_libs(
1984    sess: &Session,
1985    out: &OutFileName,
1986    all_native_libs: &[NativeLib],
1987    all_rust_dylibs: &[&Path],
1988) {
1989    let mut lib_args: Vec<_> = all_native_libs
1990        .iter()
1991        .filter(|l| relevant_lib(sess, l))
1992        .filter_map(|lib| {
1993            let name = lib.name;
1994            match lib.kind {
1995                NativeLibKind::Static { bundle: Some(false), .. }
1996                | NativeLibKind::Dylib { .. }
1997                | NativeLibKind::Unspecified => {
1998                    let verbatim = lib.verbatim;
1999                    if sess.target.is_like_msvc {
2000                        let (prefix, suffix) = sess.staticlib_components(verbatim);
2001                        Some(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}{1}{2}", prefix, name, suffix))
    })format!("{prefix}{name}{suffix}"))
2002                    } else if sess.target.linker_flavor.is_gnu() {
2003                        Some(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("-l{0}{1}",
                if verbatim { ":" } else { "" }, name))
    })format!("-l{}{}", if verbatim { ":" } else { "" }, name))
2004                    } else {
2005                        Some(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("-l{0}", name))
    })format!("-l{name}"))
2006                    }
2007                }
2008                NativeLibKind::Framework { .. } => {
2009                    // ld-only syntax, since there are no frameworks in MSVC
2010                    Some(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("-framework {0}", name))
    })format!("-framework {name}"))
2011                }
2012                // These are included, no need to print them
2013                NativeLibKind::Static { bundle: None | Some(true), .. }
2014                | NativeLibKind::LinkArg
2015                | NativeLibKind::WasmImportModule
2016                | NativeLibKind::RawDylib { .. } => None,
2017            }
2018        })
2019        // deduplication of consecutive repeated libraries, see rust-lang/rust#113209
2020        .dedup()
2021        .collect();
2022    for path in all_rust_dylibs {
2023        // FIXME deduplicate with add_dynamic_crate
2024
2025        // Just need to tell the linker about where the library lives and
2026        // what its name is
2027        let parent = path.parent();
2028        if let Some(dir) = parent {
2029            let dir = fix_windows_verbatim_for_gcc(dir);
2030            if sess.target.is_like_msvc {
2031                let mut arg = String::from("/LIBPATH:");
2032                arg.push_str(&dir.display().to_string());
2033                lib_args.push(arg);
2034            } else {
2035                lib_args.push("-L".to_owned());
2036                lib_args.push(dir.display().to_string());
2037            }
2038        }
2039        let stem = path.file_stem().unwrap().to_str().unwrap();
2040        // Convert library file-stem into a cc -l argument.
2041        let lib = if let Some(lib) = stem.strip_prefix("lib")
2042            && !sess.target.is_like_windows
2043        {
2044            lib
2045        } else {
2046            stem
2047        };
2048        let path = parent.unwrap_or_else(|| Path::new(""));
2049        if sess.target.is_like_msvc {
2050            // When producing a dll, the MSVC linker may not actually emit a
2051            // `foo.lib` file if the dll doesn't actually export any symbols, so we
2052            // check to see if the file is there and just omit linking to it if it's
2053            // not present.
2054            let name = ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}.dll.lib", lib))
    })format!("{lib}.dll.lib");
2055            if path.join(&name).exists() {
2056                lib_args.push(name);
2057            }
2058        } else {
2059            lib_args.push(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("-l{0}", lib))
    })format!("-l{lib}"));
2060        }
2061    }
2062
2063    match out {
2064        OutFileName::Real(path) => {
2065            out.overwrite(&lib_args.join(" "), sess);
2066            sess.dcx().emit_note(diagnostics::StaticLibraryNativeArtifactsToFile { path });
2067        }
2068        OutFileName::Stdout => {
2069            sess.dcx().emit_note(diagnostics::StaticLibraryNativeArtifacts);
2070            // Prefix for greppability
2071            // Note: This must not be translated as tools are allowed to depend on this exact string.
2072            sess.dcx().note(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("native-static-libs: {0}",
                lib_args.join(" ")))
    })format!("native-static-libs: {}", lib_args.join(" ")));
2073        }
2074    }
2075}
2076
2077fn get_object_file_path(sess: &Session, name: &str, self_contained: bool) -> PathBuf {
2078    let file_path = sess.target_tlib_path.dir.join(name);
2079    if file_path.exists() {
2080        return file_path;
2081    }
2082    // Special directory with objects used only in self-contained linkage mode
2083    if self_contained {
2084        let file_path = sess.target_tlib_path.dir.join("self-contained").join(name);
2085        if file_path.exists() {
2086            return file_path;
2087        }
2088    }
2089
2090    // Note: this is O(n^2), it could be expensive-ish if we lookup many object files for many
2091    // search paths
2092    for search_path in sess.target_filesearch().search_paths(PathKind::Native) {
2093        let file_path = search_path.dir.join(name);
2094        if file_path.exists() {
2095            return file_path;
2096        }
2097    }
2098    PathBuf::from(name)
2099}
2100
2101fn exec_linker(
2102    sess: &Session,
2103    cmd: &Command,
2104    out_filename: &Path,
2105    flavor: LinkerFlavor,
2106    tmpdir: &Path,
2107) -> io::Result<Output> {
2108    // When attempting to spawn the linker we run a risk of blowing out the
2109    // size limits for spawning a new process with respect to the arguments
2110    // we pass on the command line.
2111    //
2112    // Here we attempt to handle errors from the OS saying "your list of
2113    // arguments is too big" by reinvoking the linker again with an `@`-file
2114    // that contains all the arguments (aka 'response' files).
2115    // The theory is that this is then accepted on all linkers and the linker
2116    // will read all its options out of there instead of looking at the command line.
2117    if !cmd.very_likely_to_exceed_some_spawn_limit() {
2118        match cmd.command().stdout(Stdio::piped()).stderr(Stdio::piped()).spawn() {
2119            Ok(child) => {
2120                let output = child.wait_with_output();
2121                flush_linked_file(&output, out_filename)?;
2122                return output;
2123            }
2124            Err(ref e) if command_line_too_big(e) => {
2125                {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:2125",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(2125u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("command line to linker was too big: {0}",
                                                    e) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("command line to linker was too big: {}", e);
2126            }
2127            Err(e) => return Err(e),
2128        }
2129    }
2130
2131    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:2131",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(2131u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("falling back to passing arguments to linker via an @-file")
                                            as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("falling back to passing arguments to linker via an @-file");
2132    let mut cmd2 = cmd.clone();
2133    let mut args = String::new();
2134    for arg in cmd2.take_args() {
2135        args.push_str(
2136            &Escape {
2137                arg: arg.to_str().unwrap(),
2138                // Windows-style escaping for @-files is used by
2139                // - all linkers targeting MSVC-like targets, including LLD
2140                // - all LLD flavors running on Windows hosts
2141                // С/С++ compilers use Posix-style escaping (except clang-cl, which we do not use).
2142                is_like_msvc: sess.target.is_like_msvc
2143                    || (falsecfg!(windows) && flavor.uses_lld() && !flavor.uses_cc()),
2144            }
2145            .to_string(),
2146        );
2147        args.push('\n');
2148    }
2149    let file = tmpdir.join("linker-arguments");
2150    let bytes = if sess.target.is_like_msvc {
2151        let mut out = Vec::with_capacity((1 + args.len()) * 2);
2152        // start the stream with a UTF-16 BOM
2153        for c in std::iter::once(0xFEFF).chain(args.encode_utf16()) {
2154            // encode in little endian
2155            out.push(c as u8);
2156            out.push((c >> 8) as u8);
2157        }
2158        out
2159    } else {
2160        args.into_bytes()
2161    };
2162    fs::write(&file, &bytes)?;
2163    cmd2.arg(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("@{0}", file.display()))
    })format!("@{}", file.display()));
2164    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:2164",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(2164u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("invoking linker {0:?}",
                                                    cmd2) as &dyn ::tracing::field::Value))])
            });
    } else { ; }
};info!("invoking linker {:?}", cmd2);
2165    let output = cmd2.output();
2166    flush_linked_file(&output, out_filename)?;
2167    return output;
2168
2169    #[cfg(not(windows))]
2170    fn flush_linked_file(_: &io::Result<Output>, _: &Path) -> io::Result<()> {
2171        Ok(())
2172    }
2173
2174    #[cfg(windows)]
2175    fn flush_linked_file(
2176        command_output: &io::Result<Output>,
2177        out_filename: &Path,
2178    ) -> io::Result<()> {
2179        // On Windows, under high I/O load, output buffers are sometimes not flushed,
2180        // even long after process exit, causing nasty, non-reproducible output bugs.
2181        //
2182        // File::sync_all() calls FlushFileBuffers() down the line, which solves the problem.
2183        //
2184        // А full writeup of the original Chrome bug can be found at
2185        // randomascii.wordpress.com/2018/02/25/compiler-bug-linker-bug-windows-kernel-bug/amp
2186
2187        if let &Ok(ref out) = command_output {
2188            if out.status.success() {
2189                if let Ok(of) = fs::OpenOptions::new().write(true).open(out_filename) {
2190                    of.sync_all()?;
2191                }
2192            }
2193        }
2194
2195        Ok(())
2196    }
2197
2198    #[cfg(unix)]
2199    fn command_line_too_big(err: &io::Error) -> bool {
2200        err.raw_os_error() == Some(::libc::E2BIG)
2201    }
2202
2203    #[cfg(windows)]
2204    fn command_line_too_big(err: &io::Error) -> bool {
2205        const ERROR_FILENAME_EXCED_RANGE: i32 = 206;
2206        err.raw_os_error() == Some(ERROR_FILENAME_EXCED_RANGE)
2207    }
2208
2209    #[cfg(not(any(unix, windows)))]
2210    fn command_line_too_big(_: &io::Error) -> bool {
2211        false
2212    }
2213
2214    struct Escape<'a> {
2215        arg: &'a str,
2216        is_like_msvc: bool,
2217    }
2218
2219    impl<'a> fmt::Display for Escape<'a> {
2220        fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2221            if self.is_like_msvc {
2222                // This is "documented" at
2223                // https://docs.microsoft.com/en-us/cpp/build/reference/at-specify-a-linker-response-file
2224                //
2225                // Unfortunately there's not a great specification of the
2226                // syntax I could find online (at least) but some local
2227                // testing showed that this seemed sufficient-ish to catch
2228                // at least a few edge cases.
2229                f.write_fmt(format_args!("\""))write!(f, "\"")?;
2230                for c in self.arg.chars() {
2231                    match c {
2232                        '"' => f.write_fmt(format_args!("\\{0}", c))write!(f, "\\{c}")?,
2233                        c => f.write_fmt(format_args!("{0}", c))write!(f, "{c}")?,
2234                    }
2235                }
2236                f.write_fmt(format_args!("\""))write!(f, "\"")?;
2237            } else {
2238                // This is documented at https://linux.die.net/man/1/ld, namely:
2239                //
2240                // > Options in file are separated by whitespace. A whitespace
2241                // > character may be included in an option by surrounding the
2242                // > entire option in either single or double quotes. Any
2243                // > character (including a backslash) may be included by
2244                // > prefixing the character to be included with a backslash.
2245                //
2246                // We put an argument on each line, so all we need to do is
2247                // ensure the line is interpreted as one whole argument.
2248                for c in self.arg.chars() {
2249                    match c {
2250                        '\\' | ' ' => f.write_fmt(format_args!("\\{0}", c))write!(f, "\\{c}")?,
2251                        c => f.write_fmt(format_args!("{0}", c))write!(f, "{c}")?,
2252                    }
2253                }
2254            }
2255            Ok(())
2256        }
2257    }
2258}
2259
2260fn link_output_kind(sess: &Session, crate_type: CrateType) -> LinkOutputKind {
2261    let kind = match (crate_type, sess.crt_static(Some(crate_type)), sess.relocation_model()) {
2262        (CrateType::Executable, _, _) if sess.is_wasi_reactor() => LinkOutputKind::WasiReactorExe,
2263        (CrateType::Executable, false, RelocModel::Pic | RelocModel::Pie) => {
2264            LinkOutputKind::DynamicPicExe
2265        }
2266        (CrateType::Executable, false, _) => LinkOutputKind::DynamicNoPicExe,
2267        (CrateType::Executable, true, RelocModel::Pic | RelocModel::Pie) => {
2268            LinkOutputKind::StaticPicExe
2269        }
2270        (CrateType::Executable, true, _) => LinkOutputKind::StaticNoPicExe,
2271        (_, true, _) => LinkOutputKind::StaticDylib,
2272        (_, false, _) => LinkOutputKind::DynamicDylib,
2273    };
2274
2275    // Adjust the output kind to target capabilities.
2276    let opts = &sess.target;
2277    let pic_exe_supported = opts.position_independent_executables;
2278    let static_pic_exe_supported = opts.static_position_independent_executables;
2279    let static_dylib_supported = opts.crt_static_allows_dylibs;
2280    match kind {
2281        LinkOutputKind::DynamicPicExe if !pic_exe_supported => LinkOutputKind::DynamicNoPicExe,
2282        LinkOutputKind::StaticPicExe if !static_pic_exe_supported => LinkOutputKind::StaticNoPicExe,
2283        LinkOutputKind::StaticDylib if !static_dylib_supported => LinkOutputKind::DynamicDylib,
2284        _ => kind,
2285    }
2286}
2287
2288// Returns true if linker is located within sysroot
2289fn detect_self_contained_mingw(sess: &Session, linker: &Path) -> bool {
2290    let linker_with_extension = if falsecfg!(windows) && linker.extension().is_none() {
2291        linker.with_extension("exe")
2292    } else {
2293        linker.to_path_buf()
2294    };
2295    for dir in env::split_paths(&env::var_os("PATH").unwrap_or_default()) {
2296        let full_path = dir.join(&linker_with_extension);
2297        // If linker comes from sysroot assume self-contained mode
2298        if full_path.is_file() && !full_path.starts_with(sess.opts.sysroot.path()) {
2299            return false;
2300        }
2301    }
2302    true
2303}
2304
2305/// Various toolchain components used during linking are used from rustc distribution
2306/// instead of being found somewhere on the host system.
2307/// We only provide such support for a very limited number of targets.
2308fn self_contained_components(
2309    sess: &Session,
2310    crate_type: CrateType,
2311    linker: &Path,
2312) -> LinkSelfContainedComponents {
2313    // Turn the backwards compatible bool values for `self_contained` into fully inferred
2314    // `LinkSelfContainedComponents`.
2315    let self_contained =
2316        if let Some(self_contained) = sess.opts.cg.link_self_contained.explicitly_set {
2317            // Emit an error if the user requested self-contained mode on the CLI but the target
2318            // explicitly refuses it.
2319            if sess.target.link_self_contained.is_disabled() {
2320                sess.dcx().emit_err(diagnostics::UnsupportedLinkSelfContained);
2321            }
2322            self_contained
2323        } else {
2324            match sess.target.link_self_contained {
2325                LinkSelfContainedDefault::False => false,
2326                LinkSelfContainedDefault::True => true,
2327
2328                LinkSelfContainedDefault::WithComponents(components) => {
2329                    // For target specs with explicitly enabled components, we can return them
2330                    // directly.
2331                    return components;
2332                }
2333
2334                // FIXME: Find a better heuristic for "native musl toolchain is available",
2335                // based on host and linker path, for example.
2336                // (https://github.com/rust-lang/rust/pull/71769#issuecomment-626330237).
2337                LinkSelfContainedDefault::InferredForMusl => sess.crt_static(Some(crate_type)),
2338                LinkSelfContainedDefault::InferredForMingw => {
2339                    sess.host == sess.target
2340                        && sess.target.cfg_abi != CfgAbi::Uwp
2341                        && detect_self_contained_mingw(sess, linker)
2342                }
2343            }
2344        };
2345    if self_contained {
2346        LinkSelfContainedComponents::all()
2347    } else {
2348        LinkSelfContainedComponents::empty()
2349    }
2350}
2351
2352/// Add pre-link object files defined by the target spec.
2353fn add_pre_link_objects(
2354    cmd: &mut dyn Linker,
2355    sess: &Session,
2356    flavor: LinkerFlavor,
2357    link_output_kind: LinkOutputKind,
2358    self_contained: bool,
2359) {
2360    // FIXME: we are currently missing some infra here (per-linker-flavor CRT objects),
2361    // so Fuchsia has to be special-cased.
2362    let opts = &sess.target;
2363    let empty = Default::default();
2364    let objects = if self_contained {
2365        &opts.pre_link_objects_self_contained
2366    } else if !(sess.target.os == Os::Fuchsia && #[allow(non_exhaustive_omitted_patterns)] match flavor {
    LinkerFlavor::Gnu(Cc::Yes, _) => true,
    _ => false,
}matches!(flavor, LinkerFlavor::Gnu(Cc::Yes, _))) {
2367        &opts.pre_link_objects
2368    } else {
2369        &empty
2370    };
2371    for obj in objects.get(&link_output_kind).into_flat_iter() {
2372        cmd.add_object(&get_object_file_path(sess, obj, self_contained));
2373    }
2374}
2375
2376/// Add post-link object files defined by the target spec.
2377fn add_post_link_objects(
2378    cmd: &mut dyn Linker,
2379    sess: &Session,
2380    link_output_kind: LinkOutputKind,
2381    self_contained: bool,
2382) {
2383    let objects = if self_contained {
2384        &sess.target.post_link_objects_self_contained
2385    } else {
2386        &sess.target.post_link_objects
2387    };
2388    for obj in objects.get(&link_output_kind).into_flat_iter() {
2389        cmd.add_object(&get_object_file_path(sess, obj, self_contained));
2390    }
2391}
2392
2393/// Add arbitrary "pre-link" args defined by the target spec or from command line.
2394/// FIXME: Determine where exactly these args need to be inserted.
2395fn add_pre_link_args(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) {
2396    if let Some(args) = sess.target.pre_link_args.get(&flavor) {
2397        cmd.verbatim_args(args.iter().map(Deref::deref));
2398    }
2399
2400    cmd.verbatim_args(&sess.opts.unstable_opts.pre_link_args);
2401}
2402
2403/// Add a link script embedded in the target, if applicable.
2404fn add_link_script(cmd: &mut dyn Linker, sess: &Session, tmpdir: &Path, crate_type: CrateType) {
2405    match (crate_type, &sess.target.link_script) {
2406        (CrateType::Cdylib | CrateType::Executable, Some(script)) => {
2407            if !sess.target.linker_flavor.is_gnu() {
2408                sess.dcx().emit_fatal(diagnostics::LinkScriptUnavailable);
2409            }
2410
2411            let file_name = ["rustc", &sess.target.llvm_target, "linkfile.ld"].join("-");
2412
2413            let path = tmpdir.join(file_name);
2414            if let Err(error) = fs::write(&path, script.as_ref()) {
2415                sess.dcx().emit_fatal(diagnostics::LinkScriptWriteFailure { path, error });
2416            }
2417
2418            cmd.link_arg("--script").link_arg(path);
2419        }
2420        _ => {}
2421    }
2422}
2423
2424/// Add arbitrary "user defined" args defined from command line.
2425/// FIXME: Determine where exactly these args need to be inserted.
2426fn add_user_defined_link_args(cmd: &mut dyn Linker, sess: &Session) {
2427    cmd.verbatim_args(&sess.opts.cg.link_args);
2428}
2429
2430/// Add arbitrary "late link" args defined by the target spec.
2431/// FIXME: Determine where exactly these args need to be inserted.
2432fn add_late_link_args(
2433    cmd: &mut dyn Linker,
2434    sess: &Session,
2435    flavor: LinkerFlavor,
2436    crate_type: CrateType,
2437    crate_info: &CrateInfo,
2438) {
2439    let any_dynamic_crate = crate_type == CrateType::Dylib
2440        || crate_type == CrateType::Sdylib
2441        || crate_info.dependency_formats.iter().any(|(ty, list)| {
2442            *ty == crate_type && list.iter().any(|&linkage| linkage == Linkage::Dynamic)
2443        });
2444    if any_dynamic_crate {
2445        if let Some(args) = sess.target.late_link_args_dynamic.get(&flavor) {
2446            cmd.verbatim_args(args.iter().map(Deref::deref));
2447        }
2448    } else if let Some(args) = sess.target.late_link_args_static.get(&flavor) {
2449        cmd.verbatim_args(args.iter().map(Deref::deref));
2450    }
2451    if let Some(args) = sess.target.late_link_args.get(&flavor) {
2452        cmd.verbatim_args(args.iter().map(Deref::deref));
2453    }
2454}
2455
2456/// Add arbitrary "post-link" args defined by the target spec.
2457/// FIXME: Determine where exactly these args need to be inserted.
2458fn add_post_link_args(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) {
2459    if let Some(args) = sess.target.post_link_args.get(&flavor) {
2460        cmd.verbatim_args(args.iter().map(Deref::deref));
2461    }
2462}
2463
2464/// Add a synthetic object file that contains reference to all symbols that we want to expose to
2465/// the linker.
2466///
2467/// Background: we implement rlibs as static library (archives). Linkers treat archives
2468/// differently from object files: all object files participate in linking, while archives will
2469/// only participate in linking if they can satisfy at least one undefined reference (version
2470/// scripts doesn't count). This causes `#[no_mangle]` or `#[used]` items to be ignored by the
2471/// linker, and since they never participate in the linking, using `KEEP` in the linker scripts
2472/// can't keep them either. This causes #47384.
2473///
2474/// To keep them around, we could use `--whole-archive`, `-force_load` and equivalents to force rlib
2475/// to participate in linking like object files, but this proves to be expensive (#93791). Therefore
2476/// we instead just introduce an undefined reference to them. This could be done by `-u` command
2477/// line option to the linker or `EXTERN(...)` in linker scripts, however they does not only
2478/// introduce an undefined reference, but also make them the GC roots, preventing `--gc-sections`
2479/// from removing them, and this is especially problematic for embedded programming where every
2480/// byte counts.
2481///
2482/// This method creates a synthetic object file, which contains undefined references to all symbols
2483/// that are necessary for the linking. They are only present in symbol table but not actually
2484/// used in any sections, so the linker will therefore pick relevant rlibs for linking, but
2485/// unused `#[no_mangle]` or `#[used(compiler)]` can still be discard by GC sections.
2486///
2487/// There's a few internal crates in the standard library (aka libcore and
2488/// libstd) which actually have a circular dependence upon one another. This
2489/// currently arises through "weak lang items" where libcore requires things
2490/// like `rust_begin_unwind` but libstd ends up defining it. To get this
2491/// circular dependence to work correctly we declare some of these things
2492/// in this synthetic object.
2493fn add_linked_symbol_object(
2494    cmd: &mut dyn Linker,
2495    sess: &Session,
2496    tmpdir: &Path,
2497    crate_type: CrateType,
2498    linked_symbols: &[(String, SymbolExportKind)],
2499    exported_symbols: &[SymbolExport],
2500) {
2501    let should_export_symbols = sess.target.is_like_msvc
2502        && !exported_symbols.is_empty()
2503        && (crate_type != CrateType::Executable
2504            || sess.opts.unstable_opts.export_executable_symbols);
2505    if linked_symbols.is_empty() && !should_export_symbols {
2506        return;
2507    }
2508
2509    let Some(mut file) = super::metadata::create_object_file(sess) else {
2510        return;
2511    };
2512
2513    if file.format() == object::BinaryFormat::Coff {
2514        // NOTE(nbdd0121): MSVC will hang if the input object file contains no sections,
2515        // so add an empty section.
2516        file.add_section(Vec::new(), ".text".into(), object::SectionKind::Text);
2517
2518        // We handle the name decoration of COFF targets in `symbol_export.rs`, so disable the
2519        // default mangler in `object` crate.
2520        file.set_mangling(object::write::Mangling::None);
2521    }
2522
2523    if file.format() == object::BinaryFormat::MachO {
2524        // Divide up the sections into sub-sections via symbols for dead code stripping.
2525        // Without this flag, unused `#[no_mangle]` or `#[used(compiler)]` cannot be
2526        // discard on MachO targets.
2527        file.set_subsections_via_symbols();
2528    }
2529
2530    // ld64 requires a relocation to load undefined symbols, see below.
2531    // Not strictly needed if linking with lld, but might as well do it there too.
2532    let ld64_section_helper = if file.format() == object::BinaryFormat::MachO {
2533        Some(file.add_section(
2534            file.segment_name(object::write::StandardSegment::Data).to_vec(),
2535            "__data".into(),
2536            object::SectionKind::Data,
2537        ))
2538    } else {
2539        None
2540    };
2541
2542    for (sym, kind) in linked_symbols.iter() {
2543        let symbol = file.add_symbol(object::write::Symbol {
2544            name: sym.clone().into(),
2545            value: 0,
2546            size: 0,
2547            kind: match kind {
2548                SymbolExportKind::Text => object::SymbolKind::Text,
2549                SymbolExportKind::Data => object::SymbolKind::Data,
2550                SymbolExportKind::Tls => object::SymbolKind::Tls,
2551            },
2552            scope: object::SymbolScope::Unknown,
2553            weak: false,
2554            section: object::write::SymbolSection::Undefined,
2555            flags: object::SymbolFlags::None,
2556        });
2557
2558        // The linker shipped with Apple's Xcode, ld64, works a bit differently from other linkers.
2559        //
2560        // Code-wise, the relevant parts of ld64 are roughly:
2561        // 1. Find the `ArchiveLoadMode` based on commandline options, default to `parseObjects`.
2562        //    https://github.com/apple-oss-distributions/ld64/blob/ld64-954.16/src/ld/Options.cpp#L924-L932
2563        //    https://github.com/apple-oss-distributions/ld64/blob/ld64-954.16/src/ld/Options.h#L55
2564        //
2565        // 2. Read the archive table of contents (__.SYMDEF file).
2566        //    https://github.com/apple-oss-distributions/ld64/blob/ld64-954.16/src/ld/parsers/archive_file.cpp#L294-L325
2567        //
2568        // 3. Begin linking by loading "atoms" from input files.
2569        //    https://github.com/apple-oss-distributions/ld64/blob/ld64-954.16/doc/design/linker.html
2570        //    https://github.com/apple-oss-distributions/ld64/blob/ld64-954.16/src/ld/InputFiles.cpp#L1349
2571        //
2572        //   a. Directly specified object files (`.o`) are parsed immediately.
2573        //      https://github.com/apple-oss-distributions/ld64/blob/ld64-954.16/src/ld/parsers/macho_relocatable_file.cpp#L4611-L4627
2574        //
2575        //     - Undefined symbols are not atoms (`n_value > 0` denotes a common symbol).
2576        //       https://github.com/apple-oss-distributions/ld64/blob/ld64-954.16/src/ld/parsers/macho_relocatable_file.cpp#L2455-L2468
2577        //       https://maskray.me/blog/2022-02-06-all-about-common-symbols
2578        //
2579        //     - Relocations/fixups are atoms.
2580        //       https://github.com/apple-oss-distributions/ld64/blob/ce6341ae966b3451aa54eeb049f2be865afbd578/src/ld/parsers/macho_relocatable_file.cpp#L2088-L2114
2581        //
2582        //   b. Archives are not parsed yet.
2583        //      https://github.com/apple-oss-distributions/ld64/blob/ld64-954.16/src/ld/parsers/archive_file.cpp#L467-L577
2584        //
2585        // 4. When a symbol is needed by an atom, parse the object file that contains the symbol.
2586        //    https://github.com/apple-oss-distributions/ld64/blob/ld64-954.16/src/ld/InputFiles.cpp#L1417-L1491
2587        //    https://github.com/apple-oss-distributions/ld64/blob/ld64-954.16/src/ld/parsers/archive_file.cpp#L579-L597
2588        //
2589        // All of the steps above are fairly similar to other linkers, except that **it completely
2590        // ignores undefined symbols**.
2591        //
2592        // So to make this trick work on ld64, we need to do something else to load the relevant
2593        // object files. We do this by inserting a relocation (fixup) for each symbol.
2594        if let Some(section) = ld64_section_helper {
2595            apple::add_data_and_relocation(&mut file, section, symbol, &sess.target, *kind)
2596                .expect("failed adding relocation");
2597        }
2598    }
2599
2600    if should_export_symbols {
2601        // Currently the compiler doesn't use `dllexport` (an LLVM attribute) to
2602        // export symbols from a dynamic library. When building a dynamic library,
2603        // however, we're going to want some symbols exported, so this adds a
2604        // `.drectve` section which lists all the symbols using /EXPORT arguments.
2605        //
2606        // The linker will read these arguments from the `.drectve` section and
2607        // export all the symbols from the dynamic library. Note that this is not
2608        // as simple as just exporting all the symbols in the current crate (as
2609        // specified by `codegen.reachable`) but rather we also need to possibly
2610        // export the symbols of upstream crates. Upstream rlibs may be linked
2611        // statically to this dynamic library, in which case they may continue to
2612        // transitively be used and hence need their symbols exported.
2613        fn msvc_drectve_export(symbol: &SymbolExport) -> String {
2614            let data = if symbol.kind == SymbolExportKind::Data { ",DATA" } else { "" };
2615
2616            if let Some(link_name) = symbol.link_name.as_deref() {
2617                // The first name is the decorated symbol used by the import library, while
2618                // EXPORTAS gives the public name written to the DLL export table.
2619                ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!(" /EXPORT:\"{1}\"{2},EXPORTAS,\"{0}\"",
                symbol.name, link_name, data))
    })format!(" /EXPORT:\"{link_name}\"{data},EXPORTAS,\"{}\"", symbol.name)
2620            } else {
2621                ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!(" /EXPORT:\"{0}\"{1}", symbol.name,
                data))
    })format!(" /EXPORT:\"{}\"{data}", symbol.name)
2622            }
2623        }
2624
2625        let drectve = exported_symbols.iter().map(msvc_drectve_export).collect::<String>();
2626
2627        let section = file.add_section(::alloc::vec::Vec::new()vec![], b".drectve".to_vec(), object::SectionKind::Linker);
2628        file.append_section_data(section, drectve.as_bytes(), 1);
2629    }
2630
2631    let path = tmpdir.join("symbols.o");
2632    let result = std::fs::write(&path, file.write().unwrap());
2633    if let Err(error) = result {
2634        sess.dcx().emit_fatal(diagnostics::FailedToWrite { path, error });
2635    }
2636    cmd.add_object(&path);
2637}
2638
2639/// Add object files containing code from the current crate.
2640fn add_local_crate_regular_objects(cmd: &mut dyn Linker, compiled_modules: &CompiledModules) {
2641    for m in &compiled_modules.modules {
2642        if let Some(obj) = &m.object {
2643            cmd.add_object(obj);
2644        }
2645        if let Some(obj) = &m.global_asm_object {
2646            cmd.add_object(obj);
2647        }
2648    }
2649}
2650
2651/// Add object files for allocator code linked once for the whole crate tree.
2652fn add_local_crate_allocator_objects(
2653    cmd: &mut dyn Linker,
2654    compiled_modules: &CompiledModules,
2655    crate_info: &CrateInfo,
2656    crate_type: CrateType,
2657) {
2658    if needs_allocator_shim_for_linking(&crate_info.dependency_formats, crate_type)
2659        && let Some(m) = &compiled_modules.allocator_module
2660    {
2661        if let Some(obj) = &m.object {
2662            cmd.add_object(obj);
2663        }
2664        if let Some(obj) = &m.global_asm_object {
2665            cmd.add_object(obj);
2666        }
2667    }
2668}
2669
2670/// Add object files containing metadata for the current crate.
2671fn add_local_crate_metadata_objects(
2672    cmd: &mut dyn Linker,
2673    sess: &Session,
2674    archive_builder_builder: &dyn ArchiveBuilderBuilder,
2675    crate_type: CrateType,
2676    tmpdir: &Path,
2677    crate_info: &CrateInfo,
2678    metadata: &EncodedMetadata,
2679) {
2680    // When linking a dynamic library, we put the metadata into a section of the
2681    // executable. This metadata is in a separate object file from the main
2682    // object file, so we create and link it in here.
2683    if #[allow(non_exhaustive_omitted_patterns)] match crate_type {
    CrateType::Dylib | CrateType::ProcMacro => true,
    _ => false,
}matches!(crate_type, CrateType::Dylib | CrateType::ProcMacro) {
2684        let data = archive_builder_builder.create_dylib_metadata_wrapper(
2685            sess,
2686            &metadata,
2687            &crate_info.metadata_symbol,
2688        );
2689        let obj = emit_wrapper_file(sess, &data, tmpdir, "rmeta.o");
2690
2691        cmd.add_object(&obj);
2692    }
2693}
2694
2695/// Add sysroot and other globally set directories to the directory search list.
2696fn add_library_search_dirs(
2697    cmd: &mut dyn Linker,
2698    sess: &Session,
2699    self_contained_components: LinkSelfContainedComponents,
2700    apple_sdk_root: Option<&Path>,
2701) {
2702    if !sess.opts.unstable_opts.link_native_libraries {
2703        return;
2704    }
2705
2706    let fallback = Some(NativeLibSearchFallback { self_contained_components, apple_sdk_root });
2707    let _ = walk_native_lib_search_dirs(sess, fallback, |dir, is_framework| {
2708        if is_framework {
2709            cmd.framework_path(dir);
2710        } else {
2711            cmd.include_path(&fix_windows_verbatim_for_gcc(dir));
2712        }
2713        ControlFlow::<()>::Continue(())
2714    });
2715}
2716
2717/// Add options making relocation sections in the produced ELF files read-only
2718/// and suppressing lazy binding.
2719fn add_relro_args(cmd: &mut dyn Linker, sess: &Session) {
2720    match sess.opts.cg.relro_level.unwrap_or(sess.target.relro_level) {
2721        RelroLevel::Full => cmd.full_relro(),
2722        RelroLevel::Partial => cmd.partial_relro(),
2723        RelroLevel::Off => cmd.no_relro(),
2724        RelroLevel::None => {}
2725    }
2726}
2727
2728/// Add library search paths used at runtime by dynamic linkers.
2729fn add_rpath_args(
2730    cmd: &mut dyn Linker,
2731    sess: &Session,
2732    crate_info: &CrateInfo,
2733    out_filename: &Path,
2734) {
2735    if !sess.target.has_rpath {
2736        return;
2737    }
2738
2739    // FIXME (#2397): At some point we want to rpath our guesses as to
2740    // where extern libraries might live, based on the
2741    // add_lib_search_paths
2742    if sess.opts.cg.rpath {
2743        let libs = crate_info
2744            .used_crates
2745            .iter()
2746            .filter_map(|cnum| crate_info.used_crate_source[cnum].dylib.as_deref())
2747            .collect::<Vec<_>>();
2748        let rpath_config = RPathConfig {
2749            libs: &*libs,
2750            out_filename: out_filename.to_path_buf(),
2751            is_like_darwin: sess.target.is_like_darwin,
2752            linker_is_gnu: sess.target.linker_flavor.is_gnu(),
2753        };
2754        cmd.link_args(&rpath::get_rpath_linker_args(&rpath_config));
2755    }
2756}
2757
2758fn strip_numeric_suffix<'a>(base: &'a str, suffix: impl AsRef<str>, fallback: &'a str) -> &'a str {
2759    if suffix.as_ref().parse::<u32>().is_ok() { base } else { fallback }
2760}
2761
2762fn undecorate_c_symbol<'a>(
2763    name: &'a str,
2764    sess: &Session,
2765    kind: SymbolExportKind,
2766) -> Option<&'a str> {
2767    match sess.target.binary_format {
2768        BinaryFormat::MachO => {
2769            // Mach-O: strip the leading underscore that all external symbols have.
2770            // The Darwin linker's export_symbols will add it back.
2771            name.strip_prefix('_')
2772        }
2773        BinaryFormat::Coff => {
2774            // MSVC C++ mangled names start with '?' and use a completely different
2775            // decorating scheme that includes '@@' as structural delimiters.
2776            // They must not be subjected to C calling-convention undecoration.
2777            if name.starts_with('?') {
2778                return Some(name);
2779            }
2780            Some(match sess.target.arch {
2781                Arch::X86 => {
2782                    // COFF 32-bit: strip calling-convention decorations.
2783                    if let Some(rest) = name.strip_prefix('@') {
2784                        // fastcall: @foo@N -> foo
2785                        rest.rsplit_once('@')
2786                            .map(|(base, suffix)| strip_numeric_suffix(base, suffix, name))
2787                            .unwrap_or(name)
2788                    } else if let Some(stripped) = name.strip_prefix('_') {
2789                        if let Some((base, suffix)) = stripped.rsplit_once('@') {
2790                            // stdcall: _foo@N -> foo
2791                            strip_numeric_suffix(base, suffix, stripped)
2792                        } else {
2793                            // cdecl: _foo -> foo
2794                            stripped
2795                        }
2796                    } else {
2797                        // vectorcall: foo@@N -> foo
2798                        name.rsplit_once("@@")
2799                            .map(|(base, suffix)| strip_numeric_suffix(base, suffix, name))
2800                            .unwrap_or(name)
2801                    }
2802                }
2803                Arch::X86_64 => {
2804                    // COFF 64-bit: vectorcall mangling (foo@@N -> foo) also applies on x86_64.
2805                    name.rsplit_once("@@")
2806                        .map(|(base, suffix)| strip_numeric_suffix(base, suffix, name))
2807                        .unwrap_or(name)
2808                }
2809                Arch::Arm64EC if kind == SymbolExportKind::Text => {
2810                    // Arm64EC: `#` prefix distinguishes ARM64EC text symbols from x64 thunks.
2811                    name.strip_prefix('#').unwrap_or(name)
2812                }
2813                _ => name,
2814            })
2815        }
2816        // ELF: no decoration
2817        _ => Some(name),
2818    }
2819}
2820
2821fn add_c_staticlib_symbols(
2822    sess: &Session,
2823    lib: &NativeLib,
2824    out: &mut Vec<SymbolExport>,
2825) -> io::Result<()> {
2826    let file_path = find_native_static_library(lib.name.as_str(), lib.verbatim, sess);
2827
2828    let archive_map = unsafe { Mmap::map(File::open(&file_path)?)? };
2829
2830    let archive = object::read::archive::ArchiveFile::parse(&*archive_map)
2831        .map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
2832
2833    for member in archive.members() {
2834        let member = member.map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
2835
2836        let data = member
2837            .data(&*archive_map)
2838            .map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
2839
2840        // clang LTO: raw LLVM bitcode
2841        if data.starts_with(b"BC\xc0\xde") {
2842            return Err(io::Error::new(
2843                io::ErrorKind::InvalidData,
2844                "LLVM bitcode object in C static library (LTO not supported)",
2845            ));
2846        }
2847
2848        let object = object::File::parse(&*data)
2849            .map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
2850
2851        // gcc / clang ELF / Mach-O LTO
2852        if object.sections().any(|s| {
2853            s.name().map(|n| n.starts_with(".gnu.lto_") || n == ".llvm.lto").unwrap_or(false)
2854        }) {
2855            return Err(io::Error::new(
2856                io::ErrorKind::InvalidData,
2857                "LTO object in C static library is not supported",
2858            ));
2859        }
2860
2861        for symbol in object.symbols() {
2862            // The `object` crate returns `Dynamic` for ELF/Mach-O global symbols,
2863            // but always returns `Linkage` for COFF external symbols.
2864            // Accept both for COFF (Windows and UEFI).
2865            let scope = symbol.scope();
2866            if scope != object::SymbolScope::Dynamic
2867                && !(sess.target.binary_format == BinaryFormat::Coff
2868                    && scope == object::SymbolScope::Linkage)
2869            {
2870                continue;
2871            }
2872
2873            let name = match symbol.name() {
2874                Ok(n) => n,
2875                Err(_) => continue,
2876            };
2877
2878            let export_kind = match symbol.kind() {
2879                object::SymbolKind::Text => SymbolExportKind::Text,
2880                object::SymbolKind::Data => SymbolExportKind::Data,
2881                _ => continue,
2882            };
2883
2884            let Some(undecorated) = undecorate_c_symbol(name, sess, export_kind) else {
2885                continue;
2886            };
2887            out.push(SymbolExport::with_link_name(
2888                undecorated.to_string(),
2889                export_kind,
2890                name.to_string(),
2891            ));
2892        }
2893    }
2894
2895    Ok(())
2896}
2897
2898/// Produce the linker command line containing linker path and arguments.
2899///
2900/// When comments in the function say "order-(in)dependent" they mean order-dependence between
2901/// options and libraries/object files. For example `--whole-archive` (order-dependent) applies
2902/// to specific libraries passed after it, and `-o` (output file, order-independent) applies
2903/// to the linking process as a whole.
2904/// Order-independent options may still override each other in order-dependent fashion,
2905/// e.g `--foo=yes --foo=no` may be equivalent to `--foo=no`.
2906fn linker_with_args(
2907    path: &Path,
2908    flavor: LinkerFlavor,
2909    sess: &Session,
2910    archive_builder_builder: &dyn ArchiveBuilderBuilder,
2911    rmeta_link_cache: &mut RmetaLinkCache,
2912    crate_type: CrateType,
2913    tmpdir: &Path,
2914    out_filename: &Path,
2915    compiled_modules: &CompiledModules,
2916    crate_info: &CrateInfo,
2917    metadata: &EncodedMetadata,
2918    self_contained_components: LinkSelfContainedComponents,
2919    codegen_backend: &'static str,
2920) -> (Command, Vec<jobserver::Acquired>) {
2921    let self_contained_crt_objects = self_contained_components.is_crt_objects_enabled();
2922    let cmd = &mut *super::linker::get_linker(
2923        sess,
2924        path,
2925        flavor,
2926        self_contained_components.are_any_components_enabled(),
2927        &crate_info.target_cpu,
2928        codegen_backend,
2929    );
2930    let link_output_kind = link_output_kind(sess, crate_type);
2931
2932    let mut export_symbols = crate_info.exported_symbols[&crate_type].clone();
2933
2934    if crate_type == CrateType::Cdylib {
2935        let mut seen = FxHashSet::default();
2936
2937        for lib in &crate_info.used_libraries {
2938            if let NativeLibKind::Static { export_symbols: Some(true), .. } = lib.kind
2939                && seen.insert((lib.name, lib.verbatim))
2940            {
2941                if let Err(err) = add_c_staticlib_symbols(&sess, lib, &mut export_symbols) {
2942                    sess.dcx().fatal(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("failed to process C static library `{0}`: {1}",
                lib.name, err))
    })format!(
2943                        "failed to process C static library `{}`: {}",
2944                        lib.name, err
2945                    ));
2946                }
2947            }
2948        }
2949    }
2950
2951    // ------------ Early order-dependent options ------------
2952
2953    // If we're building something like a dynamic library then some platforms
2954    // need to make sure that all symbols are exported correctly from the
2955    // dynamic library.
2956    // Must be passed before any libraries to prevent the symbols to export from being thrown away,
2957    // at least on some platforms (e.g. windows-gnu).
2958    cmd.export_symbols(tmpdir, crate_type, &export_symbols);
2959
2960    // Can be used for adding custom CRT objects or overriding order-dependent options above.
2961    // FIXME: In practice built-in target specs use this for arbitrary order-independent options,
2962    // introduce a target spec option for order-independent linker options and migrate built-in
2963    // specs to it.
2964    add_pre_link_args(cmd, sess, flavor);
2965
2966    // ------------ Object code and libraries, order-dependent ------------
2967
2968    // Pre-link CRT objects.
2969    add_pre_link_objects(cmd, sess, flavor, link_output_kind, self_contained_crt_objects);
2970
2971    add_linked_symbol_object(
2972        cmd,
2973        sess,
2974        tmpdir,
2975        crate_type,
2976        &crate_info.linked_symbols[&crate_type],
2977        &export_symbols,
2978    );
2979
2980    // Sanitizer libraries.
2981    add_sanitizer_libraries(sess, flavor, crate_type, cmd);
2982
2983    // Object code from the current crate.
2984    // Take careful note of the ordering of the arguments we pass to the linker
2985    // here. Linkers will assume that things on the left depend on things to the
2986    // right. Things on the right cannot depend on things on the left. This is
2987    // all formally implemented in terms of resolving symbols (libs on the right
2988    // resolve unknown symbols of libs on the left, but not vice versa).
2989    //
2990    // For this reason, we have organized the arguments we pass to the linker as
2991    // such:
2992    //
2993    // 1. The local object that LLVM just generated
2994    // 2. Local native libraries
2995    // 3. Upstream rust libraries
2996    // 4. Upstream native libraries
2997    //
2998    // The rationale behind this ordering is that those items lower down in the
2999    // list can't depend on items higher up in the list. For example nothing can
3000    // depend on what we just generated (e.g., that'd be a circular dependency).
3001    // Upstream rust libraries are not supposed to depend on our local native
3002    // libraries as that would violate the structure of the DAG, in that
3003    // scenario they are required to link to them as well in a shared fashion.
3004    //
3005    // Note that upstream rust libraries may contain native dependencies as
3006    // well, but they also can't depend on what we just started to add to the
3007    // link line. And finally upstream native libraries can't depend on anything
3008    // in this DAG so far because they can only depend on other native libraries
3009    // and such dependencies are also required to be specified.
3010    add_local_crate_regular_objects(cmd, compiled_modules);
3011    add_local_crate_metadata_objects(
3012        cmd,
3013        sess,
3014        archive_builder_builder,
3015        crate_type,
3016        tmpdir,
3017        crate_info,
3018        metadata,
3019    );
3020    add_local_crate_allocator_objects(cmd, compiled_modules, crate_info, crate_type);
3021
3022    // Avoid linking to dynamic libraries unless they satisfy some undefined symbols
3023    // at the point at which they are specified on the command line.
3024    // Must be passed before any (dynamic) libraries to have effect on them.
3025    // On Solaris-like systems, `-z ignore` acts as both `--as-needed` and `--gc-sections`
3026    // so it will ignore unreferenced ELF sections from relocatable objects.
3027    // For that reason, we put this flag after metadata objects as they would otherwise be removed.
3028    // FIXME: Support more fine-grained dead code removal on Solaris/illumos
3029    // and move this option back to the top.
3030    cmd.add_as_needed();
3031
3032    // Local native libraries of all kinds.
3033    add_local_native_libraries(
3034        cmd,
3035        sess,
3036        archive_builder_builder,
3037        rmeta_link_cache,
3038        crate_info,
3039        tmpdir,
3040        link_output_kind,
3041    );
3042
3043    if sess.opts.unstable_opts.offload.iter().any(|o| #[allow(non_exhaustive_omitted_patterns)] match o {
    config::Offload::Host(_) => true,
    _ => false,
}matches!(o, config::Offload::Host(_))) {
3044        cmd.link_dylib_by_name("omptarget", false, true);
3045        cmd.link_dylib_by_name("omp", false, true);
3046        cmd.link_args(["-z", "nostart-stop-gc"]);
3047        cmd.link_arg("-rpath");
3048        cmd.link_arg(std::path::absolute(&*sess.target_tlib_path.dir).unwrap());
3049    }
3050
3051    // Upstream rust crates and their non-dynamic native libraries.
3052    add_upstream_rust_crates(
3053        cmd,
3054        sess,
3055        archive_builder_builder,
3056        rmeta_link_cache,
3057        crate_info,
3058        crate_type,
3059        tmpdir,
3060        link_output_kind,
3061    );
3062
3063    // Dynamic native libraries from upstream crates.
3064    add_upstream_native_libraries(
3065        cmd,
3066        sess,
3067        archive_builder_builder,
3068        rmeta_link_cache,
3069        crate_info,
3070        tmpdir,
3071        link_output_kind,
3072    );
3073
3074    // Raw-dylibs from all crates.
3075    let raw_dylib_dir = tmpdir.join("raw-dylibs");
3076    if sess.target.binary_format == BinaryFormat::Elf {
3077        // On ELF we can't pass the raw-dylibs stubs to the linker as a path,
3078        // instead we need to pass them via -l. To find the stub, we need to add
3079        // the directory of the stub to the linker search path.
3080        // We make an extra directory for this to avoid polluting the search path.
3081        if let Err(error) = fs::create_dir(&raw_dylib_dir) {
3082            sess.dcx().emit_fatal(diagnostics::CreateTempDir { error })
3083        }
3084        cmd.include_path(&raw_dylib_dir);
3085    }
3086
3087    // Link with the import library generated for any raw-dylib functions.
3088    if sess.target.is_like_windows {
3089        for output_path in raw_dylib::create_raw_dylib_dll_import_libs(
3090            sess,
3091            archive_builder_builder,
3092            crate_info.used_libraries.iter(),
3093            tmpdir,
3094            true,
3095        ) {
3096            cmd.add_object(&output_path);
3097        }
3098    } else {
3099        for (link_path, as_needed) in raw_dylib::create_raw_dylib_elf_stub_shared_objects(
3100            sess,
3101            crate_info.used_libraries.iter(),
3102            &raw_dylib_dir,
3103        ) {
3104            // Always use verbatim linkage, see comments in create_raw_dylib_elf_stub_shared_objects.
3105            cmd.link_dylib_by_name(&link_path, true, as_needed);
3106        }
3107    }
3108    // As with add_upstream_native_libraries, we need to add the upstream raw-dylib symbols in case
3109    // they are used within inlined functions or instantiated generic functions. We do this *after*
3110    // handling the raw-dylib symbols in the current crate to make sure that those are chosen first
3111    // by the linker.
3112    let dependency_linkage = crate_info
3113        .dependency_formats
3114        .get(&crate_type)
3115        .expect("failed to find crate type in dependency format list");
3116
3117    // We sort the libraries below
3118    #[allow(rustc::potential_query_instability)]
3119    let mut native_libraries_from_nonstatics = crate_info
3120        .native_libraries
3121        .iter()
3122        .filter_map(|(&cnum, libraries)| {
3123            if sess.target.is_like_windows {
3124                (dependency_linkage[cnum] != Linkage::Static).then_some(libraries)
3125            } else {
3126                Some(libraries)
3127            }
3128        })
3129        .flatten()
3130        .collect::<Vec<_>>();
3131    native_libraries_from_nonstatics.sort_unstable_by(|a, b| a.name.as_str().cmp(b.name.as_str()));
3132
3133    if sess.target.is_like_windows {
3134        for output_path in raw_dylib::create_raw_dylib_dll_import_libs(
3135            sess,
3136            archive_builder_builder,
3137            native_libraries_from_nonstatics,
3138            tmpdir,
3139            false,
3140        ) {
3141            cmd.add_object(&output_path);
3142        }
3143    } else {
3144        for (link_path, as_needed) in raw_dylib::create_raw_dylib_elf_stub_shared_objects(
3145            sess,
3146            native_libraries_from_nonstatics,
3147            &raw_dylib_dir,
3148        ) {
3149            // Always use verbatim linkage, see comments in create_raw_dylib_elf_stub_shared_objects.
3150            cmd.link_dylib_by_name(&link_path, true, as_needed);
3151        }
3152    }
3153
3154    // Library linking above uses some global state for things like `-Bstatic`/`-Bdynamic` to make
3155    // command line shorter, reset it to default here before adding more libraries.
3156    cmd.reset_per_library_state();
3157
3158    // FIXME: Built-in target specs occasionally use this for linking system libraries,
3159    // eliminate all such uses by migrating them to `#[link]` attributes in `lib(std,c,unwind)`
3160    // and remove the option.
3161    add_late_link_args(cmd, sess, flavor, crate_type, crate_info);
3162
3163    // ------------ Arbitrary order-independent options ------------
3164
3165    // Add order-independent options determined by rustc from its compiler options,
3166    // target properties and source code.
3167    add_order_independent_options(
3168        cmd,
3169        sess,
3170        link_output_kind,
3171        self_contained_components,
3172        flavor,
3173        crate_type,
3174        crate_info,
3175        out_filename,
3176        tmpdir,
3177    );
3178
3179    // Can be used for arbitrary order-independent options.
3180    // In practice may also be occasionally used for linking native libraries.
3181    // Passed after compiler-generated options to support manual overriding when necessary.
3182    add_user_defined_link_args(cmd, sess);
3183
3184    // ------------ Builtin configurable linker scripts ------------
3185    // The user's link args should be able to overwrite symbols in the compiler's
3186    // linker script that were weakly defined (i.e. defined with `PROVIDE()`). For this
3187    // to work correctly, the user needs to be able to specify linker arguments like
3188    // `--defsym` and `--script` *before* any builtin linker scripts are evaluated.
3189    add_link_script(cmd, sess, tmpdir, crate_type);
3190
3191    // ------------ Object code and libraries, order-dependent ------------
3192
3193    // Post-link CRT objects.
3194    add_post_link_objects(cmd, sess, link_output_kind, self_contained_crt_objects);
3195
3196    // ------------ Late order-dependent options ------------
3197
3198    // Doesn't really make sense.
3199    // FIXME: In practice built-in target specs use this for arbitrary order-independent options.
3200    // Introduce a target spec option for order-independent linker options, migrate built-in specs
3201    // to it and remove the option. Currently the last holdout is wasm32-unknown-emscripten.
3202    add_post_link_args(cmd, sess, flavor);
3203
3204    // Only LLD supports controlling parallelism at the moment.
3205    let mut tokens = Vec::new();
3206    if let LinkerJobs::Explicit(limit) = sess.opts.jobs.linker
3207        && flavor.uses_lld()
3208    {
3209        // Try obtaining as many jobserver tokens as possible (within the limit) to run parallel
3210        // linking. One token is available implicitly since we are running on the main thread.
3211        let client = jobserver::client();
3212
3213        let mut unsupported = false;
3214        for _ in 0..limit.get() - 1 {
3215            match client.try_acquire() {
3216                Ok(Some(token)) => tokens.push(token),
3217                Ok(None) => {}
3218                Err(e) if e.kind() == io::ErrorKind::Unsupported => {
3219                    if !tokens.is_empty() {
    ::core::panicking::panic("assertion failed: tokens.is_empty()")
};assert!(tokens.is_empty());
3220                    unsupported = true;
3221                    break;
3222                }
3223                Err(e) => ::rustc_span::macros::bug_impl(None,
    format_args!("IO error when acquiring jobserver token: {0}", e),
    Location::caller())bug!("IO error when acquiring jobserver token: {e}"),
3224            }
3225        }
3226
3227        let prefix = if sess.target.is_like_windows { "/threads:" } else { "--threads=" };
3228        // Error on the side of oversubscription if non-blocking token acquiring is unsupported.
3229        // Linking is typically the last step in a multi-crate project build,
3230        // so the resources should usually be free.
3231        let threads = if unsupported { limit.get() } else { 1 + tokens.len() };
3232        cmd.link_arg(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}{1}", prefix, threads))
    })format!("{prefix}{threads}"));
3233    }
3234
3235    (cmd.take_cmd(), tokens)
3236}
3237
3238fn add_order_independent_options(
3239    cmd: &mut dyn Linker,
3240    sess: &Session,
3241    link_output_kind: LinkOutputKind,
3242    self_contained_components: LinkSelfContainedComponents,
3243    flavor: LinkerFlavor,
3244    crate_type: CrateType,
3245    crate_info: &CrateInfo,
3246    out_filename: &Path,
3247    tmpdir: &Path,
3248) {
3249    // Take care of the flavors and CLI options requesting the `lld` linker.
3250    add_lld_args(cmd, sess, flavor, self_contained_components);
3251
3252    add_apple_link_args(cmd, sess, flavor);
3253
3254    let apple_sdk_root = add_apple_sdk(cmd, sess, flavor);
3255
3256    if sess.target.os == Os::Fuchsia
3257        && crate_type == CrateType::Executable
3258        && !#[allow(non_exhaustive_omitted_patterns)] match flavor {
    LinkerFlavor::Gnu(Cc::Yes, _) => true,
    _ => false,
}matches!(flavor, LinkerFlavor::Gnu(Cc::Yes, _))
3259    {
3260        let prefix = if sess.sanitizers().contains(SanitizerSet::ADDRESS) { "asan/" } else { "" };
3261        cmd.link_arg(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("--dynamic-linker={0}ld.so.1",
                prefix))
    })format!("--dynamic-linker={prefix}ld.so.1"));
3262    }
3263
3264    if sess.target.eh_frame_header {
3265        cmd.add_eh_frame_header();
3266    }
3267
3268    // Make the binary compatible with data execution prevention schemes.
3269    cmd.add_no_exec();
3270
3271    if self_contained_components.is_crt_objects_enabled() {
3272        cmd.no_crt_objects();
3273    }
3274
3275    if sess.target.os == Os::Emscripten {
3276        cmd.cc_arg("-fwasm-exceptions");
3277    }
3278
3279    if flavor == LinkerFlavor::Llbc {
3280        cmd.link_args(&[
3281            "--target",
3282            &versioned_llvm_target(sess),
3283            "--target-cpu",
3284            &crate_info.target_cpu,
3285        ]);
3286        if crate_info.target_features.len() > 0 {
3287            cmd.link_arg(&::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("--target-feature={0}",
                &crate_info.target_features.join(",")))
    })format!("--target-feature={}", &crate_info.target_features.join(",")));
3288        }
3289    } else if flavor == LinkerFlavor::Bpf {
3290        cmd.link_args(&["--cpu", &crate_info.target_cpu]);
3291        if let Some(feat) = [sess.opts.cg.target_feature.as_str(), &sess.target.options.features]
3292            .into_iter()
3293            .find(|feat| !feat.is_empty())
3294        {
3295            cmd.link_args(&["--cpu-features", feat]);
3296        }
3297    }
3298
3299    cmd.linker_plugin_lto();
3300
3301    add_library_search_dirs(cmd, sess, self_contained_components, apple_sdk_root.as_deref());
3302
3303    cmd.output_filename(out_filename);
3304
3305    if crate_type == CrateType::Executable
3306        && sess.target.is_like_windows
3307        && let Some(s) = &crate_info.windows_subsystem
3308    {
3309        cmd.windows_subsystem(*s);
3310    }
3311
3312    // Try to strip as much out of the generated object by removing unused
3313    // sections if possible. See more comments in linker.rs
3314    if !sess.link_dead_code() {
3315        // If PGO is enabled sometimes gc_sections will remove the profile data section
3316        // as it appears to be unused. This can then cause the PGO profile file to lose
3317        // some functions. If we are generating a profile we shouldn't strip those metadata
3318        // sections to ensure we have all the data for PGO.
3319        let keep_metadata =
3320            crate_type == CrateType::Dylib || sess.opts.cg.profile_generate.enabled();
3321        cmd.gc_sections(keep_metadata);
3322    }
3323
3324    cmd.set_output_kind(link_output_kind, crate_type, out_filename);
3325
3326    add_relro_args(cmd, sess);
3327
3328    // Pass optimization flags down to the linker.
3329    cmd.optimize();
3330
3331    // Gather the set of NatVis files, if any, and write them out to a temp directory.
3332    let natvis_visualizers = collect_natvis_visualizers(
3333        tmpdir,
3334        sess,
3335        &crate_info.local_crate_name,
3336        &crate_info.natvis_debugger_visualizers,
3337    );
3338
3339    // Pass debuginfo, NatVis debugger visualizers and strip flags down to the linker.
3340    cmd.debuginfo(sess.opts.cg.strip, &natvis_visualizers);
3341
3342    // We want to prevent the compiler from accidentally leaking in any system libraries,
3343    // so by default we tell linkers not to link to any default libraries.
3344    if !sess.opts.cg.default_linker_libraries && sess.target.no_default_libraries {
3345        cmd.no_default_libraries();
3346    }
3347
3348    if sess.opts.cg.profile_generate.enabled() || sess.instrument_coverage() {
3349        cmd.pgo_gen();
3350    }
3351
3352    if sess.opts.unstable_opts.instrument_mcount != InstrumentMcount::Disabled {
3353        cmd.enable_profiling();
3354    }
3355
3356    if sess.opts.cg.control_flow_guard != CFGuard::Disabled {
3357        cmd.control_flow_guard();
3358    }
3359
3360    // OBJECT-FILES-NO, AUDIT-ORDER
3361    if sess.opts.unstable_opts.ehcont_guard {
3362        cmd.ehcont_guard();
3363    }
3364
3365    add_rpath_args(cmd, sess, crate_info, out_filename);
3366}
3367
3368// Write the NatVis debugger visualizer files for each crate to the temp directory and gather the file paths.
3369fn collect_natvis_visualizers(
3370    tmpdir: &Path,
3371    sess: &Session,
3372    crate_name: &Symbol,
3373    natvis_debugger_visualizers: &BTreeSet<DebuggerVisualizerFile>,
3374) -> Vec<PathBuf> {
3375    let mut visualizer_paths = Vec::with_capacity(natvis_debugger_visualizers.len());
3376
3377    for (index, visualizer) in natvis_debugger_visualizers.iter().enumerate() {
3378        let visualizer_out_file = tmpdir.join(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("{0}-{1}.natvis",
                crate_name.as_str(), index))
    })format!("{}-{}.natvis", crate_name.as_str(), index));
3379
3380        match fs::write(&visualizer_out_file, &visualizer.src) {
3381            Ok(()) => {
3382                visualizer_paths.push(visualizer_out_file);
3383            }
3384            Err(error) => {
3385                sess.dcx().emit_warn(diagnostics::UnableToWriteDebuggerVisualizer {
3386                    path: visualizer_out_file,
3387                    error,
3388                });
3389            }
3390        };
3391    }
3392    visualizer_paths
3393}
3394
3395fn add_native_libs_from_crate(
3396    cmd: &mut dyn Linker,
3397    sess: &Session,
3398    archive_builder_builder: &dyn ArchiveBuilderBuilder,
3399    rmeta_link_cache: &mut RmetaLinkCache,
3400    crate_info: &CrateInfo,
3401    tmpdir: &Path,
3402    bundled_libs: &FxIndexSet<Symbol>,
3403    cnum: CrateNum,
3404    link_static: bool,
3405    link_dynamic: bool,
3406    link_output_kind: LinkOutputKind,
3407) {
3408    if !sess.opts.unstable_opts.link_native_libraries {
3409        // If `-Zlink-native-libraries=false` is set, then the assumption is that an
3410        // external build system already has the native dependencies defined, and it
3411        // will provide them to the linker itself.
3412        return;
3413    }
3414
3415    if link_static && cnum != LOCAL_CRATE && !bundled_libs.is_empty() {
3416        // If rlib contains native libs as archives, unpack them to tmpdir.
3417        let rlib = crate_info.used_crate_source[&cnum].rlib.as_ref().unwrap();
3418        archive_builder_builder
3419            .extract_bundled_libs(rlib, tmpdir, bundled_libs)
3420            .unwrap_or_else(|e| sess.dcx().emit_fatal(e));
3421    }
3422
3423    let (native_libs, bundled_filenames): (&Vec<NativeLib>, Vec<Option<Symbol>>) = match cnum {
3424        // Bundled libraries are only linked by path for upstream crates, so the local crate
3425        // never needs their filenames.
3426        LOCAL_CRATE => (&crate_info.used_libraries, Vec::new()),
3427        _ => {
3428            let native_libs = &crate_info.native_libraries[&cnum];
3429            let filenames =
3430                if let Some(rlib_path) = crate_info.used_crate_source[&cnum].rlib.as_ref() {
3431                    rmeta_link_cache.native_lib_filenames(&sess.target, rlib_path, native_libs)
3432                } else {
3433                    Vec::new()
3434                };
3435            (native_libs, filenames)
3436        }
3437    };
3438
3439    let mut last = (None, NativeLibKind::Unspecified, false);
3440    for (i, lib) in native_libs.iter().enumerate() {
3441        if !relevant_lib(sess, lib) {
3442            continue;
3443        }
3444
3445        // Skip if this library is the same as the last.
3446        last = if (Some(lib.name), lib.kind, lib.verbatim) == last {
3447            continue;
3448        } else {
3449            (Some(lib.name), lib.kind, lib.verbatim)
3450        };
3451
3452        let name = lib.name.as_str();
3453        let verbatim = lib.verbatim;
3454        match lib.kind {
3455            NativeLibKind::Static { bundle, whole_archive, .. } => {
3456                if link_static {
3457                    let bundle = bundle.unwrap_or(true);
3458                    let whole_archive = whole_archive == Some(true);
3459                    if bundle && cnum != LOCAL_CRATE {
3460                        if let Some(filename) = bundled_filenames.get(i).copied().flatten() {
3461                            // If rlib contains native libs as archives, they are unpacked to tmpdir.
3462                            let path = tmpdir.join(filename.as_str());
3463                            cmd.link_staticlib_by_path(&path, whole_archive);
3464                        }
3465                    } else {
3466                        cmd.link_staticlib_by_name(name, verbatim, whole_archive);
3467                    }
3468                }
3469            }
3470            NativeLibKind::Dylib { as_needed } => {
3471                if link_dynamic {
3472                    cmd.link_dylib_by_name(name, verbatim, as_needed.unwrap_or(true))
3473                }
3474            }
3475            NativeLibKind::Unspecified => {
3476                // If we are generating a static binary, prefer static library when the
3477                // link kind is unspecified.
3478                if !link_output_kind.can_link_dylib() && !sess.target.crt_static_allows_dylibs {
3479                    if link_static {
3480                        cmd.link_staticlib_by_name(name, verbatim, false);
3481                    }
3482                } else if link_dynamic {
3483                    cmd.link_dylib_by_name(name, verbatim, true);
3484                }
3485            }
3486            NativeLibKind::Framework { as_needed } => {
3487                if link_dynamic {
3488                    cmd.link_framework_by_name(name, verbatim, as_needed.unwrap_or(true))
3489                }
3490            }
3491            NativeLibKind::RawDylib { as_needed: _ } => {
3492                // Handled separately in `linker_with_args`.
3493            }
3494            NativeLibKind::WasmImportModule => {}
3495            NativeLibKind::LinkArg => {
3496                if link_static {
3497                    if verbatim {
3498                        cmd.verbatim_arg(name);
3499                    } else {
3500                        cmd.link_arg(name);
3501                    }
3502                }
3503            }
3504        }
3505    }
3506}
3507
3508fn add_local_native_libraries(
3509    cmd: &mut dyn Linker,
3510    sess: &Session,
3511    archive_builder_builder: &dyn ArchiveBuilderBuilder,
3512    rmeta_link_cache: &mut RmetaLinkCache,
3513    crate_info: &CrateInfo,
3514    tmpdir: &Path,
3515    link_output_kind: LinkOutputKind,
3516) {
3517    // All static and dynamic native library dependencies are linked to the local crate.
3518    let link_static = true;
3519    let link_dynamic = true;
3520    add_native_libs_from_crate(
3521        cmd,
3522        sess,
3523        archive_builder_builder,
3524        rmeta_link_cache,
3525        crate_info,
3526        tmpdir,
3527        &Default::default(),
3528        LOCAL_CRATE,
3529        link_static,
3530        link_dynamic,
3531        link_output_kind,
3532    );
3533}
3534
3535fn add_upstream_rust_crates(
3536    cmd: &mut dyn Linker,
3537    sess: &Session,
3538    archive_builder_builder: &dyn ArchiveBuilderBuilder,
3539    rmeta_link_cache: &mut RmetaLinkCache,
3540    crate_info: &CrateInfo,
3541    crate_type: CrateType,
3542    tmpdir: &Path,
3543    link_output_kind: LinkOutputKind,
3544) {
3545    // All of the heavy lifting has previously been accomplished by the
3546    // dependency_format module of the compiler. This is just crawling the
3547    // output of that module, adding crates as necessary.
3548    //
3549    // Linking to a rlib involves just passing it to the linker (the linker
3550    // will slurp up the object files inside), and linking to a dynamic library
3551    // involves just passing the right -l flag.
3552    let data = crate_info
3553        .dependency_formats
3554        .get(&crate_type)
3555        .expect("failed to find crate type in dependency format list");
3556
3557    if sess.target.is_like_aix {
3558        // Unlike ELF linkers, AIX doesn't feature `DT_SONAME` to override
3559        // the dependency name when outputting a shared library. Thus, `ld` will
3560        // use the full path to shared libraries as the dependency if passed it
3561        // by default unless `noipath` is passed.
3562        // https://www.ibm.com/docs/en/aix/7.3?topic=l-ld-command.
3563        cmd.link_or_cc_arg("-bnoipath");
3564    }
3565
3566    for &cnum in &crate_info.used_crates {
3567        // We may not pass all crates through to the linker. Some crates may appear statically in
3568        // an existing dylib, meaning we'll pick up all the symbols from the dylib.
3569        // We must always link crates `compiler_builtins` and `profiler_builtins` statically.
3570        // Even if they were already included into a dylib
3571        // (e.g. `libstd` when `-C prefer-dynamic` is used).
3572        // HACK: `dependency_formats` can report `profiler_builtins` as `NotLinked`.
3573        // See the comment in inject_profiler_runtime for why this is the case.
3574        let linkage = data[cnum];
3575        let link_static_crate = linkage == Linkage::Static
3576            || (linkage == Linkage::IncludedFromDylib || linkage == Linkage::NotLinked)
3577                && (crate_info.compiler_builtins == Some(cnum)
3578                    || crate_info.profiler_runtime == Some(cnum));
3579
3580        let mut bundled_libs = Default::default();
3581        match linkage {
3582            Linkage::Static | Linkage::IncludedFromDylib | Linkage::NotLinked => {
3583                if link_static_crate {
3584                    if let Some(rlib_path) = crate_info.used_crate_source[&cnum].rlib.as_ref() {
3585                        bundled_libs = rmeta_link_cache
3586                            .native_lib_filenames(
3587                                &sess.target,
3588                                rlib_path,
3589                                &crate_info.native_libraries[&cnum],
3590                            )
3591                            .into_iter()
3592                            .flatten()
3593                            .collect();
3594                    }
3595                    add_static_crate(
3596                        cmd,
3597                        sess,
3598                        archive_builder_builder,
3599                        rmeta_link_cache,
3600                        crate_info,
3601                        tmpdir,
3602                        cnum,
3603                        &bundled_libs,
3604                    );
3605                }
3606            }
3607            Linkage::Dynamic => {
3608                let src = &crate_info.used_crate_source[&cnum];
3609                add_dynamic_crate(cmd, sess, src.dylib.as_ref().unwrap());
3610            }
3611        }
3612
3613        // Static libraries are linked for a subset of linked upstream crates.
3614        // 1. If the upstream crate is a directly linked rlib then we must link the native library
3615        // because the rlib is just an archive.
3616        // 2. If the upstream crate is a dylib or a rlib linked through dylib, then we do not link
3617        // the native library because it is already linked into the dylib, and even if
3618        // inline/const/generic functions from the dylib can refer to symbols from the native
3619        // library, those symbols should be exported and available from the dylib anyway.
3620        // 3. Libraries bundled into `(compiler,profiler)_builtins` are special, see above.
3621        let link_static = link_static_crate;
3622        // Dynamic libraries are not linked here, see the FIXME in `add_upstream_native_libraries`.
3623        let link_dynamic = false;
3624        add_native_libs_from_crate(
3625            cmd,
3626            sess,
3627            archive_builder_builder,
3628            rmeta_link_cache,
3629            crate_info,
3630            tmpdir,
3631            &bundled_libs,
3632            cnum,
3633            link_static,
3634            link_dynamic,
3635            link_output_kind,
3636        );
3637    }
3638}
3639
3640fn add_upstream_native_libraries(
3641    cmd: &mut dyn Linker,
3642    sess: &Session,
3643    archive_builder_builder: &dyn ArchiveBuilderBuilder,
3644    rmeta_link_cache: &mut RmetaLinkCache,
3645    crate_info: &CrateInfo,
3646    tmpdir: &Path,
3647    link_output_kind: LinkOutputKind,
3648) {
3649    for &cnum in &crate_info.used_crates {
3650        // Static libraries are not linked here, they are linked in `add_upstream_rust_crates`.
3651        // FIXME: Merge this function to `add_upstream_rust_crates` so that all native libraries
3652        // are linked together with their respective upstream crates, and in their originally
3653        // specified order. This is slightly breaking due to our use of `--as-needed` (see crater
3654        // results in https://github.com/rust-lang/rust/pull/102832#issuecomment-1279772306).
3655        let link_static = false;
3656        // Dynamic libraries are linked for all linked upstream crates.
3657        // 1. If the upstream crate is a directly linked rlib then we must link the native library
3658        // because the rlib is just an archive.
3659        // 2. If the upstream crate is a dylib or a rlib linked through dylib, then we have to link
3660        // the native library too because inline/const/generic functions from the dylib can refer
3661        // to symbols from the native library, so the native library providing those symbols should
3662        // be available when linking our final binary.
3663        let link_dynamic = true;
3664        add_native_libs_from_crate(
3665            cmd,
3666            sess,
3667            archive_builder_builder,
3668            rmeta_link_cache,
3669            crate_info,
3670            tmpdir,
3671            &Default::default(),
3672            cnum,
3673            link_static,
3674            link_dynamic,
3675            link_output_kind,
3676        );
3677    }
3678}
3679
3680// Rehome lib paths (which exclude the library file name) that point into the sysroot lib directory
3681// to be relative to the sysroot directory, which may be a relative path specified by the user.
3682//
3683// If the sysroot is a relative path, and the sysroot libs are specified as an absolute path, the
3684// linker command line can be non-deterministic due to the paths including the current working
3685// directory. The linker command line needs to be deterministic since it appears inside the PDB
3686// file generated by the MSVC linker. See https://github.com/rust-lang/rust/issues/112586.
3687//
3688// The returned path will always have `fix_windows_verbatim_for_gcc()` applied to it.
3689fn rehome_sysroot_lib_dir(sess: &Session, lib_dir: &Path) -> PathBuf {
3690    let sysroot_lib_path = &sess.target_tlib_path.dir;
3691    let canonical_sysroot_lib_path =
3692        { try_canonicalize(sysroot_lib_path).unwrap_or_else(|_| sysroot_lib_path.to_path_buf()) };
3693
3694    let canonical_lib_dir = try_canonicalize(lib_dir).unwrap_or_else(|_| lib_dir.to_path_buf());
3695    if canonical_lib_dir == canonical_sysroot_lib_path {
3696        // This path already had `fix_windows_verbatim_for_gcc()` applied if needed.
3697        sysroot_lib_path.to_path_buf()
3698    } else {
3699        fix_windows_verbatim_for_gcc(lib_dir)
3700    }
3701}
3702
3703fn rehome_lib_path(sess: &Session, path: &Path) -> PathBuf {
3704    if let Some(dir) = path.parent() {
3705        let file_name = path.file_name().expect("library path has no file name component");
3706        rehome_sysroot_lib_dir(sess, dir).join(file_name)
3707    } else {
3708        fix_windows_verbatim_for_gcc(path)
3709    }
3710}
3711
3712// Adds the static "rlib" versions of all crates to the command line.
3713// There's a bit of magic which happens here specifically related to LTO,
3714// namely that we remove upstream object files.
3715//
3716// When performing LTO, almost(*) all of the bytecode from the upstream
3717// libraries has already been included in our object file output. As a
3718// result we need to remove the object files in the upstream libraries so
3719// the linker doesn't try to include them twice (or whine about duplicate
3720// symbols). We must continue to include the rest of the rlib, however, as
3721// it may contain static native libraries which must be linked in.
3722//
3723// (*) Crates marked with `#![no_builtins]` don't participate in LTO and
3724// their bytecode wasn't included. The object files in those libraries must
3725// still be passed to the linker.
3726//
3727// Note, however, that if we're not doing LTO we can just pass the rlib
3728// blindly to the linker (fast) because it's fine if it's not actually
3729// included as we're at the end of the dependency chain.
3730fn add_static_crate(
3731    cmd: &mut dyn Linker,
3732    sess: &Session,
3733    archive_builder_builder: &dyn ArchiveBuilderBuilder,
3734    rmeta_link_cache: &mut RmetaLinkCache,
3735    crate_info: &CrateInfo,
3736    tmpdir: &Path,
3737    cnum: CrateNum,
3738    bundled_lib_file_names: &FxIndexSet<Symbol>,
3739) {
3740    let src = &crate_info.used_crate_source[&cnum];
3741    let cratepath = src.rlib.as_ref().unwrap();
3742
3743    let mut link_upstream =
3744        |path: &Path| cmd.link_staticlib_by_path(&rehome_lib_path(sess, path), false);
3745
3746    if !are_upstream_rust_objects_already_included(sess) || ignored_for_lto(sess, crate_info, cnum)
3747    {
3748        link_upstream(cratepath);
3749        return;
3750    }
3751
3752    let dst = tmpdir.join(cratepath.file_name().unwrap());
3753    let name = cratepath.file_name().unwrap().to_str().unwrap();
3754    let name = &name[3..name.len() - 5]; // chop off lib/.rlib
3755    let bundled_lib_file_names = bundled_lib_file_names.clone();
3756
3757    sess.prof.generic_activity_with_arg("link_altering_rlib", name).run(|| {
3758        let upstream_rust_objects_already_included =
3759            are_upstream_rust_objects_already_included(sess);
3760        let is_builtins = sess.target.no_builtins || !crate_info.is_no_builtins.contains(&cnum);
3761
3762        let mut archive = archive_builder_builder.new_archive_builder(sess);
3763        if let Err(error) = archive.add_archive(
3764            cratepath,
3765            AddArchiveKind::Rlib(rmeta_link_cache, &|f, entry_kind| {
3766                if f == METADATA_FILENAME || f == rmeta_link::FILENAME {
3767                    return true;
3768                }
3769
3770                // If we're performing LTO and this is a rust-generated object
3771                // file, then we don't need the object file as it's part of the
3772                // LTO module. Note that `#![no_builtins]` is excluded from LTO,
3773                // though, so we let that object file slide.
3774                if upstream_rust_objects_already_included
3775                    && entry_kind == ArchiveEntryKind::RustObj
3776                    && is_builtins
3777                {
3778                    return true;
3779                }
3780
3781                // We skip native libraries because:
3782                // 1. This native libraries won't be used from the generated rlib,
3783                //    so we can throw them away to avoid the copying work.
3784                // 2. We can't allow it to be a single remaining entry in archive
3785                //    as some linkers may complain on that.
3786                if bundled_lib_file_names.contains(&Symbol::intern(f)) {
3787                    return true;
3788                }
3789
3790                false
3791            }),
3792        ) {
3793            sess.dcx().emit_fatal(diagnostics::RlibArchiveBuildFailure {
3794                path: cratepath.clone(),
3795                error,
3796            });
3797        }
3798        if archive.build(&dst, None) {
3799            link_upstream(&dst);
3800        }
3801    });
3802}
3803
3804// Same thing as above, but for dynamic crates instead of static crates.
3805fn add_dynamic_crate(cmd: &mut dyn Linker, sess: &Session, cratepath: &Path) {
3806    cmd.link_dylib_by_path(&rehome_lib_path(sess, cratepath), true);
3807}
3808
3809fn relevant_lib(sess: &Session, lib: &NativeLib) -> bool {
3810    match lib.cfg {
3811        Some(ref cfg) => eval_config_entry(sess, cfg).as_bool(),
3812        None => true,
3813    }
3814}
3815
3816pub(crate) fn are_upstream_rust_objects_already_included(sess: &Session) -> bool {
3817    match sess.lto() {
3818        config::Lto::Fat => true,
3819        config::Lto::Thin => {
3820            // If we defer LTO to the linker, we haven't run LTO ourselves, so
3821            // any upstream object files have not been copied yet.
3822            !sess.opts.cg.linker_plugin_lto.enabled()
3823        }
3824        config::Lto::No | config::Lto::ThinLocal => false,
3825    }
3826}
3827
3828/// We need to communicate five things to the linker on Apple/Darwin targets:
3829/// - The architecture.
3830/// - The operating system (and that it's an Apple platform).
3831/// - The environment.
3832/// - The deployment target.
3833/// - The SDK version.
3834fn add_apple_link_args(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) {
3835    if !sess.target.is_like_darwin {
3836        return;
3837    }
3838    let LinkerFlavor::Darwin(cc, _) = flavor else {
3839        return;
3840    };
3841
3842    // `sess.target.arch` (`target_arch`) is not detailed enough.
3843    let llvm_arch = sess.target.llvm_target.split_once('-').expect("LLVM target must have arch").0;
3844    let target_os = &sess.target.os;
3845    let target_env = &sess.target.env;
3846
3847    // The architecture name to forward to the linker.
3848    //
3849    // Supported architecture names can be found in the source:
3850    // https://github.com/apple-oss-distributions/ld64/blob/ld64-951.9/src/abstraction/MachOFileAbstraction.hpp#L578-L648
3851    //
3852    // Intentionally verbose to ensure that the list always matches correctly
3853    // with the list in the source above.
3854    let ld64_arch = match llvm_arch {
3855        "armv7k" => "armv7k",
3856        "armv7s" => "armv7s",
3857        "arm64" => "arm64",
3858        "arm64e" => "arm64e",
3859        "arm64_32" => "arm64_32",
3860        // ld64 doesn't understand i686, so fall back to i386 instead.
3861        //
3862        // Same story when linking with cc, since that ends up invoking ld64.
3863        "i386" | "i686" => "i386",
3864        "x86_64" => "x86_64",
3865        "x86_64h" => "x86_64h",
3866        _ => ::rustc_span::macros::bug_impl(None,
    format_args!("unsupported architecture in Apple target: {0}",
        sess.target.llvm_target), Location::caller())bug!("unsupported architecture in Apple target: {}", sess.target.llvm_target),
3867    };
3868
3869    if cc == Cc::No {
3870        // From the man page for ld64 (`man ld`):
3871        // > The linker accepts universal (multiple-architecture) input files,
3872        // > but always creates a "thin" (single-architecture), standard
3873        // > Mach-O output file. The architecture for the output file is
3874        // > specified using the -arch option.
3875        //
3876        // The linker has heuristics to determine the desired architecture,
3877        // but to be safe, and to avoid a warning, we set the architecture
3878        // explicitly.
3879        cmd.link_args(&["-arch", ld64_arch]);
3880
3881        // Man page says that ld64 supports the following platform names:
3882        // > - macos
3883        // > - ios
3884        // > - tvos
3885        // > - watchos
3886        // > - bridgeos
3887        // > - visionos
3888        // > - xros
3889        // > - mac-catalyst
3890        // > - ios-simulator
3891        // > - tvos-simulator
3892        // > - watchos-simulator
3893        // > - visionos-simulator
3894        // > - xros-simulator
3895        // > - driverkit
3896        let platform_name = match (target_os, target_env) {
3897            (os, Env::Unspecified) => os.desc(),
3898            (Os::IOs, Env::MacAbi) => "mac-catalyst",
3899            (Os::IOs, Env::Sim) => "ios-simulator",
3900            (Os::TvOs, Env::Sim) => "tvos-simulator",
3901            (Os::WatchOs, Env::Sim) => "watchos-simulator",
3902            (Os::VisionOs, Env::Sim) => "visionos-simulator",
3903            _ => ::rustc_span::macros::bug_impl(None,
    format_args!("invalid OS/env combination for Apple target: {0}, {1}",
        target_os, target_env), Location::caller())bug!("invalid OS/env combination for Apple target: {target_os}, {target_env}"),
3904        };
3905
3906        let min_version = sess.apple_deployment_target().fmt_full().to_string();
3907
3908        // The SDK version is used at runtime when compiling with a newer SDK / version of Xcode:
3909        // - By dyld to give extra warnings and errors, see e.g.:
3910        //   <https://github.com/apple-oss-distributions/dyld/blob/dyld-1165.3/common/MachOFile.cpp#L3029>
3911        //   <https://github.com/apple-oss-distributions/dyld/blob/dyld-1165.3/common/MachOFile.cpp#L3738-L3857>
3912        // - By system frameworks to change certain behaviour. For example, the default value of
3913        //   `-[NSView wantsBestResolutionOpenGLSurface]` is `YES` when the SDK version is >= 10.15.
3914        //   <https://developer.apple.com/documentation/appkit/nsview/1414938-wantsbestresolutionopenglsurface?language=objc>
3915        //
3916        // We do not currently know the actual SDK version though, so we have a few options:
3917        // 1. Use the minimum version supported by rustc.
3918        // 2. Use the same as the deployment target.
3919        // 3. Use an arbitrary recent version.
3920        // 4. Omit the version.
3921        //
3922        // The first option is too low / too conservative, and means that users will not get the
3923        // same behaviour from a binary compiled with rustc as with one compiled by clang.
3924        //
3925        // The second option is similarly conservative, and also wrong since if the user specified a
3926        // higher deployment target than the SDK they're compiling/linking with, the runtime might
3927        // make invalid assumptions about the capabilities of the binary.
3928        //
3929        // The third option requires that `rustc` is periodically kept up to date with Apple's SDK
3930        // version, and is also wrong for similar reasons as above.
3931        //
3932        // The fourth option is bad because while `ld`, `otool`, `vtool` and such understand it to
3933        // mean "absent" or `n/a`, dyld doesn't actually understand it, and will end up interpreting
3934        // it as 0.0, which is again too low/conservative.
3935        //
3936        // Currently, we lie about the SDK version, and choose the second option.
3937        //
3938        // FIXME(madsmtm): Parse the SDK version from the SDK root instead.
3939        // <https://github.com/rust-lang/rust/issues/129432>
3940        let sdk_version = &*min_version;
3941
3942        // From the man page for ld64 (`man ld`):
3943        // > This is set to indicate the platform, oldest supported version of
3944        // > that platform that output is to be used on, and the SDK that the
3945        // > output was built against.
3946        //
3947        // Like with `-arch`, the linker can figure out the platform versions
3948        // itself from the binaries being linked, but to be safe, we specify
3949        // the desired versions here explicitly.
3950        cmd.link_args(&["-platform_version", platform_name, &*min_version, sdk_version]);
3951    } else {
3952        // cc == Cc::Yes
3953        //
3954        // We'd _like_ to use `-target` everywhere, since that can uniquely
3955        // communicate all the required details except for the SDK version
3956        // (which is read by Clang itself from the SDKROOT), but that doesn't
3957        // work on GCC, and since we don't know whether the `cc` compiler is
3958        // Clang, GCC, or something else, we fall back to other options that
3959        // also work on GCC when compiling for macOS.
3960        //
3961        // Targets other than macOS are ill-supported by GCC (it doesn't even
3962        // support e.g. `-miphoneos-version-min`), so in those cases we can
3963        // fairly safely use `-target`. See also the following, where it is
3964        // made explicit that the recommendation by LLVM developers is to use
3965        // `-target`: <https://github.com/llvm/llvm-project/issues/88271>
3966        if *target_os == Os::MacOs {
3967            // `-arch` communicates the architecture.
3968            //
3969            // CC forwards the `-arch` to the linker, so we use the same value
3970            // here intentionally.
3971            cmd.cc_args(&["-arch", ld64_arch]);
3972
3973            // The presence of `-mmacosx-version-min` makes CC default to
3974            // macOS, and it sets the deployment target.
3975            let version = sess.apple_deployment_target().fmt_full();
3976            // Intentionally pass this as a single argument, Clang doesn't
3977            // seem to like it otherwise.
3978            cmd.cc_arg(&::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("-mmacosx-version-min={0}",
                version))
    })format!("-mmacosx-version-min={version}"));
3979
3980            // macOS has no environment, so with these two, we've told CC the
3981            // four desired parameters.
3982            //
3983            // We avoid `-m32`/`-m64`, as this is already encoded by `-arch`.
3984        } else {
3985            cmd.cc_args(&["-target", &versioned_llvm_target(sess)]);
3986        }
3987    }
3988}
3989
3990fn add_apple_sdk(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) -> Option<PathBuf> {
3991    if !sess.target.is_like_darwin {
3992        return None;
3993    }
3994    let LinkerFlavor::Darwin(cc, _) = flavor else {
3995        return None;
3996    };
3997
3998    // The default compiler driver on macOS is at `/usr/bin/cc`. This is a trampoline binary that
3999    // effectively invokes `xcrun cc` internally to look up both the compiler binary and the SDK
4000    // root from the current Xcode installation. When cross-compiling, when `rustc` is invoked
4001    // inside Xcode, or when invoking the linker directly, this default logic is unsuitable, so
4002    // instead we invoke `xcrun` manually.
4003    //
4004    // (Note that this doesn't mean we get a duplicate lookup here - passing `SDKROOT` below will
4005    // cause the trampoline binary to skip looking up the SDK itself).
4006    let sdkroot = sess.time("get_apple_sdk_root", || get_apple_sdk_root(sess))?;
4007
4008    if cc == Cc::Yes {
4009        // There are a few options to pass the SDK root when linking with a C/C++ compiler:
4010        // - The `--sysroot` flag.
4011        // - The `-isysroot` flag.
4012        // - The `SDKROOT` environment variable.
4013        //
4014        // `--sysroot` isn't actually enough to get Clang to treat it as a platform SDK, you need
4015        // to specify `-isysroot`. This is admittedly a bit strange, as on most targets `-isysroot`
4016        // only applies to include header files, but on Apple targets it also applies to libraries
4017        // and frameworks.
4018        //
4019        // This leaves the choice between `-isysroot` and `SDKROOT`. Both are supported by Clang and
4020        // GCC, though they may not be supported by all compiler drivers. We choose `SDKROOT`,
4021        // primarily because that is the same interface that is used when invoking the tool under
4022        // `xcrun -sdk macosx $tool`.
4023        //
4024        // In that sense, if a given compiler driver does not support `SDKROOT`, the blame is fairly
4025        // clearly in the tool in question, since they also don't support being run under `xcrun`.
4026        //
4027        // Additionally, `SDKROOT` is an environment variable and thus optional. It also has lower
4028        // precedence than `-isysroot`, so a custom compiler driver that does not support it and
4029        // instead figures out the SDK on their own can easily do so by using `-isysroot`.
4030        //
4031        // (This in particular affects Clang built with the `DEFAULT_SYSROOT` CMake flag, such as
4032        // the one provided by some versions of Homebrew's `llvm` package. Those will end up
4033        // ignoring the value we set here, and instead use their built-in sysroot).
4034        cmd.cmd().env("SDKROOT", &sdkroot);
4035    } else {
4036        // When invoking the linker directly, we use the `-syslibroot` parameter. `SDKROOT` is not
4037        // read by the linker, so it's really the only option.
4038        //
4039        // This is also what Clang does.
4040        cmd.link_arg("-syslibroot");
4041        cmd.link_arg(&sdkroot);
4042    }
4043
4044    Some(sdkroot)
4045}
4046
4047fn get_apple_sdk_root(sess: &Session) -> Option<PathBuf> {
4048    if let Ok(sdkroot) = env::var("SDKROOT") {
4049        let p = PathBuf::from(&sdkroot);
4050
4051        // Ignore invalid SDKs, similar to what clang does:
4052        // https://github.com/llvm/llvm-project/blob/llvmorg-19.1.6/clang/lib/Driver/ToolChains/Darwin.cpp#L2212-L2229
4053        //
4054        // NOTE: Things are complicated here by the fact that `rustc` can be run by Cargo to compile
4055        // build scripts and proc-macros for the host, and thus we need to ignore SDKROOT if it's
4056        // clearly set for the wrong platform.
4057        //
4058        // FIXME(madsmtm): Make this more robust (maybe read `SDKSettings.json` like Clang does?).
4059        match &*apple::sdk_name(&sess.target).to_lowercase() {
4060            "appletvos"
4061                if sdkroot.contains("TVSimulator.platform")
4062                    || sdkroot.contains("MacOSX.platform") => {}
4063            "appletvsimulator"
4064                if sdkroot.contains("TVOS.platform") || sdkroot.contains("MacOSX.platform") => {}
4065            "iphoneos"
4066                if sdkroot.contains("iPhoneSimulator.platform")
4067                    || sdkroot.contains("MacOSX.platform") => {}
4068            "iphonesimulator"
4069                if sdkroot.contains("iPhoneOS.platform") || sdkroot.contains("MacOSX.platform") => {
4070            }
4071            "macosx"
4072                if sdkroot.contains("iPhoneOS.platform")
4073                    || sdkroot.contains("iPhoneSimulator.platform")
4074                    || sdkroot.contains("AppleTVOS.platform")
4075                    || sdkroot.contains("AppleTVSimulator.platform")
4076                    || sdkroot.contains("WatchOS.platform")
4077                    || sdkroot.contains("WatchSimulator.platform")
4078                    || sdkroot.contains("XROS.platform")
4079                    || sdkroot.contains("XRSimulator.platform") => {}
4080            "watchos"
4081                if sdkroot.contains("WatchSimulator.platform")
4082                    || sdkroot.contains("MacOSX.platform") => {}
4083            "watchsimulator"
4084                if sdkroot.contains("WatchOS.platform") || sdkroot.contains("MacOSX.platform") => {}
4085            "xros"
4086                if sdkroot.contains("XRSimulator.platform")
4087                    || sdkroot.contains("MacOSX.platform") => {}
4088            "xrsimulator"
4089                if sdkroot.contains("XROS.platform") || sdkroot.contains("MacOSX.platform") => {}
4090            // Ignore `SDKROOT` if it's not a valid path.
4091            _ if !p.is_absolute() || p == Path::new("/") || !p.exists() => {}
4092            _ => return Some(p),
4093        }
4094    }
4095
4096    apple::get_sdk_root(sess)
4097}
4098
4099/// When using the linker flavors opting in to `lld`, add the necessary paths and arguments to
4100/// invoke it:
4101/// - when the self-contained linker flag is active: the build of `lld` distributed with rustc,
4102/// - or any `lld` available to `cc`.
4103fn add_lld_args(
4104    cmd: &mut dyn Linker,
4105    sess: &Session,
4106    flavor: LinkerFlavor,
4107    self_contained_components: LinkSelfContainedComponents,
4108) {
4109    {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event /rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs:4109",
                        "rustc_codegen_ssa::back::link", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("/rustc-dev/5ceaf6608eb354c2f5bbb3b8d974caa367dac81c/compiler/rustc_codegen_ssa/src/back/link.rs"),
                        ::tracing_core::__macro_support::Option::Some(4109u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_codegen_ssa::back::link"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                __CALLSITE.metadata().fields().value_set_all(&[(::tracing::__macro_support::Option::Some(&format_args!("add_lld_args requested, flavor: \'{0:?}\', target self-contained components: {1:?}",
                                                    flavor, self_contained_components) as
                                            &dyn ::tracing::field::Value))])
            });
    } else { ; }
};debug!(
4110        "add_lld_args requested, flavor: '{:?}', target self-contained components: {:?}",
4111        flavor, self_contained_components,
4112    );
4113
4114    // If the flavor doesn't use a C/C++ compiler to invoke the linker, or doesn't opt in to `lld`,
4115    // we don't need to do anything.
4116    if !(flavor.uses_cc() && flavor.uses_lld()) {
4117        return;
4118    }
4119
4120    // 1. Implement the "self-contained" part of this feature by adding rustc distribution
4121    // directories to the tool's search path, depending on a mix between what users can specify on
4122    // the CLI, and what the target spec enables (as it can't disable components):
4123    // - if the self-contained linker is enabled on the CLI or by the target spec,
4124    // - and if the self-contained linker is not disabled on the CLI.
4125    let self_contained_cli = sess.opts.cg.link_self_contained.is_linker_enabled();
4126    let self_contained_target = self_contained_components.is_linker_enabled();
4127
4128    let self_contained_linker = self_contained_cli || self_contained_target;
4129    if self_contained_linker && !sess.opts.cg.link_self_contained.is_linker_disabled() {
4130        let mut linker_path_exists = false;
4131        for path in sess.get_tools_search_paths(false) {
4132            let linker_path = path.join("gcc-ld");
4133            linker_path_exists |= linker_path.exists();
4134            cmd.cc_arg({
4135                let mut arg = OsString::from("-B");
4136                arg.push(linker_path);
4137                arg
4138            });
4139        }
4140        if !linker_path_exists {
4141            // As a sanity check, we emit an error if none of these paths exist: we want
4142            // self-contained linking and have no linker.
4143            sess.dcx().emit_fatal(diagnostics::SelfContainedLinkerMissing);
4144        }
4145    }
4146
4147    // 2. Implement the "linker flavor" part of this feature by asking `cc` to use some kind of
4148    // `lld` as the linker.
4149    //
4150    // Note that wasm targets skip this step since the only option there anyway
4151    // is to use LLD but component-producing targets rely on a wrapper around
4152    // this, `wasm-component-ld`, which is overridden if this option is passed.
4153    if !sess.target.is_like_wasm {
4154        cmd.cc_arg("-fuse-ld=lld");
4155    }
4156
4157    if !flavor.is_gnu() {
4158        // Tell clang to use a non-default LLD flavor.
4159        // Gcc doesn't understand the target option, but we currently assume
4160        // that gcc is not used for Apple and Wasm targets (#97402).
4161        //
4162        // Note that we don't want to do that by default on macOS: e.g. passing a
4163        // 10.7 target to LLVM works, but not to recent versions of clang/macOS, as
4164        // shown in issue #101653 and the discussion in PR #101792.
4165        //
4166        // It could be required in some cases of cross-compiling with
4167        // LLD, but this is generally unspecified, and we don't know
4168        // which specific versions of clang, macOS SDK, host and target OS
4169        // combinations impact us here.
4170        //
4171        // So we do a simple first-approximation until we know more of what the
4172        // Apple targets require (and which would be handled prior to hitting this
4173        // LLD codepath anyway), but the expectation is that until then
4174        // this should be manually passed if needed. We specify the target when
4175        // targeting a different linker flavor on macOS, and that's also always
4176        // the case when targeting WASM.
4177        if sess.target.linker_flavor != sess.host.linker_flavor {
4178            cmd.cc_arg(::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("--target={0}",
                versioned_llvm_target(sess)))
    })format!("--target={}", versioned_llvm_target(sess)));
4179        }
4180    }
4181}
4182
4183// gold has been deprecated with binutils 2.44
4184// and is known to behave incorrectly around Rust programs.
4185// There have been reports of being unable to bootstrap with gold:
4186// https://github.com/rust-lang/rust/issues/139425
4187// Additionally, gold miscompiles SHF_GNU_RETAIN sections, which are
4188// emitted with `#[used(linker)]`.
4189fn warn_if_linked_with_gold(sess: &Session, path: &Path) -> Result<(), Box<dyn std::error::Error>> {
4190    use object::read::elf::{FileHeader, SectionHeader};
4191    use object::read::{ReadCache, ReadRef, Result};
4192    use object::{Endianness, elf};
4193
4194    fn elf_has_gold_version_note<'a>(
4195        elf: &impl FileHeader,
4196        data: impl ReadRef<'a>,
4197    ) -> Result<bool> {
4198        let endian = elf.endian()?;
4199
4200        let section =
4201            elf.sections(endian, data)?.section_by_name(endian, b".note.gnu.gold-version");
4202        if let Some((_, section)) = section
4203            && let Some(mut notes) = section.notes(endian, data)?
4204        {
4205            return Ok(notes.any(|note| {
4206                note.is_ok_and(|note| note.n_type(endian) == elf::NT_GNU_GOLD_VERSION)
4207            }));
4208        }
4209
4210        Ok(false)
4211    }
4212
4213    let data = ReadCache::new(BufReader::new(File::open(path)?));
4214
4215    let was_linked_with_gold = if sess.target.pointer_width == 64 {
4216        let elf = elf::FileHeader64::<Endianness>::parse(&data)?;
4217        elf_has_gold_version_note(elf, &data)?
4218    } else if sess.target.pointer_width == 32 {
4219        let elf = elf::FileHeader32::<Endianness>::parse(&data)?;
4220        elf_has_gold_version_note(elf, &data)?
4221    } else {
4222        return Ok(());
4223    };
4224
4225    if was_linked_with_gold {
4226        let mut warn =
4227            sess.dcx().struct_warn("the gold linker is deprecated and has known bugs with Rust");
4228        warn.help("consider using LLD or ld from GNU binutils instead");
4229        warn.emit();
4230    }
4231    Ok(())
4232}