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.
2 parents c57119b + 65730a3 commit 321dde1Copy full SHA for 321dde1
src/bootstrap/src/core/build_steps/tool.rs
@@ -1313,10 +1313,8 @@ impl Builder<'_> {
1313
//
1314
// Notably this munges the dynamic library lookup path to point to the
1315
// right location to run `compiler`.
1316
- let mut lib_paths: Vec<PathBuf> = vec![
1317
- self.build.rustc_snapshot_libdir(),
1318
- self.cargo_out(compiler, Mode::ToolBootstrap, *host).join("deps"),
1319
- ];
+ let mut lib_paths: Vec<PathBuf> =
+ vec![self.cargo_out(compiler, Mode::ToolBootstrap, *host).join("deps")];
1320
1321
// On MSVC a tool may invoke a C compiler (e.g., compiletest in run-make
1322
// mode) and that C compiler may need some extra PATH modification. Do
0 commit comments