-
-
Notifications
You must be signed in to change notification settings - Fork 610
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
Fix Issue 23597 - .di files not compatible with -i #14783
Conversation
|
Thanks for your pull request, @CyberShadow! Bugzilla references
Testing this PR locallyIf you don't have a local development environment setup, you can use Digger to test this PR: dub run digger -- build "master + dmd#14783" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is such a trivial change, did you want to do this straight stable? Also rebase to fix CI errors.
|
If I understand correctly, this change makes |
|
|
So dmd doesn't pass object files from |
|
I think that object files are never generated for .di files. |
9b3ba51 to
474f36c
Compare
Thanks, done.
I am slightly worried about regressions for the case where a |
So what this does is essentially tell the compiler that the corresponding module is not going to be compiled. There are two cases for
What this change does is that it changes how the compiler treats imported In theory this might be a breaking change for the intentional 1 case, but considering that the |
Makes
.difiles more useful for e.g. Deimos projects.