• Jerome de Tychey's avatar
    improve building from source (#7239) · ce390fcd
    Jerome de Tychey authored
    Lots of people are having trouble building from source and keep up to date. The main reason seems to be that cargo/rustup is hard to work with. The 'abort' panic strategy error is very frustrating and seems to be solved 100% of time with a clean.
     Adding those lines:
     When compiling a crate if you receive this 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:
    ```
    cargo clean
    ```
    ce390fcd