File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -268,13 +268,6 @@ fn main() {
268
268
}
269
269
}
270
270
271
- // Force all crates compiled by this compiler to (a) be unstable and (b)
272
- // allow the `rustc_private` feature to link to other unstable crates
273
- // also in the sysroot.
274
- if env:: var_os ( "RUSTC_FORCE_UNSTABLE" ) . is_some ( ) {
275
- cmd. arg ( "-Z" ) . arg ( "force-unstable-if-unmarked" ) ;
276
- }
277
-
278
271
if let Ok ( map) = env:: var ( "RUSTC_DEBUGINFO_MAP" ) {
279
272
cmd. arg ( "--remap-path-prefix" ) . arg ( & map) ;
280
273
}
@@ -294,6 +287,13 @@ fn main() {
294
287
}
295
288
}
296
289
290
+ // Force all crates compiled by this compiler to (a) be unstable and (b)
291
+ // allow the `rustc_private` feature to link to other unstable crates
292
+ // also in the sysroot.
293
+ if env:: var_os ( "RUSTC_FORCE_UNSTABLE" ) . is_some ( ) {
294
+ cmd. arg ( "-Z" ) . arg ( "force-unstable-if-unmarked" ) ;
295
+ }
296
+
297
297
if env:: var_os ( "RUSTC_PARALLEL_QUERIES" ) . is_some ( ) {
298
298
cmd. arg ( "--cfg" ) . arg ( "parallel_queries" ) ;
299
299
}
You can’t perform that action at this time.
0 commit comments