Description
Problem
I have a Rust build wrapper (xtask) that invokes Cargo with a custom toolchain +esp
and a toolchain-specific target --target xtensa-esp32s3-espidf
, so I can use a simple command like cargo xtask build
to cross-compile my project with a more complex command like cargo +esp --target xtensa-esp32s3-espidf
.
This works with rustup 1.24, but rustup 1.25 defines RUSTC in the environment of the build wrapper, setting it to the default compiler, which causes the sub-Cargo invocation in the build wrapper to ignore the custom toolchain specified in the +esp
argument and instead invoke the rustc compiler specified in RUSTC.
And since that compiler doesn't support the toolchain-specific target, the invocation fails:
error: failed to run
rustc
to learn about target-specific informationCaused by:
process didn't exit successfully:/Users/myk/.rustup/toolchains/1.59.0-aarch64-apple-darwin/bin/rustc - --crate-name ___ --print=file-names --target xtensa-esp32s3-espidf --crate-type bin --crate-type rlib --crate-type dylib --crate-type cdylib --crate-type staticlib --crate-type proc-macro --print=sysroot --print=cfg
(exit status: 1)
--- stderr
error: Error loading target specification: Could not find specification for target "xtensa-esp32s3-espidf". Runrustc --print target-list
for a list of built-in targets
Steps
I don't yet have a set of steps to reproduce, but I'll work on a minimal test case.
Possible Solution(s)
It isn't clear why RUSTC now gets defined in the environment, but if there isn't a good reason for it, then reverting that change would obviously fix the bug. (I'm working around the issue at the moment by undefining RUSTC in the build wrapper before it invokes Cargo.) If there is a good reason for it, then I'm not sure what the solution would be.
Notes
I wonder if #3025 and/or #3029 are related.
Rustup version
Version that works:
>\> rustup --version
>rustup 1.24.0 (2f894d923 2021-04-24)
Version that is broken:
>\> rustup --version
>rustup 1.25.0 (90365aa81 2022-06-15)
In both cases:
>info: This is the version for the rustup toolchain manager, not the rustc compiler.
>info: The currently active `rustc` version is `rustc 1.59.0 (9d1b2106e 2022-02-23)`
Installed toolchains
> rustup show
Default host: aarch64-apple-darwin
rustup home: /Users/myk/.rustup
installed toolchains
--------------------
stable-aarch64-apple-darwin (default)
nightly-aarch64-apple-darwin
esp
1.56.1-aarch64-apple-darwin
1.57.0-aarch64-apple-darwin
1.59.0-aarch64-apple-darwin
1.61.0-aarch64-apple-darwin
installed targets for active toolchain
--------------------------------------
aarch64-apple-darwin
aarch64-linux-android
armv7-linux-androideabi
i686-linux-android
thumbv7em-none-eabi
x86_64-apple-darwin
x86_64-linux-android
active toolchain
----------------
1.59.0-aarch64-apple-darwin (overridden by '/Users/myk/Projects/project/rust-toolchain.toml')
rustc 1.59.0 (9d1b2106e 2022-02-23)