Fix building no_std on Linux and Windows

This commit is contained in:
John-John Tedro
2020-07-25 10:48:29 +02:00
parent 4ee4cf1b58
commit 66700b4a53
4 changed files with 29 additions and 7 deletions

View File

@@ -12,7 +12,9 @@ To Compile
The nightly compiler is required:
```bash
cargo +nightly build --release
cargo +nightly build --release --profile unix -Z unstable-features
```
Available profiles are: `unix`, `windows` and `macos`.
The release build is optimized for size. It can be changed to optimize on speed instead.