-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
"can't find crate" errors are easy to miss because they result in many more follow-up errors #97685
Comments
I think this can be generalized a bit because I often find myself wanting to fix errors in the order they are reported rather than in reverse. It would be nice if rustc/cargo supported some sort of "max errors" / "max diagnostics" flag that would stop compilation after that point (or just silence further errors/diagnostics). That way I could work through them one by one without having to constantly use the scrollback. My shell prompt is only 1 line, so when trying to reach the beginning of a super long sequence of errors, it's super easy to miss the initial invocation of |
I'm somewhat surprised because I thought we were already silencing resolution errors for paths starting with identifiers that have already emitted a failure, but it seems like our handling of
It should be relatively straightforward to do this: we already do it for some imports. We "just" need to extend the behavior for chained
That's what we used to do back in 2017. I'm opposed to going back, that is a blunt tool that doesn't serve users as well as it might seem at first.
In nightly, you can (ab)use
That's what we already do: pretty much every internal representation of code has an |
…es in place This is also a workaround for Rust's [97685], but primarily to enhance the error message by pointing out that -Zbuild-std is an option, and generally presenting the error as RIOT usually does. [97685]: rust-lang/rust#97685
cc #96799 |
Can you expand on that @estebank ? I want to believe there's a rationale for the current behavior, but I can't for the life of me figure it out. I don't see what happy ending there can be if the target is not installed — to me that remains the 1st big papercut everyone encounters when they try targeting |
@fasterthanlime the desire is to remove all cases of early stops in the compiler because otherwise it's easy to add more and more over time, accidentally or not. Having said that, today I wouldn't be against making this a hard error. The current behavior isn't putting the user first either. |
I can see the benefit of removing early stops but it seems that it must not come at the expensive of false-positive errors. False errors just waste the users time as they need to triage them to identify where the actual error is. IMHO it would need to be a very conservative ruling out of anything that the compiler isn't sure about. In this case since the crate was note found the compiler should not report anything else related to that crate as it doesn't know if those are actually issues. Basically the compiler should assume that the crate is perfect, and not report any error that could potentially be resolved by the crate. Any function referenced should be assumed to be present and any unknown method calls should be assumed to be a trait in that crate. |
Given a crate that depends on
bytes 1.1.0
, trying tocargo build --target target_that_is_not_installed
results infollowed by a few more
can't find crate for `core`
errors, followed by around 500 additional errors about individual items from the standard library not being found. The first of these appear very fast, so it's inconvenient (and sometimes impossible due to scrollback limitations) to actually find the relevant errors at the start.I think at least one of two things should happen here:
core
orstd
should abort compilation immediatelyThe text was updated successfully, but these errors were encountered: