@@ -599,6 +599,16 @@ impl Step for Std {
599
599
fn run ( self , builder : & Builder < ' _ > ) {
600
600
let stage = self . stage ;
601
601
let target = self . target ;
602
+ let crates = if self . crates . is_empty ( ) {
603
+ builder
604
+ . in_tree_crates ( "sysroot" , Some ( target) )
605
+ . iter ( )
606
+ . map ( |c| c. name . to_string ( ) )
607
+ . collect ( )
608
+ } else {
609
+ self . crates
610
+ } ;
611
+
602
612
let out = match self . format {
603
613
DocumentationFormat :: Html => builder. doc_out ( target) ,
604
614
DocumentationFormat :: Json => builder. json_doc_out ( target) ,
@@ -627,7 +637,7 @@ impl Step for Std {
627
637
extra_args. push ( "--disable-minification" ) ;
628
638
}
629
639
630
- doc_std ( builder, self . format , stage, target, & out, & extra_args, & self . crates ) ;
640
+ doc_std ( builder, self . format , stage, target, & out, & extra_args, & crates) ;
631
641
632
642
// Don't open if the format is json
633
643
if let DocumentationFormat :: Json = self . format {
@@ -639,7 +649,7 @@ impl Step for Std {
639
649
let index = out. join ( "std" ) . join ( "index.html" ) ;
640
650
builder. open_in_browser ( index) ;
641
651
} else {
642
- for requested_crate in & * self . crates {
652
+ for requested_crate in crates {
643
653
if STD_PUBLIC_CRATES . iter ( ) . any ( |& k| k == requested_crate) {
644
654
let index = out. join ( requested_crate) . join ( "index.html" ) ;
645
655
builder. open_in_browser ( index) ;
0 commit comments