diff --git a/README.md b/README.md index fc87378e..575395e3 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,9 @@ VirtIO guest drivers in Rust. For **no_std** environment. ### [x86_64](./examples/x86_64) ```bash +# Fist Compile +rustup target add x86_64-unknown-none + cd examples/x86_64 make qemu ``` @@ -54,6 +57,9 @@ make qemu ### [aarch64](./examples/aarch64) ```bash +# Fist Compile +rustup target add aarch64-unknown-none + cd examples/aarch64 make qemu ``` @@ -61,6 +67,9 @@ make qemu ### [RISCV](./examples/riscv) ```bash +# First Compile +rustup target add riscv64imac-unknown-none-elf + cd examples/riscv make qemu ``` diff --git a/examples/riscv/rust-toolchain b/examples/riscv/rust-toolchain index 762dae8c..07ade694 100644 --- a/examples/riscv/rust-toolchain +++ b/examples/riscv/rust-toolchain @@ -1 +1 @@ -nightly-2022-11-03 \ No newline at end of file +nightly \ No newline at end of file