From a05c90abb58f221b04db1214e2a508b9aaccc21b Mon Sep 17 00:00:00 2001 From: Afri Schoedon <5chdn@users.noreply.github.com> Date: Fri, 8 Dec 2017 10:32:41 +0100 Subject: [PATCH] Update README.md --- README.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5231447de..e5d9c0383 100644 --- a/README.md +++ b/README.md @@ -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. ----