Commit 57ca376 1 parent 046a95d commit 57ca376 Copy full SHA for 57ca376
File tree 4 files changed +18
-2
lines changed
4 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,10 @@ impl Step for Std {
29
29
30
30
fn should_run ( run : ShouldRun ) -> ShouldRun {
31
31
run. all_krates ( "std" )
32
+ . path ( "src/libcore" )
33
+ . path ( "src/liballoc" )
34
+ . path ( "src/libstd_unicode" )
35
+ . path ( "src/rustc/compiler_builtins_shim" )
32
36
}
33
37
34
38
fn make_run ( run : RunConfig ) {
Original file line number Diff line number Diff line change @@ -50,6 +50,10 @@ impl Step for Std {
50
50
51
51
fn should_run ( run : ShouldRun ) -> ShouldRun {
52
52
run. all_krates ( "std" )
53
+ . path ( "src/libcore" )
54
+ . path ( "src/liballoc" )
55
+ . path ( "src/libstd_unicode" )
56
+ . path ( "src/rustc/compiler_builtins_shim" )
53
57
}
54
58
55
59
fn make_run ( run : RunConfig ) {
Original file line number Diff line number Diff line change @@ -434,7 +434,12 @@ impl Step for Std {
434
434
435
435
fn should_run ( run : ShouldRun ) -> ShouldRun {
436
436
let builder = run. builder ;
437
- run. all_krates ( "std" ) . default_condition ( builder. config . docs )
437
+ run. all_krates ( "std" )
438
+ . path ( "src/libcore" )
439
+ . path ( "src/liballoc" )
440
+ . path ( "src/libstd_unicode" )
441
+ . path ( "src/rustc/compiler_builtins_shim" )
442
+ . default_condition ( builder. config . docs )
438
443
}
439
444
440
445
fn make_run ( run : RunConfig ) {
Original file line number Diff line number Diff line change @@ -1526,7 +1526,10 @@ impl Step for Crate {
1526
1526
run = run. path ( krate. local_path ( & builder) . to_str ( ) . unwrap ( ) ) ;
1527
1527
}
1528
1528
}
1529
- run
1529
+ run. path ( "src/libcore" )
1530
+ . path ( "src/liballoc" )
1531
+ . path ( "src/libstd_unicode" )
1532
+ . path ( "src/rustc/compiler_builtins_shim" )
1530
1533
}
1531
1534
1532
1535
fn make_run ( run : RunConfig ) {
You can’t perform that action at this time.
0 commit comments