Sccache is a ccache-like tool. It is used as a compiler wrapper and avoids compilation when possible. Sccache has the capability to utilize caching in remote storage environments, including various cloud storage options, or alternatively, in local storage.
Apache License 2.0
5.86k
stars
552
forks
source link
sccache v0.2.13 fails when `-Z unstable-options` are specified #889
Minimal example:
docker run -it --rm rustlang/rust:nightly bash
rustup toolchain install 1.47.0 && cargo +1.47.0 install sccache
(I have to use 1.47 due to https://github.com/mozilla/sccache/issues/887)USER=test-user cargo new --bin test-project && cd test-project
cargo clean && cargo clippy -Z unstable-options
it workscargo clean && RUSTC_WRAPPER="/usr/local/cargo/bin/sccache" cargo clippy -Z unstable-options
Expected: it works too. Actual: error,