-
Notifications
You must be signed in to change notification settings - Fork 13k
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
make check failes with -g #12333
Comments
(er, whoops, didn't mean to hit 'go' quite so prematurely) error: compilation failed!
See also #12191 for an error when I tried to do this previously. |
I was just able to reproduce this. Seems to be related to simd types. I'll look into it some more... |
Addresses issues raised by @Veykril in rust-lang#12333
Order auto-imports by relevance Fixes rust-lang#10337. Basically we sort the imports according to how "far away" the imported item is from where we want to import it to. This change makes it so that imports from the current crate are sorted before any third-party crates. Additionally, we make an exception for builtin crates (`std`, `core`, etc.) so that they are sorted before any third-party crates. There are probably other heuristics that should be added to improve the experience (such as preferring imports that are common elsewhere in the same crate, and ranking crates depending on the dependency graph). However, I think this is a first good step. PS. This is my first time contributing here, so please be gentle if I have missed something obvious :-)
Allow unused_imports, and unused_import_braces on `use` Fixes rust-lang/rust-clippy#12223. Both `unused_import_braces` and `unused_imports` are valid on `use`-items, additional to the two previously allowed. changelog: [`useless_attribute`]: Allow `rustc_lint` `unused_import_braces` and `unused_imports` on `use`-items
export RUSTFLAGS=-g
make check
Fails with a whole bunch of errors, e.g.,
The text was updated successfully, but these errors were encountered: