File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -487,7 +487,7 @@ dependencies = [
487
487
" regex-syntax" ,
488
488
" semver" ,
489
489
" serde" ,
490
- " smallvec 0.6.10 " ,
490
+ " smallvec 1.0.0 " ,
491
491
" toml" ,
492
492
" unicode-normalization" ,
493
493
" url 2.1.0" ,
Original file line number Diff line number Diff line change @@ -570,7 +570,12 @@ impl Step for Clippy {
570
570
let host_libs = builder
571
571
. stage_out ( compiler, Mode :: ToolRustc )
572
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 ( ) ) ;
573
577
cargo. env ( "HOST_LIBS" , host_libs) ;
578
+ cargo. env ( "TARGET_LIBS" , target_libs) ;
574
579
// clippy tests need to find the driver
575
580
cargo. env ( "CLIPPY_DRIVER_PATH" , clippy) ;
576
581
You can’t perform that action at this time.
0 commit comments