Update README.md

new options about deps and building
pull/9/head
Vladislav Drozdov 2024-09-04 10:50:28 +03:00 committed by GitHub
parent aea7db7036
commit ccf474922e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 2 deletions

View File

@ -6,6 +6,8 @@ in-container integrating util to handle processes runtime
## Depends on
- `rustup (>=1.27.1)`
- `gcc-riscv64-unknown-elf`
- `build-essential`
## Setting up
Download and execute rustup.sh
@ -32,13 +34,13 @@ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
3.1. Release build of app for amd64/linux
~~~bash
cargo build --release
cargo x86_64
~~~
3.2. Release build of app for riscv64/linux
~~~bash
cargo build --release --target riscv64gc-unknown-linux-gnu
cargo riscv64
~~~