Update README.md

This commit is contained in:
Afri Schoedon 2017-12-08 10:32:41 +01:00 committed by GitHub
parent ce390fcd75
commit a05c90abb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 4 deletions

View File

@ -94,19 +94,25 @@ $ cargo build --release
```
This will produce an executable in the `./target/release` subdirectory.
Note1: if cargo fails to parse manifest try:
Note: if cargo fails to parse manifest try:
```bash
$ ~/.cargo/bin/cargo build --release
```
Note2: When compiling a crate if you receive this error:
Note: When compiling a crate and you receive the following error:
```
error: the crate is compiled with the panic strategy `abort` which is incompatible with this crate's strategy of `unwind`
```
Cleaning the repository will most likely solve the issue, try:
```bash
$ cargo clean
```
cargo clean
```
This will always compile the latest nightly builds. If you want to build stable or beta, do a `git checkout stable` or `git checkout beta` first.
----