File tree 2 files changed +0
-13
lines changed
2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -268,15 +268,6 @@ fn main() {
268
268
if let Ok ( host_linker) = env:: var ( "RUSTC_HOST_LINKER" ) {
269
269
cmd. arg ( format ! ( "-Clinker={}" , host_linker) ) ;
270
270
}
271
-
272
- if let Ok ( s) = env:: var ( "RUSTC_HOST_CRT_STATIC" ) {
273
- if s == "true" {
274
- cmd. arg ( "-C" ) . arg ( "target-feature=+crt-static" ) ;
275
- }
276
- if s == "false" {
277
- cmd. arg ( "-C" ) . arg ( "target-feature=-crt-static" ) ;
278
- }
279
- }
280
271
}
281
272
282
273
if env:: var_os ( "RUSTC_PARALLEL_QUERIES" ) . is_some ( ) {
Original file line number Diff line number Diff line change @@ -698,10 +698,6 @@ impl<'a> Builder<'a> {
698
698
cargo. env ( "RUSTC_CRT_STATIC" , x. to_string ( ) ) ;
699
699
}
700
700
701
- if let Some ( x) = self . crt_static ( compiler. host ) {
702
- cargo. env ( "RUSTC_HOST_CRT_STATIC" , x. to_string ( ) ) ;
703
- }
704
-
705
701
// Enable usage of unstable features
706
702
cargo. env ( "RUSTC_BOOTSTRAP" , "1" ) ;
707
703
self . add_rust_test_threads ( & mut cargo) ;
You can’t perform that action at this time.
0 commit comments