1mod raw_dylib;
23use 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};
1112use 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::{
35self, CFGuard, DebugInfo, InstrumentMcount, LinkerFeaturesCli, LinkerJobs, OutFileName,
36OutputFilenames, 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::{
47Arch, BinaryFormat, Cc, CfgAbi, Env, LinkOutputKind, LinkSelfContainedComponents,
48LinkSelfContainedDefault, LinkerFeatures, LinkerFlavor, LinkerFlavorCli, Lld, Os, RelocModel,
49RelroLevel, SanitizerSet, SplitDebuginfo,
50};
51use tracing::{debug, info, warn};
5253use super::archive::{
54AddArchiveKind, 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::{
64CodegenLintLevelSpecs, CompiledModule, CompiledModules, CrateInfo, NativeLib, SymbolExport,
65diagnostics,
66};
6768pub fn ensure_removed(dcx: DiagCtxtHandle<'_>, path: &Path) {
69if let Err(e) = fs::remove_file(path) {
70if e.kind() != io::ErrorKind::NotFound {
71dcx.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}
7576fn eii_impl_crate_name(crate_info: &CrateInfo, cnum: CrateNum) -> Symbol {
77if cnum == LOCAL_CRATE { crate_info.local_crate_name } else { crate_info.crate_name[&cnum] }
78}
7980fn check_externally_implementable_item_linkage(sess: &Session, crate_info: &CrateInfo) {
81if crate_info.eii_linkage.is_empty() {
82return;
83 }
8485// A crate can request multiple linked outputs with overlapping dependency
86 // formats, so report each underlying conflict once.
87let mut emitted = FxHashSet::default();
8889// This needs the dependency formats selected for the final artifact. The
90 // earlier EII pass still handles missing impls and duplicate explicit impls.
91for dependency_formats in crate_info.dependency_formats.values() {
92for (eii_index, eii) in crate_info.eii_linkage.iter().enumerate() {
93let Some(explicit_impl) = eii.impls.first() else {
94continue;
95 };
96// If the explicit impl is already coming from a dylib, that dylib
97 // has already resolved the default-vs-explicit choice.
98if #[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),
100Some(Linkage::Dynamic | Linkage::IncludedFromDylib)
101 ) {
102continue;
103 }
104105let Some(default_impl) = &eii.default_impl else {
106continue;
107 };
108if !#[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),
110Some(Linkage::Dynamic | Linkage::IncludedFromDylib)
111 ) {
112continue;
113 }
114115if !emitted.insert(eii_index) {
116continue;
117 }
118119 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}
133134/// 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}
141142fn walk_native_lib_search_dirs<R>(
143 sess: &Session,
144 fallback: Option<NativeLibSearchFallback<'_>>,
145mut 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).
148for search_path in sess.target_filesearch().cli_search_paths(PathKind::Native) {
149 f(&search_path.dir, false)?;
150 }
151for search_path in sess.target_filesearch().cli_search_paths(PathKind::Framework) {
152// Frameworks are looked up strictly in framework-specific paths.
153if search_path.kind != PathKind::All {
154 f(&search_path.dir, true)?;
155 }
156 }
157158let Some(NativeLibSearchFallback { self_contained_components, apple_sdk_root }) = fallback159else {
160return ControlFlow::Continue(());
161 };
162163// The toolchain ships some native library components and self-contained linking was enabled.
164 // Add the self-contained library directory to search paths.
165if self_contained_components.intersects(
166LinkSelfContainedComponents::LIBC167 | LinkSelfContainedComponents::UNWIND168 | LinkSelfContainedComponents::MINGW,
169 ) {
170 f(&sess.target_tlib_path.dir.join("self-contained"), false)?;
171 }
172173let has_shared_llvm_apple_darwin =
174sess.target.is_like_darwin && sess.target_tlib_path.dir.join("libLLVM.dylib").exists();
175176// 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.
187if sess.target.cfg_abi == CfgAbi::Fortanix188 || sess.target.os == Os::Linux189 || sess.target.os == Os::Fuchsia190 || 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::Windows194 && sess.target.env == Env::Gnu195 && sess.target.cfg_abi == CfgAbi::Llvm196 {
197 f(&sess.target_tlib_path.dir, false)?;
198 }
199200// 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).
202if let Some(sdk_root) = apple_sdk_root203 && sess.target.env == Env::MacAbi204 {
205 f(&sdk_root.join("System/iOSSupport/usr/lib"), false)?;
206 f(&sdk_root.join("System/iOSSupport/System/Library/Frameworks"), true)?;
207 }
208209 ControlFlow::Continue(())
210}
211212pub(super) fn try_find_native_static_library(
213 sess: &Session,
214 name: &str,
215 verbatim: bool,
216) -> Option<PathBuf> {
217let default = sess.staticlib_components(verbatim);
218let 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
223let unix = ("lib", ".a");
224if 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 };
226227walk_native_lib_search_dirs(sess, None, |dir, is_framework| {
228if !is_framework {
229for (prefix, suffix) in &formats {
230let test = dir.join(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}{1}{2}", prefix, name, suffix))
})format!("{prefix}{name}{suffix}"));
231if test.exists() {
232return ControlFlow::Break(test);
233 }
234 }
235 }
236 ControlFlow::Continue(())
237 })
238 .break_value()
239}
240241pub(super) fn try_find_native_dynamic_library(
242 sess: &Session,
243 name: &str,
244 verbatim: bool,
245) -> Option<PathBuf> {
246let default = sess.staticlib_components(verbatim);
247let 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
253let meson = ("lib", ".dll.a");
254// and MinGW uses .a altogether
255let 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 };
258259walk_native_lib_search_dirs(sess, None, |dir, is_framework| {
260if !is_framework {
261for (prefix, suffix) in &formats {
262let test = dir.join(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}{1}{2}", prefix, name, suffix))
})format!("{prefix}{name}{suffix}"));
263if test.exists() {
264return ControlFlow::Break(test);
265 }
266 }
267 }
268 ControlFlow::Continue(())
269 })
270 .break_value()
271}
272273pub(super) fn find_native_static_library(name: &str, verbatim: bool, sess: &Session) -> PathBuf {
274try_find_native_static_library(sess, name, verbatim).unwrap_or_else(|| {
275sess.dcx().emit_fatal(diagnostics::MissingNativeLibrary::new(name, verbatim))
276 })
277}
278279/// 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> {
287if 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 {
293return 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 }
298None299}
300301/// 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) {
312let _timer = sess.timer("link_binary");
313let output_metadata = sess.opts.output_types.contains_key(&OutputType::Metadata);
314let mut tempfiles_for_stdout_output: Vec<PathBuf> = Vec::new();
315let mut rmeta_link_cache = RmetaLinkCache::default();
316317if outputs.outputs.should_link() {
318sess.time("check_externally_implementable_item_linkage", || {
319check_externally_implementable_item_linkage(sess, &crate_info);
320 });
321sess.dcx().abort_if_errors();
322 }
323324for &crate_type in &crate_info.crate_types {
325// Ignore executable crates if we have -Z no-codegen, as they will error.
326if (sess.opts.unstable_opts.no_codegen || !sess.opts.output_types.should_codegen())
327 && !output_metadata
328 && crate_type == CrateType::Executable
329 {
330continue;
331 }
332333if 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 }
336337 sess.time("link_binary_check_files_are_writeable", || {
338for m in &compiled_modules.modules {
339if let Some(obj) = &m.object {
340 check_file_is_writeable(obj, sess);
341 }
342if let Some(obj) = &m.global_asm_object {
343 check_file_is_writeable(obj, sess);
344 }
345 }
346 });
347348if outputs.outputs.should_link() {
349let output = out_filename(sess, crate_type, outputs, crate_info.local_crate_name);
350let 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 });
356let path = MaybeTempDir::new(tmpdir, sess.opts.cg.save_temps);
357358let crate_name = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}", crate_info.local_crate_name))
})format!("{}", crate_info.local_crate_name);
359let out_filename = output.file_for_writing(outputs, OutputType::Exe, &crate_name);
360match crate_type {
361 CrateType::Rlib => {
362let _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 }
402if sess.opts.json_artifact_notifications {
403 sess.dcx().emit_artifact_notification(&out_filename, "link");
404 }
405406if sess.prof.enabled()
407 && let Some(artifact_name) = out_filename.file_name()
408 {
409// Record size for self-profiling
410let file_size = std::fs::metadata(&out_filename).map(|m| m.len()).unwrap_or(0);
411412 sess.prof.artifact_size(
413"linked_artifact",
414 artifact_name.to_string_lossy(),
415 file_size,
416 );
417 }
418419if sess.target.binary_format == BinaryFormat::Elf {
420if 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 }
424425if output.is_stdout() {
426if 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 }
441442// Remove the temporary object file and metadata if we aren't saving temps.
443sess.time("link_binary_remove_temps", || {
444// If the user requests that temporaries are saved, don't delete any.
445if sess.opts.cg.save_temps {
446return;
447 }
448449let maybe_remove_temps_from_module =
450 |preserve_objects: bool, preserve_dwarf_objects: bool, module: &CompiledModule| {
451if !preserve_objects && let Some(ref obj) = module.object {
452ensure_removed(sess.dcx(), obj);
453 }
454455if !preserve_objects && let Some(ref obj) = module.global_asm_object {
456ensure_removed(sess.dcx(), obj);
457 }
458459if !preserve_dwarf_objects && let Some(ref dwo_obj) = module.dwarf_object {
460ensure_removed(sess.dcx(), dwo_obj);
461 }
462 };
463464let remove_temps_from_module =
465 |module: &CompiledModule| maybe_remove_temps_from_module(false, false, module);
466467// Otherwise, always remove the allocator module temporaries.
468if let Some(ref allocator_module) = compiled_modules.allocator_module {
469remove_temps_from_module(allocator_module);
470 }
471472// Remove the temporary files if output goes to stdout
473for temp in tempfiles_for_stdout_output {
474 ensure_removed(sess.dcx(), &temp);
475 }
476477// If no requested outputs require linking, then the object temporaries should
478 // be kept.
479if !sess.opts.output_types.should_link() {
480return;
481 }
482483// Potentially keep objects for their debuginfo.
484let (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);
486487for module in &compiled_modules.modules {
488 maybe_remove_temps_from_module(preserve_objects, preserve_dwarf_objects, module);
489 }
490 });
491}
492493// 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> {
500let fmts = if let Some(crate_type) = crate_type {
501let Some(fmts) = info.dependency_formats.get(&crate_type) else {
502return Err(diagnostics::LinkRlibError::MissingFormat);
503 };
504505fmts506 } else {
507let mut dep_formats = info.dependency_formats.iter();
508let (ty1, list1) = dep_formats.next().ok_or(diagnostics::LinkRlibError::MissingFormat)?;
509if let Some((ty2, list2)) = dep_formats.find(|(_, list2)| list1 != *list2) {
510return 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 }
517list1518 };
519520let used_dep_crates = info.used_crates.iter();
521for &cnum in used_dep_crates {
522match fmts.get(cnum) {
523Some(&Linkage::NotLinked | &Linkage::Dynamic | &Linkage::IncludedFromDylib) => continue,
524Some(_) => {}
525None => return Err(diagnostics::LinkRlibError::MissingFormat),
526 }
527let crate_name = info.crate_name[&cnum];
528let used_crate_source = &info.used_crate_source[&cnum];
529if let Some(path) = &used_crate_source.rlib {
530 f(cnum, path);
531 } else if used_crate_source.rmeta.is_some() {
532return Err(diagnostics::LinkRlibError::OnlyRmetaFound { crate_name });
533 } else {
534return Err(diagnostics::LinkRlibError::NotFound { crate_name });
535 }
536 }
537Ok(())
538}
539540/// 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> {
554let mut ab = archive_builder_builder.new_archive_builder(sess);
555556// 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.
560let rust_object_files: Vec<String> = compiled_modules561 .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();
567568let native_lib_filenames: Vec<Option<Symbol>> = crate_info569 .used_libraries
570 .iter()
571 .map(|lib| find_bundled_library(lib, sess, &crate_info.crate_types))
572 .collect();
573574let metadata_link_file = if #[allow(non_exhaustive_omitted_patterns)] match flavor {
RlibFlavor::Normal => true,
_ => false,
}matches!(flavor, RlibFlavor::Normal) {
575let native_lib_filenames: Vec<Option<String>> =
576native_lib_filenames.iter().map(|f| f.map(|s| s.to_string())).collect();
577let metadata_link = rmeta_link::RmetaLink { rust_object_files, native_lib_filenames };
578let metadata_link_data = metadata_link.encode();
579let (wrapper, _) =
580create_wrapper_file(sess, rmeta_link::SECTION.to_string(), &metadata_link_data);
581Some(emit_wrapper_file(sess, &wrapper, tmpdir.as_ref(), rmeta_link::FILENAME))
582 } else {
583None584 };
585586let trailing_metadata = match flavor {
587 RlibFlavor::Normal => {
588let (metadata, metadata_position) =
589create_wrapper_file(sess, ".rmeta".to_string(), metadata.stub_or_full());
590let metadata = emit_wrapper_file(sess, &metadata, tmpdir.as_ref(), METADATA_FILENAME);
591match 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.
598ab.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.
601if let Some(file) = &metadata_link_file {
602ab.add_file(file, ArchiveEntryKind::Other);
603 }
604None605 }
606 MetadataPosition::Last => Some(metadata),
607 }
608 }
609610 RlibFlavor::StaticlibBase => None,
611 };
612613for m in &compiled_modules.modules {
614if let Some(obj) = m.object.as_ref() {
615 ab.add_file(obj, ArchiveEntryKind::RustObj);
616 }
617618if let Some(obj) = m.global_asm_object.as_ref() {
619 ab.add_file(obj, ArchiveEntryKind::RustObj);
620 }
621622if let Some(dwarf_obj) = m.dwarf_object.as_ref() {
623 ab.add_file(dwarf_obj, ArchiveEntryKind::Other);
624 }
625 }
626627match flavor {
628 RlibFlavor::Normal => {}
629 RlibFlavor::StaticlibBase => {
630if let Some(m) = &compiled_modules.allocator_module {
631if let Some(obj) = &m.object {
632ab.add_file(obj, ArchiveEntryKind::RustObj);
633 }
634if let Some(obj) = &m.global_asm_object {
635ab.add_file(obj, ArchiveEntryKind::RustObj);
636 }
637 }
638 }
639 }
640641// Used if packed_bundled_libs flag enabled.
642let mut packed_bundled_libs = Vec::new();
643644// 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.
660for (i, lib) in crate_info.used_libraries.iter().enumerate() {
661let NativeLibKind::Static { bundle: None | Some(true), .. } = lib.kind else {
662continue;
663 };
664if flavor == RlibFlavor::Normal
665 && let Some(filename) = native_lib_filenames[i]
666 {
667let path = find_native_static_library(filename.as_str(), true, sess);
668let src = read(path).unwrap_or_else(|e| {
669 sess.dcx().emit_fatal(diagnostics::ReadFileError { message: e })
670 });
671let (data, _) = create_wrapper_file(sess, ".bundled_lib".to_string(), &src);
672let wrapper_file = emit_wrapper_file(sess, &data, tmpdir.as_ref(), filename.as_str());
673 packed_bundled_libs.push(wrapper_file);
674 } else {
675let 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 }
681682// 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.
685if sess.target.is_like_windows {
686for 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(),
691true,
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 }
699700if 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.
726ab.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.
729if let Some(file) = &metadata_link_file {
730ab.add_file(file, ArchiveEntryKind::Other);
731 }
732 }
733734// Add all bundled static native library dependencies.
735 // Archives added to the end of .rlib archive, see comment above for the reason.
736for lib in packed_bundled_libs {
737 ab.add_file(&lib, ArchiveEntryKind::Other)
738 }
739740ab741}
742743/// 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);
765let mut ab = link_rlib(
766sess,
767archive_builder_builder,
768compiled_modules,
769crate_info,
770metadata,
771 RlibFlavor::StaticlibBase,
772tempdir,
773 );
774let mut all_native_libs = ::alloc::vec::Vec::new()vec![];
775776let res = each_linked_rlib(crate_info, Some(CrateType::StaticLib), &mut |cnum, path| {
777let lto = are_upstream_rust_objects_already_included(sess)
778 && !ignored_for_lto(sess, crate_info, cnum);
779780let native_libs = &crate_info.native_libraries[&cnum];
781let bundled_filenames =
782rmeta_link_cache.native_lib_filenames(&sess.target, path, native_libs);
783let relevant_libs: FxIndexSet<_> = native_libs784 .iter()
785 .enumerate()
786 .filter(|(_, lib)| relevant_lib(sess, lib))
787 .filter_map(|(i, _)| bundled_filenames.get(i).copied().flatten())
788 .collect();
789790let bundled_libs: FxIndexSet<_> = native_libs791 .iter()
792 .enumerate()
793 .filter_map(|(i, _)| bundled_filenames.get(i).copied().flatten())
794 .collect();
795ab.add_archive(
796path,
797 AddArchiveKind::Rlib(rmeta_link_cache, &|fname: &str, entry_kind| {
798// Ignore metadata and rmeta-link files.
799if fname == METADATA_FILENAME || fname == rmeta_link::FILENAME {
800return true;
801 }
802803// Don't include Rust objects if LTO is enabled.
804if lto && entry_kind == ArchiveEntryKind::RustObj {
805return true;
806 }
807808// Skip objects for bundled libs.
809if bundled_libs.contains(&Symbol::intern(fname)) {
810return true;
811 }
812813false
814}),
815 )
816 .unwrap();
817818archive_builder_builder819 .extract_bundled_libs(path, tempdir.as_ref(), &relevant_libs)
820 .unwrap_or_else(|e| sess.dcx().emit_fatal(e));
821822for filename in relevant_libs.iter() {
823let joined = tempdir.as_ref().join(filename.as_str());
824let path = joined.as_path();
825 ab.add_archive(path, AddArchiveKind::Other).unwrap();
826 }
827828all_native_libs.extend(crate_info.native_libraries[&cnum].iter().cloned());
829 });
830if let Err(e) = res {
831sess.dcx().emit_fatal(e);
832 }
833834let hide = sess.opts.unstable_opts.staticlib_hide_internal_symbols;
835let rename = sess.opts.unstable_opts.staticlib_rename_internal_symbols;
836837let 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.
841let 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 );
845846let exported_symbols = if hide || rename {
847if hide && !hide_supported {
848sess.dcx().emit_warn(diagnostics::StaticlibHideInternalSymbolsUnsupported {
849 binary_format: sess.target.archive_format.to_string(),
850 });
851 }
852if rename && !rename_supported {
853sess.dcx().emit_warn(diagnostics::StaticlibRenameInternalSymbolsUnsupported {
854 binary_format: sess.target.archive_format.to_string(),
855 });
856 }
857if (hide && hide_supported) || (rename && rename_supported) {
858crate_info859 .exported_symbols
860 .get(&CrateType::StaticLib)
861 .map(|symbols| symbols.iter().map(|symbol| symbol.name.clone()).collect())
862 } else {
863None864 }
865 } else {
866None867 };
868869let symbols = exported_symbols.map(|exported| ArchiveSymbols {
870exported,
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.
875hide: hide && hide_supported,
876 });
877878ab.build(out_filename, symbols);
879880let crates = crate_info.used_crates.iter();
881882let fmts = crate_info883 .dependency_formats
884 .get(&CrateType::StaticLib)
885 .expect("no dependency formats for staticlib");
886887let mut all_rust_dylibs = ::alloc::vec::Vec::new()vec![];
888for &cnum in crates {
889let Some(Linkage::Dynamic) = fmts.get(cnum) else {
890continue;
891 };
892let crate_name = crate_info.crate_name[&cnum];
893let used_crate_source = &crate_info.used_crate_source[&cnum];
894if 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 }
902903all_native_libs.extend_from_slice(&crate_info.used_libraries);
904905for print in &sess.opts.prints {
906if print.kind == PrintKind::NativeStaticLibs {
907 print_native_static_libs(sess, &print.out, &all_native_libs, &all_rust_dylibs);
908 }
909 }
910}
911912/// 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) {
920let mut dwp_out_filename = executable_out_filename.to_path_buf().into_os_string();
921dwp_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);
923924#[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)]
925struct ThorinSession<Relocations> {
926 arena_data: TypedArena<Vec<u8>>,
927 arena_mmap: TypedArena<Mmap>,
928 arena_relocations: TypedArena<Relocations>,
929 }
930931impl<Relocations> ThorinSession<Relocations> {
932fn alloc_mmap(&self, data: Mmap) -> &Mmap {
933&*self.arena_mmap.alloc(data)
934 }
935 }
936937impl<Relocations> thorin::Session<Relocations> for ThorinSession<Relocations> {
938fn alloc_data(&self, data: Vec<u8>) -> &[u8] {
939&*self.arena_data.alloc(data)
940 }
941942fn alloc_relocation(&self, data: Relocations) -> &Relocations {
943&*self.arena_relocations.alloc(data)
944 }
945946fn read_input(&self, path: &Path) -> std::io::Result<&[u8]> {
947let file = File::open(&path)?;
948let mmap = (unsafe { Mmap::map(file) })?;
949Ok(self.alloc_mmap(mmap))
950 }
951 }
952953match sess.time("run_thorin", || -> Result<(), thorin::Error> {
954let thorin_sess = ThorinSession::default();
955let mut package = thorin::DwarfPackage::new(&thorin_sess);
956957// Input objs contain .o/.dwo files from the current crate.
958match sess.opts.unstable_opts.split_dwarf_kind {
959 SplitDwarfKind::Single => {
960for m in &compiled_modules.modules {
961if let Some(input_obj) = &m.object {
962 package.add_input_object(input_obj)?;
963 }
964if let Some(input_obj) = &m.global_asm_object {
965 package.add_input_object(input_obj)?;
966 }
967 }
968 }
969 SplitDwarfKind::Split => {
970for input_obj in
971compiled_modules.modules.iter().filter_map(|m| m.dwarf_object.as_ref())
972 {
973 package.add_input_object(input_obj)?;
974 }
975 }
976 }
977978// Input rlibs contain .o/.dwo files from dependencies.
979let input_rlibs = crate_info980 .used_crate_source
981 .items()
982 .filter_map(|(_, csource)| csource.rlib.as_ref())
983 .into_sorted_stable_ord();
984985for 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 }
989990// 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.
999package.add_executable(
1000 executable_out_filename,
1001 thorin::MissingReferencedObjectBehaviour::Skip,
1002 )?;
10031004let 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 );
1012let 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()?;
10161017Ok(())
1018 }) {
1019Ok(()) => {}
1020Err(e) => sess.dcx().emit_fatal(diagnostics::ThorinErrorWrapper(e)),
1021 }
1022}
10231024#[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}
10311032fn is_msvc_link_exe(sess: &Session) -> bool {
1033let (linker_path, flavor) = linker_and_flavor(sess);
1034sess.target.is_like_msvc
1035 && flavor == LinkerFlavor::Msvc(Lld::No)
1036// Match exactly "link.exe"
1037&& linker_path.to_str() == Some("link.exe")
1038}
10391040fn is_macos_linker(sess: &Session) -> bool {
1041let (_, flavor) = linker_and_flavor(sess);
1042sess.target.is_like_darwin && #[allow(non_exhaustive_omitted_patterns)] match flavor {
LinkerFlavor::Darwin(..) => true,
_ => false,
}matches!(flavor, LinkerFlavor::Darwin(..))1043}
10441045fn is_windows_gnu_ld(sess: &Session) -> bool {
1046let (_, flavor) = linker_and_flavor(sess);
1047sess.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::Llvm1051}
10521053fn is_windows_gnu_clang(sess: &Session) -> bool {
1054let (_, flavor) = linker_and_flavor(sess);
1055sess.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::Llvm1059}
10601061fn report_linker_output(
1062 sess: &Session,
1063 levels: CodegenLintLevelSpecs,
1064 stdout: &[u8],
1065 stderr: &[u8],
1066) {
1067let mut escaped_stderr = escape_string(&stderr);
1068let mut escaped_stdout = escape_string(&stdout);
1069let mut linker_info = String::new();
10701071{
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);
10731074fn for_each(bytes: &[u8], mut f: impl FnMut(&str, &mut String)) -> String {
1075let mut output = String::new();
1076if 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}");
1078output = String::with_capacity(str.len());
1079for line in str.lines() {
1080 f(line.trim(), &mut output);
1081 }
1082 }
1083escape_string(output.trim().as_bytes())
1084 }
10851086fn 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.
1092let Some((code_colon, _)) = line.match_indices(':').nth(1) else {
1093return false;
1094 };
1095let Some(code) = code_colon.checked_sub(7) else {
1096return false;
1097 };
1098let code = &line.as_bytes()[code..code_colon];
1099code.starts_with(b"LNK") && code[3..].iter().all(u8::is_ascii_digit)
1100 }
11011102if 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");
11041105escaped_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:
1114let 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.
1117if has_lnk_code(line) && !line.ends_with(ilk_but_no_exe) {
1118*output += line;
1119*output += "\r\n"
1120} else {
1121linker_info += line;
1122linker_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");
11271128// FIXME: Tracked by https://github.com/rust-lang/rust/issues/136113
1129let 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.
1144let search_path = |line: &str| {
1145line.starts_with("ld: warning: search path '") && line.ends_with("' not found")
1146 };
1147escaped_stderr = for_each(&stderr, |line, output| {
1148// This duplicate library warning is just not helpful at all.
1149if line.starts_with("ld: warning: ignoring duplicate libraries: ")
1150 || deployment_mismatch(line)
1151 || search_path(line)
1152 {
1153linker_info += line;
1154linker_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");
11621163let 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?
1166let exclude_symbols = |line: &str| {
1167line.starts_with("Warning: .drectve `-exclude-symbols:")
1168 && line.ends_with("' unrecognized")
1169 };
1170escaped_stderr = for_each(&stderr, |line, output| {
1171if exclude_symbols(line) {
1172saw_exclude_symbol = true;
1173linker_info += line;
1174linker_info += "\n";
1175 } else if saw_exclude_symbol && line == "Warning: corrupt .drectve at end of def file" {
1176linker_info += line;
1177linker_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)");
1185escaped_stderr = for_each(&stderr, |line, output| {
1186if line.contains("argument unused during compilation: '-nolibc'") {
1187linker_info += line;
1188linker_info += "\n";
1189 } else {
1190*output += line;
1191*output += "\n"
1192}
1193 });
1194 };
11951196let lint_msg = |msg| {
1197emit_lint_base(
1198sess,
1199LINKER_MESSAGES,
1200levels.linker_messages,
1201None,
1202LinkerOutput { inner: msg },
1203 );
1204 };
1205let lint_info = |msg| {
1206emit_lint_base(sess, LINKER_INFO, levels.linker_info, None, LinkerOutput { inner: msg });
1207 };
12081209if !escaped_stderr.is_empty() {
1210// We already print `warning:` at the start of the diagnostic. Remove it from the linker output if present.
1211escaped_stderr =
1212escaped_stderr.strip_prefix("warning: ").unwrap_or(&escaped_stderr).to_owned();
1213// Windows GNU LD prints uppercase Warning
1214escaped_stderr = escaped_stderr1215 .strip_prefix("Warning: ")
1216 .unwrap_or(&escaped_stderr)
1217 .replace(": warning: ", ": ");
1218lint_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 }
1220if !escaped_stdout.is_empty() {
1221lint_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 }
1223if !linker_info.is_empty() {
1224lint_info(linker_info);
1225 }
1226}
12271228/// 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);
1245let (linker_path, flavor) = linker_and_flavor(sess);
1246let self_contained_components = self_contained_components(sess, crate_type, &linker_path);
12471248// 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
1252let should_archive = crate_type != CrateType::Executable && sess.target.is_like_aix;
1253let archive_member =
1254should_archive.then(|| tmpdir.join(out_filename.file_name().unwrap()).with_extension("so"));
1255let temp_filename = archive_member.as_deref().unwrap_or(out_filename);
12561257let (mut cmd, jobserver_tokens) = linker_with_args(
1258&linker_path,
1259flavor,
1260sess,
1261archive_builder_builder,
1262rmeta_link_cache,
1263crate_type,
1264tmpdir,
1265temp_filename,
1266compiled_modules,
1267crate_info,
1268metadata,
1269self_contained_components,
1270codegen_backend,
1271 );
12721273 linker::disable_localization(&mut cmd);
12741275for (k, v) in sess.target.link_env.as_ref() {
1276 cmd.env(k.as_ref(), v.as_ref());
1277 }
1278for k in sess.target.link_env_remove.as_ref() {
1279 cmd.env_remove(k.as_ref());
1280 }
12811282for print in &sess.opts.prints {
1283if print.kind == PrintKind::LinkArgs {
1284let content = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0:?}\n", cmd))
})format!("{cmd:?}\n");
1285 print.out.overwrite(&content, sess);
1286 }
1287 }
12881289// May have not found libraries in the right formats.
1290sess.dcx().abort_if_errors();
12911292// 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:?}");
1294let unknown_arg_regex =
1295Regex::new(r"(unknown|unrecognized) (command line )?(option|argument)").unwrap();
1296let mut prog;
1297loop {
1298prog = sess.time("run_linker", || exec_linker(sess, &cmd, out_filename, flavor, tmpdir));
1299let Ok(ref output) = progelse {
1300break;
1301 };
1302if output.status.success() {
1303break;
1304 }
1305let mut out = output.stderr.clone();
1306out.extend(&output.stdout);
1307let out = String::from_utf8_lossy(&out);
13081309// 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.
1315if #[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.");
1322for arg in cmd.take_args() {
1323if 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:?}");
1328continue;
1329 }
13301331// 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.
1336if #[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.");
1343for arg in cmd.take_args() {
1344if 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:?}");
1349continue;
1350 }
13511352// 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.
1354if #[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.
1364let self_contained_crt_objects = self_contained_components.is_crt_objects_enabled();
1365let opts = &sess.target;
1366let pre_objects = if self_contained_crt_objects {
1367&opts.pre_link_objects_self_contained
1368 } else {
1369&opts.pre_link_objects
1370 };
1371let post_objects = if self_contained_crt_objects {
1372&opts.post_link_objects_self_contained
1373 } else {
1374&opts.post_link_objects
1375 };
1376let get_objects = |objects: &CrtObjects, kind| {
1377objects1378 .get(&kind)
1379 .into_flat_iter()
1380 .map(|obj| {
1381get_object_file_path(sess, obj, self_contained_crt_objects).into_os_string()
1382 })
1383 .collect::<Vec<_>>()
1384 };
1385let pre_objects_static_pie = get_objects(pre_objects, LinkOutputKind::StaticPicExe);
1386let post_objects_static_pie = get_objects(post_objects, LinkOutputKind::StaticPicExe);
1387let mut pre_objects_static = get_objects(pre_objects, LinkOutputKind::StaticNoPicExe);
1388let 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.
1391if !(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());
1392if !(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());
1393for arg in cmd.take_args() {
1394if arg == "-static-pie" {
1395// Replace the output kind.
1396cmd.arg("-static");
1397 } else if pre_objects_static_pie.contains(&arg) {
1398// Replace the pre-link objects (replace the first and remove the rest).
1399cmd.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).
1402cmd.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:?}");
1408continue;
1409 }
14101411break;
1412 }
14131414// Finished running linker, release the tokens.
1415drop(jobserver_tokens);
14161417match prog {
1418Ok(prog) => {
1419if !prog.status.success() {
1420let mut output = prog.stderr.clone();
1421output.extend_from_slice(&prog.stdout);
1422let escaped_output = escape_linker_output(&output, flavor);
1423let err = diagnostics::LinkingFailed {
1424 linker_path: &linker_path,
1425 exit_status: prog.status,
1426 command: cmd,
1427escaped_output,
1428 verbose: sess.opts.verbose,
1429 sysroot_dir: sess.opts.sysroot.path().to_owned(),
1430 };
1431sess.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.
1435if 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
1438if is_msvc_link_exe(sess) && (code < 1000 || code > 9999) {
1439let is_vs_installed = find_msvc_tools::find_vs_version().is_ok();
1440let has_linker =
1441 find_msvc_tools::find_tool(sess.target.arch.desc(), "link.exe")
1442 .is_some();
14431444sess.dcx().emit_note(diagnostics::LinkExeUnexpectedError);
14451446// 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.
1448const STATUS_STACK_BUFFER_OVERRUN: i32 = 0xc0000409u32 as _;
1449if code == STATUS_STACK_BUFFER_OVERRUN {
1450sess.dcx().emit_note(diagnostics::LinkExeStatusStackBufferOverrun);
1451 }
14521453if is_vs_installed && has_linker {
1454// the linker is broken
1455sess.dcx().emit_note(diagnostics::RepairVSBuildTools);
1456sess.dcx().emit_note(diagnostics::MissingCppBuildToolComponent);
1457 } else if is_vs_installed {
1458// the linker is not installed
1459sess.dcx().emit_note(diagnostics::SelectCppBuildToolWorkload);
1460 } else {
1461// visual studio is not installed
1462sess.dcx().emit_note(diagnostics::VisualStudioNotInstalled);
1463 }
1464 }
1465 }
14661467sess.dcx().abort_if_errors();
1468 }
14691470{
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:?}");
1471report_linker_output(sess, crate_info.lint_level_specs, &prog.stdout, &prog.stderr);
1472 }
1473Err(e) => {
1474let linker_not_found = e.kind() == io::ErrorKind::NotFound;
14751476let err = if linker_not_found {
1477sess.dcx().emit_err(diagnostics::LinkerNotFound { linker_path, error: e })
1478 } else {
1479sess.dcx().emit_err(diagnostics::UnableToExeLinker {
1480linker_path,
1481 error: e,
1482 command_formatted: ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0:?}", cmd))
})format!("{cmd:?}"),
1483 })
1484 };
14851486if sess.target.is_like_msvc && linker_not_found {
1487sess.dcx().emit_note(diagnostics::MsvcMissingLinker);
1488sess.dcx().emit_note(diagnostics::CheckInstalledVisualStudio);
1489sess.dcx().emit_note(diagnostics::InsufficientVSCodeProduct);
1490 }
1491err.raise_fatal();
1492 }
1493 }
14941495match sess.split_debuginfo() {
1496// If split debug information is disabled or located in individual files
1497 // there's nothing to do here.
1498SplitDebuginfo::Off | SplitDebuginfo::Unpacked => {}
14991500// If packed split-debuginfo is requested, but the final compilation
1501 // doesn't actually have any debug information, then we skip this step.
1502SplitDebuginfo::Packedif sess.opts.debuginfo == DebugInfo::None => {}
15031504// 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.
1507SplitDebuginfo::Packedif sess.target.is_like_darwin => {
1508let prog = Command::new("dsymutil").arg(out_filename).output();
1509match prog {
1510Ok(prog) => {
1511if !prog.status.success() {
1512let mut output = prog.stderr.clone();
1513output.extend_from_slice(&prog.stdout);
1514sess.dcx().emit_warn(diagnostics::ProcessingDymutilFailed {
1515 status: prog.status,
1516 output: escape_string(&output),
1517 });
1518 }
1519 }
1520Err(error) => sess.dcx().emit_fatal(diagnostics::UnableToRunDsymutil { error }),
1521 }
1522 }
15231524// On MSVC packed debug information is produced by the linker itself so
1525 // there's no need to do anything else here.
1526SplitDebuginfo::Packedif sess.target.is_like_windows => {}
15271528// ... 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.
1533SplitDebuginfo::Packed => {
1534link_dwarf_object(sess, compiled_modules, crate_info, out_filename)
1535 }
1536 }
15371538let strip = sess.opts.cg.strip;
15391540if sess.target.is_like_darwin {
1541let stripcmd = "rust-objcopy";
1542match (strip, crate_type) {
1543 (Strip::Debuginfo, _) => {
1544strip_with_external_utility(sess, stripcmd, out_filename, &["--strip-debug"])
1545 }
15461547// 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, _) => {
1553strip_with_external_utility(sess, stripcmd, out_filename, &["--strip-all"])
1554 }
1555 (Strip::None, _) => {}
1556 }
1557 }
15581559if 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.
1566let stripcmd = if !sess.host.is_like_solaris { "rust-objcopy" } else { "/usr/bin/strip" };
1567match strip {
1568// Always preserve the symbol table (-x).
1569Strip::Debuginfo => strip_with_external_utility(sess, stripcmd, out_filename, &["-x"]),
1570// Strip::Symbols is handled via the --strip-all linker option.
1571Strip::Symbols => {}
1572 Strip::None => {}
1573 }
1574 }
15751576if sess.target.is_like_aix {
1577// `llvm-strip` doesn't work for AIX - their strip must be used.
1578if !sess.host.is_like_aix {
1579sess.dcx().emit_warn(diagnostics::AixStripNotUsed);
1580 }
1581let stripcmd = "/usr/bin/strip";
1582match strip {
1583 Strip::Debuginfo => {
1584// FIXME: AIX's strip utility only offers option to strip line number information.
1585strip_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.
1589strip_with_external_utility(sess, stripcmd, temp_filename, &["-X32_64", "-r"])
1590 }
1591 Strip::None => {}
1592 }
1593 }
15941595if should_archive {
1596let mut ab = archive_builder_builder.new_archive_builder(sess);
1597ab.add_file(temp_filename, ArchiveEntryKind::Other);
1598ab.build(out_filename, None);
1599 }
1600}
16011602fn strip_with_external_utility(sess: &Session, util: &str, out_filename: &Path, options: &[&str]) {
1603let mut cmd = Command::new(util);
1604cmd.args(options);
16051606let mut new_path = sess.get_tools_search_paths(false);
1607if let Some(path) = env::var_os("PATH") {
1608new_path.extend(env::split_paths(&path));
1609 }
1610cmd.env("PATH", env::join_paths(new_path).unwrap());
16111612let prog = cmd.arg(out_filename).output();
1613match prog {
1614Ok(prog) => {
1615if !prog.status.success() {
1616let mut output = prog.stderr.clone();
1617output.extend_from_slice(&prog.stdout);
1618sess.dcx().emit_warn(diagnostics::StrippingDebugInfoFailed {
1619util,
1620 status: prog.status,
1621 output: escape_string(&output),
1622 });
1623 }
1624 }
1625Err(error) => sess.dcx().emit_fatal(diagnostics::UnableToRun { util, error }),
1626 }
1627}
16281629fn escape_string(s: &[u8]) -> String {
1630match str::from_utf8(s) {
1631Ok(s) => s.to_owned(),
1632Err(_) => ::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}
16351636#[cfg(not(windows))]
1637fn escape_linker_output(s: &[u8], _flavour: LinkerFlavor) -> String {
1638escape_string(s)
1639}
16401641/// 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.
1646if flavour != LinkerFlavor::Msvc(Lld::No) {
1647return escape_string(s);
1648 }
1649match str::from_utf8(s) {
1650Ok(s) => return s.to_owned(),
1651Err(_) => match win::locale_byte_str_to_string(s, win::oem_code_page()) {
1652Some(s) => s,
1653// The string is not UTF-8 and isn't valid for the OEM code page
1654None => format!("Non-UTF-8 output: {}", s.escape_ascii()),
1655 },
1656 }
1657}
16581659/// Wrappers around the Windows API.
1660#[cfg(windows)]
1661mod win {
1662use windows::Win32::Globalization::{
1663 CP_OEMCP, GetLocaleInfoEx, LOCALE_IUSEUTF8LEGACYOEMCP, LOCALE_NAME_SYSTEM_DEFAULT,
1664 LOCALE_RETURN_NUMBER, MB_ERR_INVALID_CHARS, MultiByteToWideChar,
1665 };
16661667/// Get the Windows system OEM code page. This is most notably the code page
1668 /// used for link.exe's output.
1669pub(super) fn oem_code_page() -> u32 {
1670unsafe {
1671let 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.
1674let len = size_of::<u32>() / size_of::<u16>();
1675let data = std::slice::from_raw_parts_mut(&mut cp as *mut u32 as *mut u16, len);
1676let len_written = GetLocaleInfoEx(
1677 LOCALE_NAME_SYSTEM_DEFAULT,
1678 LOCALE_IUSEUTF8LEGACYOEMCP | LOCALE_RETURN_NUMBER,
1679Some(data),
1680 );
1681if 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.
1692pub(super) fn locale_byte_str_to_string(s: &[u8], code_page: u32) -> Option<String> {
1693// `MultiByteToWideChar` requires a length to be a "positive integer".
1694if s.len() > isize::MAX as usize {
1695return None;
1696 }
1697// Error if the string is not valid for the expected code page.
1698let flags = MB_ERR_INVALID_CHARS;
1699// Call MultiByteToWideChar twice.
1700 // First to calculate the length then to convert the string.
1701let mut len = unsafe { MultiByteToWideChar(code_page, flags, s, None) };
1702if len > 0 {
1703let mut utf16 = vec![0; len as usize];
1704 len = unsafe { MultiByteToWideChar(code_page, flags, s, Some(&mut utf16)) };
1705if len > 0 {
1706return utf16.get(..len as usize).map(String::from_utf16_lossy);
1707 }
1708 }
1709None
1710}
1711}
17121713fn add_sanitizer_libraries(
1714 sess: &Session,
1715 flavor: LinkerFlavor,
1716 crate_type: CrateType,
1717 linker: &mut dyn Linker,
1718) {
1719if sess.target.is_like_android {
1720// Sanitizer runtime libraries are provided dynamically on Android
1721 // targets.
1722return;
1723 }
17241725if sess.opts.unstable_opts.external_clangrt {
1726// Linking against in-tree sanitizer runtimes is disabled via
1727 // `-Z external-clangrt`
1728return;
1729 }
17301731if #[allow(non_exhaustive_omitted_patterns)] match crate_type {
CrateType::Rlib | CrateType::StaticLib => true,
_ => false,
}matches!(crate_type, CrateType::Rlib | CrateType::StaticLib) {
1732return;
1733 }
17341735// 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.
1739if #[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 {
1744return;
1745 }
17461747let sanitizer = sess.sanitizers();
1748if sanitizer.contains(SanitizerSet::ADDRESS) {
1749link_sanitizer_runtime(sess, flavor, linker, "asan");
1750 }
1751if sanitizer.contains(SanitizerSet::DATAFLOW) {
1752link_sanitizer_runtime(sess, flavor, linker, "dfsan");
1753 }
1754if sanitizer.contains(SanitizerSet::LEAK)
1755 && !sanitizer.contains(SanitizerSet::ADDRESS)
1756 && !sanitizer.contains(SanitizerSet::HWADDRESS)
1757 {
1758link_sanitizer_runtime(sess, flavor, linker, "lsan");
1759 }
1760if sanitizer.contains(SanitizerSet::MEMORY) {
1761link_sanitizer_runtime(sess, flavor, linker, "msan");
1762 }
1763if sanitizer.contains(SanitizerSet::THREAD) {
1764link_sanitizer_runtime(sess, flavor, linker, "tsan");
1765 }
1766if sanitizer.contains(SanitizerSet::HWADDRESS) {
1767link_sanitizer_runtime(sess, flavor, linker, "hwasan");
1768 }
1769if sanitizer.contains(SanitizerSet::SAFESTACK) {
1770link_sanitizer_runtime(sess, flavor, linker, "safestack");
1771 }
1772if sanitizer.contains(SanitizerSet::REALTIME) {
1773link_sanitizer_runtime(sess, flavor, linker, "rtsan");
1774 }
1775if 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 {
1779link_sanitizer_runtime(sess, flavor, linker, "ubsan");
1780 }
1781}
17821783fn link_sanitizer_runtime(
1784 sess: &Session,
1785 flavor: LinkerFlavor,
1786 linker: &mut dyn Linker,
1787 name: &str,
1788) {
1789fn find_sanitizer_runtime(sess: &Session, filename: &str) -> PathBuf {
1790let path = sess.target_tlib_path.dir.join(filename);
1791if path.exists() {
1792sess.target_tlib_path.dir.to_path_buf()
1793 } else {
1794 filesearch::make_target_lib_path(
1795&sess.opts.sysroot.default,
1796sess.opts.target_triple.tuple(),
1797 )
1798 }
1799 }
18001801let 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();
18031804if 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).
1809let filename = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("rustc{0}_rt.{1}", channel, name))
})format!("rustc{channel}_rt.{name}");
1810let path = find_sanitizer_runtime(sess, &filename);
1811let rpath = path.to_str().expect("non-utf8 component in path");
1812linker.link_args(&["-rpath", rpath]);
1813linker.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.
1817linker.link_arg("/INFERASANLIBS");
1818 } else {
1819let filename = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("librustc{0}_rt.{1}.a", channel,
name))
})format!("librustc{channel}_rt.{name}.a");
1820let path = find_sanitizer_runtime(sess, &filename).join(&filename);
1821linker.link_staticlib_by_path(&path, true);
1822 }
1823}
18241825/// 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}
18421843/// This functions tries to determine the appropriate linker (and corresponding LinkerFlavor) to use
1844pub fn linker_and_flavor(sess: &Session) -> (PathBuf, LinkerFlavor) {
1845fn infer_from(
1846 sess: &Session,
1847 linker: Option<PathBuf>,
1848 flavor: Option<LinkerFlavor>,
1849 features: LinkerFeaturesCli,
1850 ) -> Option<(PathBuf, LinkerFlavor)> {
1851let flavor = flavor.map(|flavor| adjust_flavor_to_features(flavor, features));
1852match (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((
1856PathBuf::from(match flavor {
1857 LinkerFlavor::Gnu(Cc::Yes, _)
1858 | LinkerFlavor::Darwin(Cc::Yes, _)
1859 | LinkerFlavor::WasmLld(Cc::Yes)
1860 | LinkerFlavor::Unix(Cc::Yes) => {
1861if 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 => {
1882if falsecfg!(windows) {
1883"emcc.bat"
1884} else {
1885"emcc"
1886}
1887 }
1888 LinkerFlavor::Bpf => "bpf-linker",
1889 LinkerFlavor::Llbc => "llvm-bitcode-linker",
1890 }),
1891flavor,
1892 )),
1893 (Some(linker), None) => {
1894let stem = linker.file_stem().and_then(|stem| stem.to_str()).unwrap_or_else(|| {
1895sess.dcx().emit_fatal(diagnostics::LinkerFileStem);
1896 });
1897let flavor = sess.target.linker_flavor.with_linker_hints(stem);
1898let flavor = adjust_flavor_to_features(flavor, features);
1899Some((linker, flavor))
1900 }
1901 (None, None) => None,
1902 }
1903 }
19041905// 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.
1909fn 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.
1914if features.enabled.contains(LinkerFeatures::LLD) {
1915flavor.with_lld_enabled()
1916 } else if features.disabled.contains(LinkerFeatures::LLD) {
1917flavor.with_lld_disabled()
1918 } else {
1919flavor1920 }
1921 }
19221923let features = sess.opts.cg.linker_features;
19241925// linker and linker flavor specified via command line have precedence over what the target
1926 // specification specifies
1927let linker_flavor = match sess.opts.cg.linker_flavor {
1928// The linker flavors that are non-target specific can be directly translated to LinkerFlavor
1929Some(LinkerFlavorCli::Llbc) => Some(LinkerFlavor::Llbc),
1930// The linker flavors that corresponds to targets needs logic that keeps the base LinkerFlavor
1931linker_flavor => {
1932linker_flavor.map(|flavor| sess.target.linker_flavor.with_cli_hints(flavor))
1933 }
1934 };
1935if let Some(ret) = infer_from(sess, sess.opts.cg.linker.clone(), linker_flavor, features) {
1936return ret;
1937 }
19381939if let Some(ret) = infer_from(
1940sess,
1941sess.target.linker.as_deref().map(PathBuf::from),
1942Some(sess.target.linker_flavor),
1943features,
1944 ) {
1945return ret;
1946 }
19471948::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}
19501951/// 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.
1956if sess.opts.debuginfo == config::DebugInfo::None {
1957return (false, false);
1958 }
19591960match (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}
19761977#[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}
19821983fn print_native_static_libs(
1984 sess: &Session,
1985 out: &OutFileName,
1986 all_native_libs: &[NativeLib],
1987 all_rust_dylibs: &[&Path],
1988) {
1989let mut lib_args: Vec<_> = all_native_libs1990 .iter()
1991 .filter(|l| relevant_lib(sess, l))
1992 .filter_map(|lib| {
1993let name = lib.name;
1994match lib.kind {
1995 NativeLibKind::Static { bundle: Some(false), .. }
1996 | NativeLibKind::Dylib { .. }
1997 | NativeLibKind::Unspecified => {
1998let verbatim = lib.verbatim;
1999if sess.target.is_like_msvc {
2000let (prefix, suffix) = sess.staticlib_components(verbatim);
2001Some(::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() {
2003Some(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("-l{0}{1}",
if verbatim { ":" } else { "" }, name))
})format!("-l{}{}", if verbatim { ":" } else { "" }, name))
2004 } else {
2005Some(::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
2010Some(::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
2013NativeLibKind::Static { bundle: None | Some(true), .. }
2014 | NativeLibKind::LinkArg2015 | NativeLibKind::WasmImportModule2016 | NativeLibKind::RawDylib { .. } => None,
2017 }
2018 })
2019// deduplication of consecutive repeated libraries, see rust-lang/rust#113209
2020.dedup()
2021 .collect();
2022for path in all_rust_dylibs {
2023// FIXME deduplicate with add_dynamic_crate
20242025 // Just need to tell the linker about where the library lives and
2026 // what its name is
2027let parent = path.parent();
2028if let Some(dir) = parent {
2029let dir = fix_windows_verbatim_for_gcc(dir);
2030if sess.target.is_like_msvc {
2031let 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 }
2039let stem = path.file_stem().unwrap().to_str().unwrap();
2040// Convert library file-stem into a cc -l argument.
2041let lib = if let Some(lib) = stem.strip_prefix("lib")
2042 && !sess.target.is_like_windows
2043 {
2044 lib
2045 } else {
2046 stem
2047 };
2048let path = parent.unwrap_or_else(|| Path::new(""));
2049if 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.
2054let name = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}.dll.lib", lib))
})format!("{lib}.dll.lib");
2055if 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 }
20622063match out {
2064 OutFileName::Real(path) => {
2065out.overwrite(&lib_args.join(" "), sess);
2066sess.dcx().emit_note(diagnostics::StaticLibraryNativeArtifactsToFile { path });
2067 }
2068 OutFileName::Stdout => {
2069sess.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.
2072sess.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}
20762077fn get_object_file_path(sess: &Session, name: &str, self_contained: bool) -> PathBuf {
2078let file_path = sess.target_tlib_path.dir.join(name);
2079if file_path.exists() {
2080return file_path;
2081 }
2082// Special directory with objects used only in self-contained linkage mode
2083if self_contained {
2084let file_path = sess.target_tlib_path.dir.join("self-contained").join(name);
2085if file_path.exists() {
2086return file_path;
2087 }
2088 }
20892090// Note: this is O(n^2), it could be expensive-ish if we lookup many object files for many
2091 // search paths
2092for search_path in sess.target_filesearch().search_paths(PathKind::Native) {
2093let file_path = search_path.dir.join(name);
2094if file_path.exists() {
2095return file_path;
2096 }
2097 }
2098PathBuf::from(name)
2099}
21002101fn 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.
2117if !cmd.very_likely_to_exceed_some_spawn_limit() {
2118match cmd.command().stdout(Stdio::piped()).stderr(Stdio::piped()).spawn() {
2119Ok(child) => {
2120let output = child.wait_with_output();
2121 flush_linked_file(&output, out_filename)?;
2122return output;
2123 }
2124Err(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 }
2127Err(e) => return Err(e),
2128 }
2129 }
21302131{
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");
2132let mut cmd2 = cmd.clone();
2133let mut args = String::new();
2134for 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).
2142is_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 }
2149let file = tmpdir.join("linker-arguments");
2150let bytes = if sess.target.is_like_msvc {
2151let mut out = Vec::with_capacity((1 + args.len()) * 2);
2152// start the stream with a UTF-16 BOM
2153for c in std::iter::once(0xFEFF).chain(args.encode_utf16()) {
2154// encode in little endian
2155out.push(c as u8);
2156 out.push((c >> 8) as u8);
2157 }
2158out2159 } else {
2160args.into_bytes()
2161 };
2162 fs::write(&file, &bytes)?;
2163cmd2.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);
2165let output = cmd2.output();
2166 flush_linked_file(&output, out_filename)?;
2167return output;
21682169#[cfg(not(windows))]
2170fn flush_linked_file(_: &io::Result<Output>, _: &Path) -> io::Result<()> {
2171Ok(())
2172 }
21732174#[cfg(windows)]
2175fn 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
21862187if let &Ok(ref out) = command_output {
2188if out.status.success() {
2189if let Ok(of) = fs::OpenOptions::new().write(true).open(out_filename) {
2190 of.sync_all()?;
2191 }
2192 }
2193 }
21942195Ok(())
2196 }
21972198#[cfg(unix)]
2199fn command_line_too_big(err: &io::Error) -> bool {
2200err.raw_os_error() == Some(::libc::E2BIG)
2201 }
22022203#[cfg(windows)]
2204fn command_line_too_big(err: &io::Error) -> bool {
2205const ERROR_FILENAME_EXCED_RANGE: i32 = 206;
2206 err.raw_os_error() == Some(ERROR_FILENAME_EXCED_RANGE)
2207 }
22082209#[cfg(not(any(unix, windows)))]
2210fn command_line_too_big(_: &io::Error) -> bool {
2211false
2212}
22132214struct Escape<'a> {
2215 arg: &'a str,
2216 is_like_msvc: bool,
2217 }
22182219impl<'a> fmt::Displayfor Escape<'a> {
2220fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2221if 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.
2229f.write_fmt(format_args!("\""))write!(f, "\"")?;
2230for c in self.arg.chars() {
2231match 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 }
2236f.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.
2248for c in self.arg.chars() {
2249match 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 }
2255Ok(())
2256 }
2257 }
2258}
22592260fn link_output_kind(sess: &Session, crate_type: CrateType) -> LinkOutputKind {
2261let 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::DynamicPicExe2265 }
2266 (CrateType::Executable, false, _) => LinkOutputKind::DynamicNoPicExe,
2267 (CrateType::Executable, true, RelocModel::Pic | RelocModel::Pie) => {
2268 LinkOutputKind::StaticPicExe2269 }
2270 (CrateType::Executable, true, _) => LinkOutputKind::StaticNoPicExe,
2271 (_, true, _) => LinkOutputKind::StaticDylib,
2272 (_, false, _) => LinkOutputKind::DynamicDylib,
2273 };
22742275// Adjust the output kind to target capabilities.
2276let opts = &sess.target;
2277let pic_exe_supported = opts.position_independent_executables;
2278let static_pic_exe_supported = opts.static_position_independent_executables;
2279let static_dylib_supported = opts.crt_static_allows_dylibs;
2280match kind {
2281 LinkOutputKind::DynamicPicExeif !pic_exe_supported => LinkOutputKind::DynamicNoPicExe,
2282 LinkOutputKind::StaticPicExeif !static_pic_exe_supported => LinkOutputKind::StaticNoPicExe,
2283 LinkOutputKind::StaticDylibif !static_dylib_supported => LinkOutputKind::DynamicDylib,
2284_ => kind,
2285 }
2286}
22872288// Returns true if linker is located within sysroot
2289fn detect_self_contained_mingw(sess: &Session, linker: &Path) -> bool {
2290let linker_with_extension = if falsecfg!(windows) && linker.extension().is_none() {
2291linker.with_extension("exe")
2292 } else {
2293linker.to_path_buf()
2294 };
2295for dir in env::split_paths(&env::var_os("PATH").unwrap_or_default()) {
2296let full_path = dir.join(&linker_with_extension);
2297// If linker comes from sysroot assume self-contained mode
2298if full_path.is_file() && !full_path.starts_with(sess.opts.sysroot.path()) {
2299return false;
2300 }
2301 }
2302true
2303}
23042305/// 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`.
2315let self_contained =
2316if 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.
2319if sess.target.link_self_contained.is_disabled() {
2320sess.dcx().emit_err(diagnostics::UnsupportedLinkSelfContained);
2321 }
2322self_contained2323 } else {
2324match sess.target.link_self_contained {
2325 LinkSelfContainedDefault::False => false,
2326 LinkSelfContainedDefault::True => true,
23272328 LinkSelfContainedDefault::WithComponents(components) => {
2329// For target specs with explicitly enabled components, we can return them
2330 // directly.
2331return components;
2332 }
23332334// 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).
2337LinkSelfContainedDefault::InferredForMusl => sess.crt_static(Some(crate_type)),
2338 LinkSelfContainedDefault::InferredForMingw => {
2339sess.host == sess.target
2340 && sess.target.cfg_abi != CfgAbi::Uwp2341 && detect_self_contained_mingw(sess, linker)
2342 }
2343 }
2344 };
2345if self_contained {
2346LinkSelfContainedComponents::all()
2347 } else {
2348LinkSelfContainedComponents::empty()
2349 }
2350}
23512352/// 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.
2362let opts = &sess.target;
2363let empty = Default::default();
2364let 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&empty2370 };
2371for obj in objects.get(&link_output_kind).into_flat_iter() {
2372 cmd.add_object(&get_object_file_path(sess, obj, self_contained));
2373 }
2374}
23752376/// 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) {
2383let objects = if self_contained {
2384&sess.target.post_link_objects_self_contained
2385 } else {
2386&sess.target.post_link_objects
2387 };
2388for obj in objects.get(&link_output_kind).into_flat_iter() {
2389 cmd.add_object(&get_object_file_path(sess, obj, self_contained));
2390 }
2391}
23922393/// 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) {
2396if let Some(args) = sess.target.pre_link_args.get(&flavor) {
2397cmd.verbatim_args(args.iter().map(Deref::deref));
2398 }
23992400cmd.verbatim_args(&sess.opts.unstable_opts.pre_link_args);
2401}
24022403/// 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) {
2405match (crate_type, &sess.target.link_script) {
2406 (CrateType::Cdylib | CrateType::Executable, Some(script)) => {
2407if !sess.target.linker_flavor.is_gnu() {
2408sess.dcx().emit_fatal(diagnostics::LinkScriptUnavailable);
2409 }
24102411let file_name = ["rustc", &sess.target.llvm_target, "linkfile.ld"].join("-");
24122413let path = tmpdir.join(file_name);
2414if let Err(error) = fs::write(&path, script.as_ref()) {
2415sess.dcx().emit_fatal(diagnostics::LinkScriptWriteFailure { path, error });
2416 }
24172418cmd.link_arg("--script").link_arg(path);
2419 }
2420_ => {}
2421 }
2422}
24232424/// 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) {
2427cmd.verbatim_args(&sess.opts.cg.link_args);
2428}
24292430/// 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) {
2439let any_dynamic_crate = crate_type == CrateType::Dylib2440 || crate_type == CrateType::Sdylib2441 || crate_info.dependency_formats.iter().any(|(ty, list)| {
2442*ty == crate_type && list.iter().any(|&linkage| linkage == Linkage::Dynamic)
2443 });
2444if any_dynamic_crate {
2445if let Some(args) = sess.target.late_link_args_dynamic.get(&flavor) {
2446cmd.verbatim_args(args.iter().map(Deref::deref));
2447 }
2448 } else if let Some(args) = sess.target.late_link_args_static.get(&flavor) {
2449cmd.verbatim_args(args.iter().map(Deref::deref));
2450 }
2451if let Some(args) = sess.target.late_link_args.get(&flavor) {
2452cmd.verbatim_args(args.iter().map(Deref::deref));
2453 }
2454}
24552456/// 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) {
2459if let Some(args) = sess.target.post_link_args.get(&flavor) {
2460cmd.verbatim_args(args.iter().map(Deref::deref));
2461 }
2462}
24632464/// 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) {
2501let should_export_symbols = sess.target.is_like_msvc
2502 && !exported_symbols.is_empty()
2503 && (crate_type != CrateType::Executable2504 || sess.opts.unstable_opts.export_executable_symbols);
2505if linked_symbols.is_empty() && !should_export_symbols {
2506return;
2507 }
25082509let Some(mut file) = super::metadata::create_object_file(sess) else {
2510return;
2511 };
25122513if 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.
2516file.add_section(Vec::new(), ".text".into(), object::SectionKind::Text);
25172518// We handle the name decoration of COFF targets in `symbol_export.rs`, so disable the
2519 // default mangler in `object` crate.
2520file.set_mangling(object::write::Mangling::None);
2521 }
25222523if 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.
2527file.set_subsections_via_symbols();
2528 }
25292530// 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.
2532let ld64_section_helper = if file.format() == object::BinaryFormat::MachO {
2533Some(file.add_section(
2534file.segment_name(object::write::StandardSegment::Data).to_vec(),
2535"__data".into(),
2536 object::SectionKind::Data,
2537 ))
2538 } else {
2539None2540 };
25412542for (sym, kind) in linked_symbols.iter() {
2543let 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 });
25572558// 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.
2594if 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 }
25992600if 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.
2613fn msvc_drectve_export(symbol: &SymbolExport) -> String {
2614let data = if symbol.kind == SymbolExportKind::Data { ",DATA" } else { "" };
26152616if 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 }
26242625let drectve = exported_symbols.iter().map(msvc_drectve_export).collect::<String>();
26262627let section = file.add_section(::alloc::vec::Vec::new()vec![], b".drectve".to_vec(), object::SectionKind::Linker);
2628file.append_section_data(section, drectve.as_bytes(), 1);
2629 }
26302631let path = tmpdir.join("symbols.o");
2632let result = std::fs::write(&path, file.write().unwrap());
2633if let Err(error) = result {
2634sess.dcx().emit_fatal(diagnostics::FailedToWrite { path, error });
2635 }
2636cmd.add_object(&path);
2637}
26382639/// Add object files containing code from the current crate.
2640fn add_local_crate_regular_objects(cmd: &mut dyn Linker, compiled_modules: &CompiledModules) {
2641for m in &compiled_modules.modules {
2642if let Some(obj) = &m.object {
2643 cmd.add_object(obj);
2644 }
2645if let Some(obj) = &m.global_asm_object {
2646 cmd.add_object(obj);
2647 }
2648 }
2649}
26502651/// 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) {
2658if needs_allocator_shim_for_linking(&crate_info.dependency_formats, crate_type)
2659 && let Some(m) = &compiled_modules.allocator_module
2660 {
2661if let Some(obj) = &m.object {
2662cmd.add_object(obj);
2663 }
2664if let Some(obj) = &m.global_asm_object {
2665cmd.add_object(obj);
2666 }
2667 }
2668}
26692670/// 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.
2683if #[allow(non_exhaustive_omitted_patterns)] match crate_type {
CrateType::Dylib | CrateType::ProcMacro => true,
_ => false,
}matches!(crate_type, CrateType::Dylib | CrateType::ProcMacro) {
2684let data = archive_builder_builder.create_dylib_metadata_wrapper(
2685sess,
2686&metadata,
2687&crate_info.metadata_symbol,
2688 );
2689let obj = emit_wrapper_file(sess, &data, tmpdir, "rmeta.o");
26902691cmd.add_object(&obj);
2692 }
2693}
26942695/// 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) {
2702if !sess.opts.unstable_opts.link_native_libraries {
2703return;
2704 }
27052706let fallback = Some(NativeLibSearchFallback { self_contained_components, apple_sdk_root });
2707let _ = walk_native_lib_search_dirs(sess, fallback, |dir, is_framework| {
2708if is_framework {
2709cmd.framework_path(dir);
2710 } else {
2711cmd.include_path(&fix_windows_verbatim_for_gcc(dir));
2712 }
2713 ControlFlow::<()>::Continue(())
2714 });
2715}
27162717/// 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) {
2720match 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}
27272728/// 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) {
2735if !sess.target.has_rpath {
2736return;
2737 }
27382739// 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
2742if sess.opts.cg.rpath {
2743let libs = crate_info2744 .used_crates
2745 .iter()
2746 .filter_map(|cnum| crate_info.used_crate_source[cnum].dylib.as_deref())
2747 .collect::<Vec<_>>();
2748let 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 };
2754cmd.link_args(&rpath::get_rpath_linker_args(&rpath_config));
2755 }
2756}
27572758fn strip_numeric_suffix<'a>(base: &'a str, suffix: impl AsRef<str>, fallback: &'a str) -> &'a str {
2759if suffix.as_ref().parse::<u32>().is_ok() { base } else { fallback }
2760}
27612762fn undecorate_c_symbol<'a>(
2763 name: &'a str,
2764 sess: &Session,
2765 kind: SymbolExportKind,
2766) -> Option<&'a str> {
2767match 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.
2771name.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.
2777if name.starts_with('?') {
2778return Some(name);
2779 }
2780Some(match sess.target.arch {
2781 Arch::X86 => {
2782// COFF 32-bit: strip calling-convention decorations.
2783if let Some(rest) = name.strip_prefix('@') {
2784// fastcall: @foo@N -> foo
2785rest.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('_') {
2789if let Some((base, suffix)) = stripped.rsplit_once('@') {
2790// stdcall: _foo@N -> foo
2791strip_numeric_suffix(base, suffix, stripped)
2792 } else {
2793// cdecl: _foo -> foo
2794stripped2795 }
2796 } else {
2797// vectorcall: foo@@N -> foo
2798name.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.
2805name.rsplit_once("@@")
2806 .map(|(base, suffix)| strip_numeric_suffix(base, suffix, name))
2807 .unwrap_or(name)
2808 }
2809 Arch::Arm64ECif kind == SymbolExportKind::Text => {
2810// Arm64EC: `#` prefix distinguishes ARM64EC text symbols from x64 thunks.
2811name.strip_prefix('#').unwrap_or(name)
2812 }
2813_ => name,
2814 })
2815 }
2816// ELF: no decoration
2817_ => Some(name),
2818 }
2819}
28202821fn add_c_staticlib_symbols(
2822 sess: &Session,
2823 lib: &NativeLib,
2824 out: &mut Vec<SymbolExport>,
2825) -> io::Result<()> {
2826let file_path = find_native_static_library(lib.name.as_str(), lib.verbatim, sess);
28272828let archive_map = unsafe { Mmap::map(File::open(&file_path)?)? };
28292830let archive = object::read::archive::ArchiveFile::parse(&*archive_map)
2831 .map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
28322833for member in archive.members() {
2834let member = member.map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
28352836let data = member
2837 .data(&*archive_map)
2838 .map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
28392840// clang LTO: raw LLVM bitcode
2841if data.starts_with(b"BC\xc0\xde") {
2842return Err(io::Error::new(
2843 io::ErrorKind::InvalidData,
2844"LLVM bitcode object in C static library (LTO not supported)",
2845 ));
2846 }
28472848let object = object::File::parse(&*data)
2849 .map_err(|e| io::Error::new(io::ErrorKind::InvalidData, e))?;
28502851// gcc / clang ELF / Mach-O LTO
2852if object.sections().any(|s| {
2853 s.name().map(|n| n.starts_with(".gnu.lto_") || n == ".llvm.lto").unwrap_or(false)
2854 }) {
2855return Err(io::Error::new(
2856 io::ErrorKind::InvalidData,
2857"LTO object in C static library is not supported",
2858 ));
2859 }
28602861for 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).
2865let scope = symbol.scope();
2866if scope != object::SymbolScope::Dynamic
2867 && !(sess.target.binary_format == BinaryFormat::Coff
2868 && scope == object::SymbolScope::Linkage)
2869 {
2870continue;
2871 }
28722873let name = match symbol.name() {
2874Ok(n) => n,
2875Err(_) => continue,
2876 };
28772878let export_kind = match symbol.kind() {
2879 object::SymbolKind::Text => SymbolExportKind::Text,
2880 object::SymbolKind::Data => SymbolExportKind::Data,
2881_ => continue,
2882 };
28832884let Some(undecorated) = undecorate_c_symbol(name, sess, export_kind) else {
2885continue;
2886 };
2887 out.push(SymbolExport::with_link_name(
2888 undecorated.to_string(),
2889 export_kind,
2890 name.to_string(),
2891 ));
2892 }
2893 }
28942895Ok(())
2896}
28972898/// 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>) {
2921let self_contained_crt_objects = self_contained_components.is_crt_objects_enabled();
2922let cmd = &mut *super::linker::get_linker(
2923sess,
2924path,
2925flavor,
2926self_contained_components.are_any_components_enabled(),
2927&crate_info.target_cpu,
2928codegen_backend,
2929 );
2930let link_output_kind = link_output_kind(sess, crate_type);
29312932let mut export_symbols = crate_info.exported_symbols[&crate_type].clone();
29332934if crate_type == CrateType::Cdylib {
2935let mut seen = FxHashSet::default();
29362937for lib in &crate_info.used_libraries {
2938if let NativeLibKind::Static { export_symbols: Some(true), .. } = lib.kind
2939 && seen.insert((lib.name, lib.verbatim))
2940 {
2941if 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 }
29502951// ------------ Early order-dependent options ------------
29522953 // 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).
2958cmd.export_symbols(tmpdir, crate_type, &export_symbols);
29592960// 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.
2964add_pre_link_args(cmd, sess, flavor);
29652966// ------------ Object code and libraries, order-dependent ------------
29672968 // Pre-link CRT objects.
2969add_pre_link_objects(cmd, sess, flavor, link_output_kind, self_contained_crt_objects);
29702971add_linked_symbol_object(
2972cmd,
2973sess,
2974tmpdir,
2975crate_type,
2976&crate_info.linked_symbols[&crate_type],
2977&export_symbols,
2978 );
29792980// Sanitizer libraries.
2981add_sanitizer_libraries(sess, flavor, crate_type, cmd);
29822983// 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.
3010add_local_crate_regular_objects(cmd, compiled_modules);
3011add_local_crate_metadata_objects(
3012cmd,
3013sess,
3014archive_builder_builder,
3015crate_type,
3016tmpdir,
3017crate_info,
3018metadata,
3019 );
3020add_local_crate_allocator_objects(cmd, compiled_modules, crate_info, crate_type);
30213022// 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.
3030cmd.add_as_needed();
30313032// Local native libraries of all kinds.
3033add_local_native_libraries(
3034cmd,
3035sess,
3036archive_builder_builder,
3037rmeta_link_cache,
3038crate_info,
3039tmpdir,
3040link_output_kind,
3041 );
30423043if 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(_))) {
3044cmd.link_dylib_by_name("omptarget", false, true);
3045cmd.link_dylib_by_name("omp", false, true);
3046cmd.link_args(["-z", "nostart-stop-gc"]);
3047cmd.link_arg("-rpath");
3048cmd.link_arg(std::path::absolute(&*sess.target_tlib_path.dir).unwrap());
3049 }
30503051// Upstream rust crates and their non-dynamic native libraries.
3052add_upstream_rust_crates(
3053cmd,
3054sess,
3055archive_builder_builder,
3056rmeta_link_cache,
3057crate_info,
3058crate_type,
3059tmpdir,
3060link_output_kind,
3061 );
30623063// Dynamic native libraries from upstream crates.
3064add_upstream_native_libraries(
3065cmd,
3066sess,
3067archive_builder_builder,
3068rmeta_link_cache,
3069crate_info,
3070tmpdir,
3071link_output_kind,
3072 );
30733074// Raw-dylibs from all crates.
3075let raw_dylib_dir = tmpdir.join("raw-dylibs");
3076if 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.
3081if let Err(error) = fs::create_dir(&raw_dylib_dir) {
3082sess.dcx().emit_fatal(diagnostics::CreateTempDir { error })
3083 }
3084cmd.include_path(&raw_dylib_dir);
3085 }
30863087// Link with the import library generated for any raw-dylib functions.
3088if sess.target.is_like_windows {
3089for 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,
3094true,
3095 ) {
3096 cmd.add_object(&output_path);
3097 }
3098 } else {
3099for (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.
3105cmd.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.
3112let dependency_linkage = crate_info3113 .dependency_formats
3114 .get(&crate_type)
3115 .expect("failed to find crate type in dependency format list");
31163117// We sort the libraries below
3118#[allow(rustc::potential_query_instability)]
3119let mut native_libraries_from_nonstatics = crate_info3120 .native_libraries
3121 .iter()
3122 .filter_map(|(&cnum, libraries)| {
3123if sess.target.is_like_windows {
3124 (dependency_linkage[cnum] != Linkage::Static).then_some(libraries)
3125 } else {
3126Some(libraries)
3127 }
3128 })
3129 .flatten()
3130 .collect::<Vec<_>>();
3131native_libraries_from_nonstatics.sort_unstable_by(|a, b| a.name.as_str().cmp(b.name.as_str()));
31323133if sess.target.is_like_windows {
3134for output_path in raw_dylib::create_raw_dylib_dll_import_libs(
3135 sess,
3136 archive_builder_builder,
3137 native_libraries_from_nonstatics,
3138 tmpdir,
3139false,
3140 ) {
3141 cmd.add_object(&output_path);
3142 }
3143 } else {
3144for (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.
3150cmd.link_dylib_by_name(&link_path, true, as_needed);
3151 }
3152 }
31533154// 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.
3156cmd.reset_per_library_state();
31573158// 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.
3161add_late_link_args(cmd, sess, flavor, crate_type, crate_info);
31623163// ------------ Arbitrary order-independent options ------------
31643165 // Add order-independent options determined by rustc from its compiler options,
3166 // target properties and source code.
3167add_order_independent_options(
3168cmd,
3169sess,
3170link_output_kind,
3171self_contained_components,
3172flavor,
3173crate_type,
3174crate_info,
3175out_filename,
3176tmpdir,
3177 );
31783179// 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.
3182add_user_defined_link_args(cmd, sess);
31833184// ------------ 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.
3189add_link_script(cmd, sess, tmpdir, crate_type);
31903191// ------------ Object code and libraries, order-dependent ------------
31923193 // Post-link CRT objects.
3194add_post_link_objects(cmd, sess, link_output_kind, self_contained_crt_objects);
31953196// ------------ Late order-dependent options ------------
31973198 // 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.
3202add_post_link_args(cmd, sess, flavor);
32033204// Only LLD supports controlling parallelism at the moment.
3205let mut tokens = Vec::new();
3206if 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.
3211let client = jobserver::client();
32123213let mut unsupported = false;
3214for _ in 0..limit.get() - 1 {
3215match client.try_acquire() {
3216Ok(Some(token)) => tokens.push(token),
3217Ok(None) => {}
3218Err(e) if e.kind() == io::ErrorKind::Unsupported => {
3219if !tokens.is_empty() {
::core::panicking::panic("assertion failed: tokens.is_empty()")
};assert!(tokens.is_empty());
3220 unsupported = true;
3221break;
3222 }
3223Err(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 }
32263227let 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.
3231let threads = if unsupported { limit.get() } else { 1 + tokens.len() };
3232cmd.link_arg(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("{0}{1}", prefix, threads))
})format!("{prefix}{threads}"));
3233 }
32343235 (cmd.take_cmd(), tokens)
3236}
32373238fn 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.
3250add_lld_args(cmd, sess, flavor, self_contained_components);
32513252add_apple_link_args(cmd, sess, flavor);
32533254let apple_sdk_root = add_apple_sdk(cmd, sess, flavor);
32553256if sess.target.os == Os::Fuchsia3257 && crate_type == CrateType::Executable3258 && !#[allow(non_exhaustive_omitted_patterns)] match flavor {
LinkerFlavor::Gnu(Cc::Yes, _) => true,
_ => false,
}matches!(flavor, LinkerFlavor::Gnu(Cc::Yes, _))3259 {
3260let prefix = if sess.sanitizers().contains(SanitizerSet::ADDRESS) { "asan/" } else { "" };
3261cmd.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 }
32633264if sess.target.eh_frame_header {
3265cmd.add_eh_frame_header();
3266 }
32673268// Make the binary compatible with data execution prevention schemes.
3269cmd.add_no_exec();
32703271if self_contained_components.is_crt_objects_enabled() {
3272cmd.no_crt_objects();
3273 }
32743275if sess.target.os == Os::Emscripten {
3276cmd.cc_arg("-fwasm-exceptions");
3277 }
32783279if flavor == LinkerFlavor::Llbc {
3280cmd.link_args(&[
3281"--target",
3282&versioned_llvm_target(sess),
3283"--target-cpu",
3284&crate_info.target_cpu,
3285 ]);
3286if crate_info.target_features.len() > 0 {
3287cmd.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 {
3290cmd.link_args(&["--cpu", &crate_info.target_cpu]);
3291if let Some(feat) = [sess.opts.cg.target_feature.as_str(), &sess.target.options.features]
3292 .into_iter()
3293 .find(|feat| !feat.is_empty())
3294 {
3295cmd.link_args(&["--cpu-features", feat]);
3296 }
3297 }
32983299cmd.linker_plugin_lto();
33003301add_library_search_dirs(cmd, sess, self_contained_components, apple_sdk_root.as_deref());
33023303cmd.output_filename(out_filename);
33043305if crate_type == CrateType::Executable3306 && sess.target.is_like_windows
3307 && let Some(s) = &crate_info.windows_subsystem
3308 {
3309cmd.windows_subsystem(*s);
3310 }
33113312// Try to strip as much out of the generated object by removing unused
3313 // sections if possible. See more comments in linker.rs
3314if !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.
3319let keep_metadata =
3320crate_type == CrateType::Dylib || sess.opts.cg.profile_generate.enabled();
3321cmd.gc_sections(keep_metadata);
3322 }
33233324cmd.set_output_kind(link_output_kind, crate_type, out_filename);
33253326add_relro_args(cmd, sess);
33273328// Pass optimization flags down to the linker.
3329cmd.optimize();
33303331// Gather the set of NatVis files, if any, and write them out to a temp directory.
3332let natvis_visualizers = collect_natvis_visualizers(
3333tmpdir,
3334sess,
3335&crate_info.local_crate_name,
3336&crate_info.natvis_debugger_visualizers,
3337 );
33383339// Pass debuginfo, NatVis debugger visualizers and strip flags down to the linker.
3340cmd.debuginfo(sess.opts.cg.strip, &natvis_visualizers);
33413342// 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.
3344if !sess.opts.cg.default_linker_libraries && sess.target.no_default_libraries {
3345cmd.no_default_libraries();
3346 }
33473348if sess.opts.cg.profile_generate.enabled() || sess.instrument_coverage() {
3349cmd.pgo_gen();
3350 }
33513352if sess.opts.unstable_opts.instrument_mcount != InstrumentMcount::Disabled {
3353cmd.enable_profiling();
3354 }
33553356if sess.opts.cg.control_flow_guard != CFGuard::Disabled {
3357cmd.control_flow_guard();
3358 }
33593360// OBJECT-FILES-NO, AUDIT-ORDER
3361if sess.opts.unstable_opts.ehcont_guard {
3362cmd.ehcont_guard();
3363 }
33643365add_rpath_args(cmd, sess, crate_info, out_filename);
3366}
33673368// 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> {
3375let mut visualizer_paths = Vec::with_capacity(natvis_debugger_visualizers.len());
33763377for (index, visualizer) in natvis_debugger_visualizers.iter().enumerate() {
3378let 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));
33793380match fs::write(&visualizer_out_file, &visualizer.src) {
3381Ok(()) => {
3382 visualizer_paths.push(visualizer_out_file);
3383 }
3384Err(error) => {
3385 sess.dcx().emit_warn(diagnostics::UnableToWriteDebuggerVisualizer {
3386 path: visualizer_out_file,
3387 error,
3388 });
3389 }
3390 };
3391 }
3392visualizer_paths3393}
33943395fn 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) {
3408if !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.
3412return;
3413 }
34143415if link_static && cnum != LOCAL_CRATE && !bundled_libs.is_empty() {
3416// If rlib contains native libs as archives, unpack them to tmpdir.
3417let rlib = crate_info.used_crate_source[&cnum].rlib.as_ref().unwrap();
3418archive_builder_builder3419 .extract_bundled_libs(rlib, tmpdir, bundled_libs)
3420 .unwrap_or_else(|e| sess.dcx().emit_fatal(e));
3421 }
34223423let (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.
3426LOCAL_CRATE => (&crate_info.used_libraries, Vec::new()),
3427_ => {
3428let native_libs = &crate_info.native_libraries[&cnum];
3429let filenames =
3430if let Some(rlib_path) = crate_info.used_crate_source[&cnum].rlib.as_ref() {
3431rmeta_link_cache.native_lib_filenames(&sess.target, rlib_path, native_libs)
3432 } else {
3433Vec::new()
3434 };
3435 (native_libs, filenames)
3436 }
3437 };
34383439let mut last = (None, NativeLibKind::Unspecified, false);
3440for (i, lib) in native_libs.iter().enumerate() {
3441if !relevant_lib(sess, lib) {
3442continue;
3443 }
34443445// Skip if this library is the same as the last.
3446last = if (Some(lib.name), lib.kind, lib.verbatim) == last {
3447continue;
3448 } else {
3449 (Some(lib.name), lib.kind, lib.verbatim)
3450 };
34513452let name = lib.name.as_str();
3453let verbatim = lib.verbatim;
3454match lib.kind {
3455 NativeLibKind::Static { bundle, whole_archive, .. } => {
3456if link_static {
3457let bundle = bundle.unwrap_or(true);
3458let whole_archive = whole_archive == Some(true);
3459if bundle && cnum != LOCAL_CRATE {
3460if let Some(filename) = bundled_filenames.get(i).copied().flatten() {
3461// If rlib contains native libs as archives, they are unpacked to tmpdir.
3462let 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 } => {
3471if 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.
3478if !link_output_kind.can_link_dylib() && !sess.target.crt_static_allows_dylibs {
3479if 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 } => {
3487if 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 => {
3496if link_static {
3497if verbatim {
3498 cmd.verbatim_arg(name);
3499 } else {
3500 cmd.link_arg(name);
3501 }
3502 }
3503 }
3504 }
3505 }
3506}
35073508fn 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.
3518let link_static = true;
3519let link_dynamic = true;
3520add_native_libs_from_crate(
3521cmd,
3522sess,
3523archive_builder_builder,
3524rmeta_link_cache,
3525crate_info,
3526tmpdir,
3527&Default::default(),
3528LOCAL_CRATE,
3529link_static,
3530link_dynamic,
3531link_output_kind,
3532 );
3533}
35343535fn 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.
3552let data = crate_info3553 .dependency_formats
3554 .get(&crate_type)
3555 .expect("failed to find crate type in dependency format list");
35563557if 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.
3563cmd.link_or_cc_arg("-bnoipath");
3564 }
35653566for &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.
3574let linkage = data[cnum];
3575let 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));
35793580let mut bundled_libs = Default::default();
3581match linkage {
3582 Linkage::Static | Linkage::IncludedFromDylib | Linkage::NotLinked => {
3583if link_static_crate {
3584if 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 => {
3608let src = &crate_info.used_crate_source[&cnum];
3609 add_dynamic_crate(cmd, sess, src.dylib.as_ref().unwrap());
3610 }
3611 }
36123613// 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.
3621let link_static = link_static_crate;
3622// Dynamic libraries are not linked here, see the FIXME in `add_upstream_native_libraries`.
3623let 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}
36393640fn 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) {
3649for &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).
3655let 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.
3663let 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}
36793680// 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 {
3690let sysroot_lib_path = &sess.target_tlib_path.dir;
3691let canonical_sysroot_lib_path =
3692 { try_canonicalize(sysroot_lib_path).unwrap_or_else(|_| sysroot_lib_path.to_path_buf()) };
36933694let canonical_lib_dir = try_canonicalize(lib_dir).unwrap_or_else(|_| lib_dir.to_path_buf());
3695if canonical_lib_dir == canonical_sysroot_lib_path {
3696// This path already had `fix_windows_verbatim_for_gcc()` applied if needed.
3697sysroot_lib_path.to_path_buf()
3698 } else {
3699fix_windows_verbatim_for_gcc(lib_dir)
3700 }
3701}
37023703fn rehome_lib_path(sess: &Session, path: &Path) -> PathBuf {
3704if let Some(dir) = path.parent() {
3705let file_name = path.file_name().expect("library path has no file name component");
3706rehome_sysroot_lib_dir(sess, dir).join(file_name)
3707 } else {
3708fix_windows_verbatim_for_gcc(path)
3709 }
3710}
37113712// 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) {
3740let src = &crate_info.used_crate_source[&cnum];
3741let cratepath = src.rlib.as_ref().unwrap();
37423743let mut link_upstream =
3744 |path: &Path| cmd.link_staticlib_by_path(&rehome_lib_path(sess, path), false);
37453746if !are_upstream_rust_objects_already_included(sess) || ignored_for_lto(sess, crate_info, cnum)
3747 {
3748link_upstream(cratepath);
3749return;
3750 }
37513752let dst = tmpdir.join(cratepath.file_name().unwrap());
3753let name = cratepath.file_name().unwrap().to_str().unwrap();
3754let name = &name[3..name.len() - 5]; // chop off lib/.rlib
3755let bundled_lib_file_names = bundled_lib_file_names.clone();
37563757sess.prof.generic_activity_with_arg("link_altering_rlib", name).run(|| {
3758let upstream_rust_objects_already_included =
3759are_upstream_rust_objects_already_included(sess);
3760let is_builtins = sess.target.no_builtins || !crate_info.is_no_builtins.contains(&cnum);
37613762let mut archive = archive_builder_builder.new_archive_builder(sess);
3763if let Err(error) = archive.add_archive(
3764cratepath,
3765 AddArchiveKind::Rlib(rmeta_link_cache, &|f, entry_kind| {
3766if f == METADATA_FILENAME || f == rmeta_link::FILENAME {
3767return true;
3768 }
37693770// 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.
3774if upstream_rust_objects_already_included3775 && entry_kind == ArchiveEntryKind::RustObj3776 && is_builtins3777 {
3778return true;
3779 }
37803781// 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.
3786if bundled_lib_file_names.contains(&Symbol::intern(f)) {
3787return true;
3788 }
37893790false
3791}),
3792 ) {
3793sess.dcx().emit_fatal(diagnostics::RlibArchiveBuildFailure {
3794 path: cratepath.clone(),
3795error,
3796 });
3797 }
3798if archive.build(&dst, None) {
3799link_upstream(&dst);
3800 }
3801 });
3802}
38033804// Same thing as above, but for dynamic crates instead of static crates.
3805fn add_dynamic_crate(cmd: &mut dyn Linker, sess: &Session, cratepath: &Path) {
3806cmd.link_dylib_by_path(&rehome_lib_path(sess, cratepath), true);
3807}
38083809fn relevant_lib(sess: &Session, lib: &NativeLib) -> bool {
3810match lib.cfg {
3811Some(ref cfg) => eval_config_entry(sess, cfg).as_bool(),
3812None => true,
3813 }
3814}
38153816pub(crate) fn are_upstream_rust_objects_already_included(sess: &Session) -> bool {
3817match 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}
38273828/// 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) {
3835if !sess.target.is_like_darwin {
3836return;
3837 }
3838let LinkerFlavor::Darwin(cc, _) = flavorelse {
3839return;
3840 };
38413842// `sess.target.arch` (`target_arch`) is not detailed enough.
3843let llvm_arch = sess.target.llvm_target.split_once('-').expect("LLVM target must have arch").0;
3844let target_os = &sess.target.os;
3845let target_env = &sess.target.env;
38463847// 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.
3854let 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 };
38683869if 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.
3879cmd.link_args(&["-arch", ld64_arch]);
38803881// 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
3896let 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 };
39053906let min_version = sess.apple_deployment_target().fmt_full().to_string();
39073908// 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>
3940let sdk_version = &*min_version;
39413942// 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.
3950cmd.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>
3966if *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.
3971cmd.cc_args(&["-arch", ld64_arch]);
39723973// The presence of `-mmacosx-version-min` makes CC default to
3974 // macOS, and it sets the deployment target.
3975let version = sess.apple_deployment_target().fmt_full();
3976// Intentionally pass this as a single argument, Clang doesn't
3977 // seem to like it otherwise.
3978cmd.cc_arg(&::alloc::__export::must_use({
::alloc::fmt::format(format_args!("-mmacosx-version-min={0}",
version))
})format!("-mmacosx-version-min={version}"));
39793980// 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 {
3985cmd.cc_args(&["-target", &versioned_llvm_target(sess)]);
3986 }
3987 }
3988}
39893990fn add_apple_sdk(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) -> Option<PathBuf> {
3991if !sess.target.is_like_darwin {
3992return None;
3993 }
3994let LinkerFlavor::Darwin(cc, _) = flavorelse {
3995return None;
3996 };
39973998// 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).
4006let sdkroot = sess.time("get_apple_sdk_root", || get_apple_sdk_root(sess))?;
40074008if 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).
4034cmd.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.
4040cmd.link_arg("-syslibroot");
4041cmd.link_arg(&sdkroot);
4042 }
40434044Some(sdkroot)
4045}
40464047fn get_apple_sdk_root(sess: &Session) -> Option<PathBuf> {
4048if let Ok(sdkroot) = env::var("SDKROOT") {
4049let p = PathBuf::from(&sdkroot);
40504051// 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?).
4059match &*apple::sdk_name(&sess.target).to_lowercase() {
4060"appletvos"
4061if sdkroot.contains("TVSimulator.platform")
4062 || sdkroot.contains("MacOSX.platform") => {}
4063"appletvsimulator"
4064if sdkroot.contains("TVOS.platform") || sdkroot.contains("MacOSX.platform") => {}
4065"iphoneos"
4066if sdkroot.contains("iPhoneSimulator.platform")
4067 || sdkroot.contains("MacOSX.platform") => {}
4068"iphonesimulator"
4069if sdkroot.contains("iPhoneOS.platform") || sdkroot.contains("MacOSX.platform") => {
4070 }
4071"macosx"
4072if 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"
4081if sdkroot.contains("WatchSimulator.platform")
4082 || sdkroot.contains("MacOSX.platform") => {}
4083"watchsimulator"
4084if sdkroot.contains("WatchOS.platform") || sdkroot.contains("MacOSX.platform") => {}
4085"xros"
4086if sdkroot.contains("XRSimulator.platform")
4087 || sdkroot.contains("MacOSX.platform") => {}
4088"xrsimulator"
4089if 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 }
40954096 apple::get_sdk_root(sess)
4097}
40984099/// 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 );
41134114// 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.
4116if !(flavor.uses_cc() && flavor.uses_lld()) {
4117return;
4118 }
41194120// 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.
4125let self_contained_cli = sess.opts.cg.link_self_contained.is_linker_enabled();
4126let self_contained_target = self_contained_components.is_linker_enabled();
41274128let self_contained_linker = self_contained_cli || self_contained_target;
4129if self_contained_linker && !sess.opts.cg.link_self_contained.is_linker_disabled() {
4130let mut linker_path_exists = false;
4131for path in sess.get_tools_search_paths(false) {
4132let linker_path = path.join("gcc-ld");
4133 linker_path_exists |= linker_path.exists();
4134 cmd.cc_arg({
4135let mut arg = OsString::from("-B");
4136 arg.push(linker_path);
4137 arg
4138 });
4139 }
4140if !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.
4143sess.dcx().emit_fatal(diagnostics::SelfContainedLinkerMissing);
4144 }
4145 }
41464147// 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.
4153if !sess.target.is_like_wasm {
4154cmd.cc_arg("-fuse-ld=lld");
4155 }
41564157if !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.
4177if sess.target.linker_flavor != sess.host.linker_flavor {
4178cmd.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}
41824183// 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>> {
4190use object::read::elf::{FileHeader, SectionHeader};
4191use object::read::{ReadCache, ReadRef, Result};
4192use object::{Endianness, elf};
41934194fn elf_has_gold_version_note<'a>(
4195 elf: &impl FileHeader,
4196 data: impl ReadRef<'a>,
4197 ) -> Result<bool> {
4198let endian = elf.endian()?;
41994200let section =
4201 elf.sections(endian, data)?.section_by_name(endian, b".note.gnu.gold-version");
4202if let Some((_, section)) = section4203 && let Some(mut notes) = section.notes(endian, data)?
4204{
4205return Ok(notes.any(|note| {
4206note.is_ok_and(|note| note.n_type(endian) == elf::NT_GNU_GOLD_VERSION)
4207 }));
4208 }
42094210Ok(false)
4211 }
42124213let data = ReadCache::new(BufReader::new(File::open(path)?));
42144215let was_linked_with_gold = if sess.target.pointer_width == 64 {
4216let elf = elf::FileHeader64::<Endianness>::parse(&data)?;
4217 elf_has_gold_version_note(elf, &data)?
4218} else if sess.target.pointer_width == 32 {
4219let elf = elf::FileHeader32::<Endianness>::parse(&data)?;
4220 elf_has_gold_version_note(elf, &data)?
4221} else {
4222return Ok(());
4223 };
42244225if was_linked_with_gold {
4226let mut warn =
4227sess.dcx().struct_warn("the gold linker is deprecated and has known bugs with Rust");
4228warn.help("consider using LLD or ld from GNU binutils instead");
4229warn.emit();
4230 }
4231Ok(())
4232}