@@ -1751,15 +1751,16 @@ impl Config {
1751
1751
// from the [env] table. Recursive calls to cargo would use the new
1752
1752
// value, possibly behaving differently from the outer cargo.
1753
1753
//
1754
- // - RUSTUP_HOME: Under normal usage with rustup, this will have no
1755
- // effect because the rustup proxy sets RUSTUP_HOME, and that would
1756
- // override the [env] table. If the outer cargo is executed directly
1754
+ // - RUSTUP_HOME and RUSTUP_TOOLCHAIN: Under normal usage with rustup,
1755
+ // this will have no effect because the rustup proxy sets
1756
+ // RUSTUP_HOME and RUSTUP_TOOLCHAIN, and that would override the
1757
+ // [env] table. If the outer cargo is executed directly
1757
1758
// circumventing the rustup proxy, then this would affect calls to
1758
1759
// rustc (assuming that is a proxy), which could potentially cause
1759
1760
// problems with cargo and rustc being from different toolchains. We
1760
1761
// consider this to be not a use case we would like to support,
1761
1762
// since it will likely cause problems or lead to confusion.
1762
- for disallowed in & [ "CARGO_HOME" , "RUSTUP_HOME" ] {
1763
+ for disallowed in & [ "CARGO_HOME" , "RUSTUP_HOME" , "RUSTUP_TOOLCHAIN" ] {
1763
1764
if env_config. contains_key ( * disallowed) {
1764
1765
bail ! (
1765
1766
"setting the `{disallowed}` environment variable is not supported \
0 commit comments