File tree 4 files changed +1
-5
lines changed
4 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 1
1
#![ feature( lang_items) ]
2
- #![ feature( global_asm) ]
3
- #![ feature( asm) ]
4
2
#![ no_std]
5
3
#![ no_main]
6
4
Original file line number Diff line number Diff line change 1
1
#![ no_std]
2
2
#![ no_main]
3
3
#![ feature( abi_efiapi) ]
4
- #![ feature( asm) ]
5
4
#![ feature( maybe_uninit_extra) ]
6
5
#![ deny( unsafe_op_in_unsafe_fn) ]
7
6
Original file line number Diff line number Diff line change @@ -66,7 +66,6 @@ for all possible configuration options.
66
66
*/
67
67
68
68
#![ cfg_attr( not( feature = "builder" ) , no_std) ]
69
- #![ feature( asm) ]
70
69
#![ feature( maybe_uninit_extra) ]
71
70
#![ feature( maybe_uninit_slice) ]
72
71
#![ deny( unsafe_op_in_unsafe_fn) ]
Original file line number Diff line number Diff line change 1
1
use std:: {
2
2
io:: Write ,
3
3
path:: { Path , PathBuf } ,
4
- process:: { Command , Stdio } ,
4
+ process:: Command ,
5
5
} ;
6
6
7
7
const QEMU_ARGS : & [ & str ] = & [
You can’t perform that action at this time.
0 commit comments