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 1062b69 + 955f861 commit 2a9be46Copy full SHA for 2a9be46
3 files changed
Cargo.lock
@@ -487,7 +487,7 @@ dependencies = [
487
"regex-syntax",
488
"semver",
489
"serde",
490
- "smallvec 0.6.10",
+ "smallvec 1.0.0",
491
"toml",
492
"unicode-normalization",
493
"url 2.1.0",
src/bootstrap/test.rs
@@ -570,7 +570,12 @@ impl Step for Clippy {
570
let host_libs = builder
571
.stage_out(compiler, Mode::ToolRustc)
572
.join(builder.cargo_dir());
573
+ let target_libs = builder
574
+ .stage_out(compiler, Mode::ToolRustc)
575
+ .join(&self.host)
576
+ .join(builder.cargo_dir());
577
cargo.env("HOST_LIBS", host_libs);
578
+ cargo.env("TARGET_LIBS", target_libs);
579
// clippy tests need to find the driver
580
cargo.env("CLIPPY_DRIVER_PATH", clippy);
581
src/tools/clippy
0 commit comments