-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parallel builds of crate dependencies leads to intermittent linker errors #3161
Comments
Thanks for the report! You also mentioned that there are parallel builds of Cargo going in the background as well, which I think is a key ingredient here. In that sense, I think the sequence of steps here are:
I think the solution here is to do the same thing as the Rust build system which is to tweak our usage of job objects:
That way by default this scenario would work, and otherwise we'd still get the same benefits that if you interrupt things then everything is torn down. |
To clarify, I'm using cargo interactively and launching |
Instead of having our job object tear them down, instead leak them intentionally if everything succeeded. Closes rust-lang#3161
Leak mspdbsrv.exe processes on Windows Instead of having our job object tear them down, instead leak them intentionally if everything succeeded. Closes #3161
I'm using the script from this guy's blog to isolate mspdbsrv. http://blog.peter-b.co.uk/2017/02/stop-mspdbsrv-from-breaking-ci-build.html
|
@joeasaurus to confirm, is that required to fix this today? In theory this has been fixed in Cargo and shouldn't be an issue for Rust projects. |
@alexcrichton I don't think so, sorry for the necro post! Didn't look at the dates ;D |
Summary
While cargo is compiling dependencies I'm seeing intermittent linker errors. It appears the issue is caused by how cargo uses job objects on windows detailed in this issue: rust-lang/rust#33145
Output
System info
The text was updated successfully, but these errors were encountered: