We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
rustc_snapshot_libdir
1 parent 52882f6 commit 65730a3Copy full SHA for 65730a3
src/bootstrap/src/core/build_steps/tool.rs
@@ -1302,10 +1302,8 @@ impl Builder<'_> {
1302
//
1303
// Notably this munges the dynamic library lookup path to point to the
1304
// right location to run `compiler`.
1305
- let mut lib_paths: Vec<PathBuf> = vec![
1306
- self.build.rustc_snapshot_libdir(),
1307
- self.cargo_out(compiler, Mode::ToolBootstrap, *host).join("deps"),
1308
- ];
+ let mut lib_paths: Vec<PathBuf> =
+ vec![self.cargo_out(compiler, Mode::ToolBootstrap, *host).join("deps")];
1309
1310
// On MSVC a tool may invoke a C compiler (e.g., compiletest in run-make
1311
// mode) and that C compiler may need some extra PATH modification. Do
0 commit comments