I recently installed rustup on my Windows machine and incorporated it into Atom as my editor. Everything works fine, but as soon as I do a cargo run
on my project, the first thing that Cargo says is:
Blocking waiting for file lock on build directory
This blocks the whole process for about a minute before the actual compile and run starts. As far as I remember this did not happen before (I use Cargo under OS X but without rustup).
Is there any way to disable this or at least reduce the timeout?
cargo build
to check the syntax? If it is the case, this is the issue because you cannot runcargo
twice at the same time. – antoyo