-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Config build.rustc-wrapper is unused. #7745
Comments
Thanks, this has already been fixed via #7575 |
Removes a chunk from the readme regarding a false positive rustc-wrapper entry not being used, which is closed since 1.40.0 . Cargo issue: rust-lang/cargo#7745
Removes a chunk from the readme regarding a false positive rustc-wrapper entry not being used, which is closed since 1.40.0 . Cargo issue: rust-lang/cargo#7745
Hi, I still see the error message on |
Can you show a sample config file that reproduces the issue and the text of the warning? I can't seem to reproduce it. |
@ehuss [build]
rustc_wrapper = "sccache"
[expand]
theme = "Monokai Extended Origin" where Then, when I run |
It should be |
@ehuss You're right! Thanks. |
Problem
I added
build.rustc-wrapper = "sccache"
to use thesccache
in my builds, but when running any cargo command, it says thatbuild.rustc-wrapper
is an unused key.I found the key in The Cargo Book (https://doc.rust-lang.org/cargo/guide/build-cache.html).
Steps
cargo install sccache
build.rustc-wrapper = "sccache"
to Cargo config ($CARGO_HOME/config)cargo build
in any projectNotes
Output of
cargo version
: cargo 1.40.0 (bc8e4c8 2019-11-22)Rust version: 1.40.0
OS: Windows 10
The text was updated successfully, but these errors were encountered: