We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
-Z unstable-options
Minimal example:
docker run -it --rm rustlang/rust:nightly bash
rustup toolchain install 1.47.0 && cargo +1.47.0 install sccache
USER=test-user cargo new --bin test-project && cd test-project
cargo clean && cargo clippy -Z unstable-options
cargo clean && RUSTC_WRAPPER="/usr/local/cargo/bin/sccache" cargo clippy -Z unstable-options
Expected: it works too. Actual: error,
error: failed to execute compile caused by: Compiler not supported: "error: Unrecognized option: \'E\'\n\n" error: could not compile `test-project`
The text was updated successfully, but these errors were encountered:
Seems to work on current master
Sorry, something went wrong.
Closing per #889 (comment)
No branches or pull requests
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 sccache v0.2.13 does not work when built with rustc 1.48 #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,
The text was updated successfully, but these errors were encountered: