@@ -186,6 +186,7 @@ pub fn opts() -> Vec<RustcOptGroup> {
186
186
own theme", "PATH" ) ) ,
187
187
unstable( optmulti( "Z" , "" ,
188
188
"internal and debugging options (only on nightly build)" , "FLAG" ) ) ,
189
+ stable( optopt( "" , "sysroot" , "Override the system root" , "PATH" ) ) ,
189
190
)
190
191
}
191
192
@@ -370,6 +371,7 @@ fn rust_input(cratefile: &str, externs: Externs, matches: &getopts::Matches) ->
370
371
}
371
372
let cfgs = matches. opt_strs ( "cfg" ) ;
372
373
let triple = matches. opt_str ( "target" ) ;
374
+ let maybe_sysroot = matches. opt_str ( "sysroot" ) . map ( PathBuf :: from) ;
373
375
374
376
let cr = PathBuf :: from ( cratefile) ;
375
377
info ! ( "starting to run rustc" ) ;
@@ -379,7 +381,7 @@ fn rust_input(cratefile: &str, externs: Externs, matches: &getopts::Matches) ->
379
381
use rustc:: session:: config:: Input ;
380
382
381
383
tx. send ( core:: run_core ( paths, cfgs, externs, Input :: File ( cr) ,
382
- triple) ) . unwrap ( ) ;
384
+ triple, maybe_sysroot ) ) . unwrap ( ) ;
383
385
} ) ;
384
386
let ( mut krate, renderinfo) = rx. recv ( ) . unwrap ( ) ;
385
387
info ! ( "finished with rustc" ) ;
0 commit comments