Skip to content

Commit 80f276e

Browse files
committed
lib: remove dependency on feature asm_sym
It has been stablized in rust-lang/rust#103168
1 parent 6818eb7 commit 80f276e

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,10 @@ You should use these following line of parameters:
119119

120120
... to enable H extension on QEMU software.
121121

122+
3. What is the minimum supported Rust version of this package?
123+
124+
You should build RustSBI-QEMU on nightly at least `rustc 1.66.0-nightly (a24a020e6 2022-10-18)`.
125+
122126
## License
123127

124128
This project is licensed under Mulan PSL v2.

rustsbi-qemu/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![no_std]
22
#![no_main]
3-
#![feature(naked_functions, asm_sym, asm_const)]
3+
#![feature(naked_functions, asm_const)]
44
#![deny(warnings)]
55

66
mod clint;

test-kernel/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![no_std]
22
#![no_main]
3-
#![feature(naked_functions, asm_sym, asm_const)]
3+
#![feature(naked_functions, asm_const)]
44
#![deny(warnings)]
55

66
#[macro_use]

0 commit comments

Comments
 (0)