You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Set RUSTC and RUSTDOC env for child processes run through the proxy
This serves two purposes:
1. It avoids the overhead of having to re-parse `settings.toml` on each proxy.
In projects with many crates, this can have non-trivial overhead.
2. For build scripts, it provides an absolute path for RUSTC rather than forcing them to look it up in PATH.
This allows them to find the sysroot path for the toolchain, rather than ending up somewhere in CARGO_HOME.
The original motivation for this was to allow `bootstrap` in rust-lang/rust
to allow building stage0 tools without python, only the host rust toolchain.
0 commit comments