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
Note: This is with incremental-comp turned off, and a compiler built yesterday.
Occasionally when working on Diesel's codegen crates, I'll get an error like this:
error: dlsym(0x113560e00, __rustc_derive_registrar__55df2b44c5129c66de0914ff53563457_89): symbol not found --> diesel/src/lib.rs:121:1 | 121 | extern crate diesel_derives2; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The only fix when this happens is to cargo clean. It randomly happens when I change some code, but not 100% of the time.
cargo clean
The text was updated successfully, but these errors were encountered:
I can confirm this happens.
@sgrif As a workaround to not clean everything, I do:
find target -name \*culprit-crate-name\* | xargs rm -rf
Sorry, something went wrong.
I think this was fixed by #47494, so closing.
Reopening because #47494 merged on Jan 18 and this was reported on a compiler built Jan 31.
Oh oops, indeed!
Triage: Is this still a problem? Wanted to ask since 5 years have passed and circumstances might have changed.
No branches or pull requests
Note: This is with incremental-comp turned off, and a compiler built yesterday.
Occasionally when working on Diesel's codegen crates, I'll get an error like this:
The only fix when this happens is to
cargo clean
. It randomly happens when I change some code, but not 100% of the time.The text was updated successfully, but these errors were encountered: