Skip to content

Commit 6ec1de7

Browse files
Rollup merge of #85152 - nagisa:target-search-rustlib, r=Mark-Simulacrum
Adjust target search algorithm for rustlib path With this the concerns expressed in #83800 should be addressed. r? `@Mark-Simulacrum`
2 parents 3962541 + b7c5599 commit 6ec1de7

File tree

5 files changed

+83
-66
lines changed

5 files changed

+83
-66
lines changed

compiler/rustc_codegen_ssa/src/back/link.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1576,7 +1576,7 @@ fn add_rpath_args(
15761576
let target_triple = sess.opts.target_triple.triple();
15771577
let mut get_install_prefix_lib_path = || {
15781578
let install_prefix = option_env!("CFG_PREFIX").expect("CFG_PREFIX");
1579-
let tlib = filesearch::relative_target_lib_path(&sess.sysroot, target_triple);
1579+
let tlib = rustc_target::target_rustlib_path(&sess.sysroot, target_triple).join("lib");
15801580
let mut path = PathBuf::from(install_prefix);
15811581
path.push(&tlib);
15821582

compiler/rustc_interface/src/util.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -423,8 +423,7 @@ pub fn get_codegen_sysroot(
423423
.iter()
424424
.chain(sysroot_candidates.iter())
425425
.map(|sysroot| {
426-
let libdir = filesearch::relative_target_lib_path(&sysroot, &target);
427-
sysroot.join(libdir).with_file_name("codegen-backends")
426+
filesearch::make_target_lib_path(&sysroot, &target).with_file_name("codegen-backends")
428427
})
429428
.find(|f| {
430429
info!("codegen backend candidate: {}", f.display());

compiler/rustc_session/src/filesearch.rs

+15-53
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
pub use self::FileMatch::*;
22

3-
use std::borrow::Cow;
43
use std::env;
54
use std::fs;
65
use std::path::{Path, PathBuf};
@@ -91,26 +90,21 @@ impl<'a> FileSearch<'a> {
9190

9291
// Returns a list of directories where target-specific tool binaries are located.
9392
pub fn get_tools_search_paths(&self, self_contained: bool) -> Vec<PathBuf> {
94-
let mut p = PathBuf::from(self.sysroot);
95-
p.push(find_libdir(self.sysroot).as_ref());
96-
p.push(RUST_LIB_DIR);
97-
p.push(&self.triple);
98-
p.push("bin");
93+
let rustlib_path = rustc_target::target_rustlib_path(self.sysroot, &self.triple);
94+
let p = std::array::IntoIter::new([
95+
Path::new(&self.sysroot),
96+
Path::new(&rustlib_path),
97+
Path::new("bin"),
98+
])
99+
.collect::<PathBuf>();
99100
if self_contained { vec![p.clone(), p.join("self-contained")] } else { vec![p] }
100101
}
101102
}
102103

103-
pub fn relative_target_lib_path(sysroot: &Path, target_triple: &str) -> PathBuf {
104-
let mut p = PathBuf::from(find_libdir(sysroot).as_ref());
105-
assert!(p.is_relative());
106-
p.push(RUST_LIB_DIR);
107-
p.push(target_triple);
108-
p.push("lib");
109-
p
110-
}
111-
112104
pub fn make_target_lib_path(sysroot: &Path, target_triple: &str) -> PathBuf {
113-
sysroot.join(&relative_target_lib_path(sysroot, target_triple))
105+
let rustlib_path = rustc_target::target_rustlib_path(sysroot, target_triple);
106+
std::array::IntoIter::new([sysroot, Path::new(&rustlib_path), Path::new("lib")])
107+
.collect::<PathBuf>()
114108
}
115109

116110
// This function checks if sysroot is found using env::args().next(), and if it
@@ -157,11 +151,13 @@ pub fn get_or_default_sysroot() -> PathBuf {
157151
return None;
158152
}
159153

154+
// Pop off `bin/rustc`, obtaining the suspected sysroot.
160155
p.pop();
161156
p.pop();
162-
let mut libdir = PathBuf::from(&p);
163-
libdir.push(find_libdir(&p).as_ref());
164-
if libdir.exists() { Some(p) } else { None }
157+
// Look for the target rustlib directory in the suspected sysroot.
158+
let mut rustlib_path = rustc_target::target_rustlib_path(&p, "dummy");
159+
rustlib_path.pop(); // pop off the dummy target.
160+
if rustlib_path.exists() { Some(p) } else { None }
165161
}
166162
None => None,
167163
}
@@ -171,37 +167,3 @@ pub fn get_or_default_sysroot() -> PathBuf {
171167
// use env::current_exe() to imply sysroot.
172168
from_env_args_next().unwrap_or_else(from_current_exe)
173169
}
174-
175-
// The name of the directory rustc expects libraries to be located.
176-
fn find_libdir(sysroot: &Path) -> Cow<'static, str> {
177-
// FIXME: This is a quick hack to make the rustc binary able to locate
178-
// Rust libraries in Linux environments where libraries might be installed
179-
// to lib64/lib32. This would be more foolproof by basing the sysroot off
180-
// of the directory where `librustc_driver` is located, rather than
181-
// where the rustc binary is.
182-
// If --libdir is set during configuration to the value other than
183-
// "lib" (i.e., non-default), this value is used (see issue #16552).
184-
185-
#[cfg(target_pointer_width = "64")]
186-
const PRIMARY_LIB_DIR: &str = "lib64";
187-
188-
#[cfg(target_pointer_width = "32")]
189-
const PRIMARY_LIB_DIR: &str = "lib32";
190-
191-
const SECONDARY_LIB_DIR: &str = "lib";
192-
193-
match option_env!("CFG_LIBDIR_RELATIVE") {
194-
None | Some("lib") => {
195-
if sysroot.join(PRIMARY_LIB_DIR).join(RUST_LIB_DIR).exists() {
196-
PRIMARY_LIB_DIR.into()
197-
} else {
198-
SECONDARY_LIB_DIR.into()
199-
}
200-
}
201-
Some(libdir) => libdir.into(),
202-
}
203-
}
204-
205-
// The name of rustc's own place to organize libraries.
206-
// Used to be "rustc", now the default is "rustlib"
207-
const RUST_LIB_DIR: &str = "rustlib";

compiler/rustc_target/src/lib.rs

+51
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
#![feature(associated_type_bounds)]
1616
#![feature(exhaustive_patterns)]
1717

18+
use std::path::{Path, PathBuf};
19+
1820
#[macro_use]
1921
extern crate rustc_macros;
2022

@@ -29,3 +31,52 @@ pub mod spec;
2931
/// This is a hack to allow using the `HashStable_Generic` derive macro
3032
/// instead of implementing everything in `rustc_middle`.
3133
pub trait HashStableContext {}
34+
35+
/// The name of rustc's own place to organize libraries.
36+
///
37+
/// Used to be `rustc`, now the default is `rustlib`.
38+
const RUST_LIB_DIR: &str = "rustlib";
39+
40+
/// Returns a `rustlib` path for this particular target, relative to the provided sysroot.
41+
///
42+
/// For example: `target_sysroot_path("/usr", "x86_64-unknown-linux-gnu")` =>
43+
/// `"lib*/rustlib/x86_64-unknown-linux-gnu"`.
44+
pub fn target_rustlib_path(sysroot: &Path, target_triple: &str) -> PathBuf {
45+
let libdir = find_libdir(sysroot);
46+
std::array::IntoIter::new([
47+
Path::new(libdir.as_ref()),
48+
Path::new(RUST_LIB_DIR),
49+
Path::new(target_triple),
50+
])
51+
.collect::<PathBuf>()
52+
}
53+
54+
/// The name of the directory rustc expects libraries to be located.
55+
fn find_libdir(sysroot: &Path) -> std::borrow::Cow<'static, str> {
56+
// FIXME: This is a quick hack to make the rustc binary able to locate
57+
// Rust libraries in Linux environments where libraries might be installed
58+
// to lib64/lib32. This would be more foolproof by basing the sysroot off
59+
// of the directory where `librustc_driver` is located, rather than
60+
// where the rustc binary is.
61+
// If --libdir is set during configuration to the value other than
62+
// "lib" (i.e., non-default), this value is used (see issue #16552).
63+
64+
#[cfg(target_pointer_width = "64")]
65+
const PRIMARY_LIB_DIR: &str = "lib64";
66+
67+
#[cfg(target_pointer_width = "32")]
68+
const PRIMARY_LIB_DIR: &str = "lib32";
69+
70+
const SECONDARY_LIB_DIR: &str = "lib";
71+
72+
match option_env!("CFG_LIBDIR_RELATIVE") {
73+
None | Some("lib") => {
74+
if sysroot.join(PRIMARY_LIB_DIR).join(RUST_LIB_DIR).exists() {
75+
PRIMARY_LIB_DIR.into()
76+
} else {
77+
SECONDARY_LIB_DIR.into()
78+
}
79+
}
80+
Some(libdir) => libdir.into(),
81+
}
82+
}

compiler/rustc_target/src/spec/mod.rs

+15-10
Original file line numberDiff line numberDiff line change
@@ -1897,15 +1897,15 @@ impl Target {
18971897
Ok(base)
18981898
}
18991899

1900-
/// Search RUST_TARGET_PATH for a JSON file specifying the given target
1901-
/// triple. If none is found, look for a file called `target.json` inside
1902-
/// the sysroot under the target-triple's `rustlib` directory.
1903-
/// Note that it could also just be a bare filename already, so also
1904-
/// check for that. If one of the hardcoded targets we know about, just
1905-
/// return it directly.
1900+
/// Search for a JSON file specifying the given target triple.
19061901
///
1907-
/// The error string could come from any of the APIs called, including
1908-
/// filesystem access and JSON decoding.
1902+
/// If none is found in `$RUST_TARGET_PATH`, look for a file called `target.json` inside the
1903+
/// sysroot under the target-triple's `rustlib` directory. Note that it could also just be a
1904+
/// bare filename already, so also check for that. If one of the hardcoded targets we know
1905+
/// about, just return it directly.
1906+
///
1907+
/// The error string could come from any of the APIs called, including filesystem access and
1908+
/// JSON decoding.
19091909
pub fn search(target_triple: &TargetTriple, sysroot: &PathBuf) -> Result<Target, String> {
19101910
use rustc_serialize::json;
19111911
use std::env;
@@ -1942,8 +1942,13 @@ impl Target {
19421942

19431943
// Additionally look in the sysroot under `lib/rustlib/<triple>/target.json`
19441944
// as a fallback.
1945-
let p =
1946-
sysroot.join("lib").join("rustlib").join(&target_triple).join("target.json");
1945+
let rustlib_path = crate::target_rustlib_path(&sysroot, &target_triple);
1946+
let p = std::array::IntoIter::new([
1947+
Path::new(sysroot),
1948+
Path::new(&rustlib_path),
1949+
Path::new("target.json"),
1950+
])
1951+
.collect::<PathBuf>();
19471952
if p.is_file() {
19481953
return load_file(&p);
19491954
}

0 commit comments

Comments
 (0)