]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_target/src/lib.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / compiler / rustc_target / src / lib.rs
CommitLineData
83c7162d
XL
1//! Some stuff used by rustc that doesn't have many dependencies
2//!
3//! Originally extracted from rustc::back, which was nominally the
4//! compiler 'backend', though LLVM is rustc's backend, so rustc_target
5//! is really just odds-and-ends relating to code gen and linking.
6//! This crate mostly exists to make rustc smaller, so we might put
9fa01778 7//! more 'stuff' here in the future. It does not have a dependency on
b7449926 8//! LLVM.
83c7162d 9
1b1a35ee 10#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
064997fb 11#![feature(assert_matches)]
ba9703b0
XL
12#![feature(associated_type_bounds)]
13#![feature(exhaustive_patterns)]
17df50a5 14#![feature(min_specialization)]
5e7ed085 15#![feature(never_type)]
5e7ed085 16#![feature(rustc_attrs)]
94222f64 17#![feature(step_trait)]
f2b60f7d
FG
18#![deny(rustc::untranslatable_diagnostic)]
19#![deny(rustc::diagnostic_outside_of_impl)]
17df50a5 20
a2a8927a 21use std::iter::FromIterator;
17df50a5 22use std::path::{Path, PathBuf};
9fa01778 23
3dfed10e 24#[macro_use]
f9f354fc
XL
25extern crate rustc_macros;
26
dfeec247 27#[macro_use]
3dfed10e 28extern crate tracing;
83c7162d 29
83c7162d 30pub mod abi;
f9f354fc 31pub mod asm;
923072b8 32pub mod json;
83c7162d 33pub mod spec;
60c5eb7d 34
136023e0
XL
35#[cfg(test)]
36mod tests;
37
487cf647 38pub use rustc_abi::HashStableContext;
17df50a5
XL
39
40/// The name of rustc's own place to organize libraries.
41///
42/// Used to be `rustc`, now the default is `rustlib`.
43const RUST_LIB_DIR: &str = "rustlib";
44
45/// Returns a `rustlib` path for this particular target, relative to the provided sysroot.
46///
47/// For example: `target_sysroot_path("/usr", "x86_64-unknown-linux-gnu")` =>
48/// `"lib*/rustlib/x86_64-unknown-linux-gnu"`.
49pub fn target_rustlib_path(sysroot: &Path, target_triple: &str) -> PathBuf {
50 let libdir = find_libdir(sysroot);
a2a8927a 51 PathBuf::from_iter([
17df50a5
XL
52 Path::new(libdir.as_ref()),
53 Path::new(RUST_LIB_DIR),
54 Path::new(target_triple),
55 ])
17df50a5
XL
56}
57
58/// The name of the directory rustc expects libraries to be located.
59fn find_libdir(sysroot: &Path) -> std::borrow::Cow<'static, str> {
60 // FIXME: This is a quick hack to make the rustc binary able to locate
61 // Rust libraries in Linux environments where libraries might be installed
62 // to lib64/lib32. This would be more foolproof by basing the sysroot off
63 // of the directory where `librustc_driver` is located, rather than
64 // where the rustc binary is.
65 // If --libdir is set during configuration to the value other than
66 // "lib" (i.e., non-default), this value is used (see issue #16552).
67
68 #[cfg(target_pointer_width = "64")]
69 const PRIMARY_LIB_DIR: &str = "lib64";
70
71 #[cfg(target_pointer_width = "32")]
72 const PRIMARY_LIB_DIR: &str = "lib32";
73
74 const SECONDARY_LIB_DIR: &str = "lib";
75
76 match option_env!("CFG_LIBDIR_RELATIVE") {
77 None | Some("lib") => {
78 if sysroot.join(PRIMARY_LIB_DIR).join(RUST_LIB_DIR).exists() {
79 PRIMARY_LIB_DIR.into()
80 } else {
81 SECONDARY_LIB_DIR.into()
82 }
83 }
84 Some(libdir) => libdir.into(),
85 }
86}