-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
rustc's munging of PATH environment is racy when run in parallel #17360
Comments
Yes, we could do that for subprocesses, but what about syntax extension dylibs? I guess this depends on why we are munging PATH/DYLD_LIBRARY_PATH/LD_LIBRARY_PATH:
@pnkfelix, looks like you wrote the relevant bit of code in dynamic_lib.rs. Do you remember which of the two it was? |
For the case 2, I suppose we could add |
I thought it was case 1. Interesting idea, marking |
Triage: In #17327, @alexcrichton mentions this block of code: rust/src/librustc_driver/driver.rs Lines 516 to 522 in 1661947
It looks like this code still doesn't prevent adding to the path over and over again. |
This commit attempts to bring our prepends to PATH on Windows when loading plugins because we've been seeing quite a few issues with failing to spawn a process on Windows, the leading theory of which is that PATH is too large as a result of this. Currently this is mostly a stab in the dark as it's not confirmed to actually fix the problem, but it's probably not a bad change to have anyway! cc rust-lang#33844 Closes rust-lang#17360
rustc: Try to contain prepends to PATH This commit attempts to bring our prepends to PATH on Windows when loading plugins because we've been seeing quite a few issues with failing to spawn a process on Windows, the leading theory of which is that PATH is too large as a result of this. Currently this is mostly a stab in the dark as it's not confirmed to actually fix the problem, but it's probably not a bad change to have anyway! cc #33844 Closes #17360
fix: Fix renaming imports of foreign items touching foreign sources Fixes rust-lang/rust-analyzer#17318
Mentioned in #17327, there are two places where rustc sets and resets
PATH
. Doing this means that running multiple compilations in parallel will stomp on each others' environment variables. This can happen, e.g. in rustdoc which runs tests by driving rustc directly. The proper way to set the environment for subprocesses is through the process Command type.cc @vadimcn
The text was updated successfully, but these errors were encountered: