-
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
The msg "perhaps this crate needs to be recompiled?" should include paths #13266
Comments
pnkfelix
added a commit
to pnkfelix/rust
that referenced
this issue
Apr 5, 2014
All it checks, unfortunately, is that you actually printed at least two lines for crateA paths and at least one line for crateB paths. But that's enough to capture the spirit of the bug, I think. I did not bother trying to verify that the paths themselves reflected where the crates end up.
bors
added a commit
that referenced
this issue
Apr 5, 2014
…r=alexcrichton Fix #13266. There is a little bit of acrobatics in the definition of `crate_paths` to avoid calling `clone()` on the dylib/rlib unless we actually are going to need them. The other oddity is that I have replaced the `root_ident: Option<&str>` parameter with a `root: &Option<CratePaths>`, which may surprise one who was expecting to see something like: `root: Option<&CratePaths>`. I went with the approach here because I could not come up with code for the alternative that was acceptable to the borrow checker.
pnkfelix
added a commit
to pnkfelix/rust
that referenced
this issue
Apr 7, 2014
Fix rust-lang#13266. There is a little bit of acrobatics in the definition of `crate_paths` to avoid calling `clone()` on the dylib/rlib unless we actually are going to need them. The other oddity is that I have replaced the `root_ident: Option<&str>` parameter with a `root: &Option<CratePaths>`, which may surprise one who was expecting to see something like: `root: Option<&CratePaths>`. I went with the approach here because I could not come up with code for the alternative that was acceptable to the borrow checker.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This was a very interesting and potentially useful warning from
rustc
:It would be even more useful if it told me the paths it was using for the two crates involved (
std
andrustc
), so that I could be sure that the files I am inspecting (in my file system, and in practice in my makefile debugging) actually correspond to the ones thatrustc
is informing me about.The text was updated successfully, but these errors were encountered: