-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Build with --llvm-root=$DIR fails when Rust is already installed into $DIR #13421
Comments
I've forgotten when it was fixed, but this error has disappeared. Can we close it? |
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Oct 18, 2022
Update guide.md to reflect support for proc-macros
bors
added a commit
to rust-lang-ci/rust
that referenced
this issue
Sep 24, 2024
Initial impl of `unnecessary_first_then_check` Fixes rust-lang#11212 Checks for `{slice/vec/Box<[]>}.first().is_some()` and suggests replacing the unnecessary `Option`-construct with a direct `{slice/...}.is_empty()`. Other lints guide constructs like `if let Some(_) = v.get(0)` into this, which end up as `!v.is_empty()`. changelog: [`unnecessary_first_then_check`]: Initial implementation
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I tried
./configure --llvm-root=/usr && make
but it fails to buildlibstd
. The error message is:The text was updated successfully, but these errors were encountered: