-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
[C++20] [Modules] Don't generate paths implicitly in BMI to their dependent BMI #62707
Comments
@llvm/issue-subscribers-clang-modules |
Given the experience in clang, we should emit warnings for one version (clang17) and emit the hard error in the next version to not break too many things. |
…it generated path A step to address #62707. It is not user friendly enough to drop the implicitly generated path directly. Let's emit the warning first and drop it in the next version.
Note to self: when this ships, CMake needs to enable the transitive logic done for MSVC in Clang as well. |
hi folks I came across this while making a demo for hidden partition use (somehow i missed the discussion that lead to this change - and I cannot see a paper or change to the std. that allows it).... After this fix the following code ...
produces:
I do not believe that this is correct per the standard; The clarifying note is clear, that the user of a module should not need to know about its partitions; so it is not correct to ask the user to do this...
So .. either we need to explain how we're going to fix the underlying problem or we need to remove this before 17 branches .... does it also fire for |
I think there are in different levels. https://eel.is/c++draft/module#unit-3 talks about the source level and the issue is about the tools (build systems) level. I think the build systems knows every partitions naturally. |
hmm .. I do not follow that logic (yet)
without knowing that |
Yes. But the build systems knows about the partitions, then the build systems can add these flags. They are on the different abstract levels. |
Hmm, OK so now the meaning of the diagnostic becomes clear - perhaps we might add a hint about how to fix the issue - if it was not obvious to me - then probably someone else will also have troubles. as an aside: I must confess IMO it would be very unfortunate to make simple use of modules (like my example above) conditional on having a build system (while it is completely accepted that is required for larger projects, of course), that seems likely to be a barrier to initial adoption. So, IMO, we need to make this work for the simple kinds of example being discussed in https://discourse.llvm.org/t/rfc-modules-build-daemon-build-system-agnostic-support-for-explicitly-built-modules/71524/47. to allow simple projects to work with just the compiler. (let's continue the discussion there and not side-track this bug) |
In my opinion, such simple use cases can be solved by |
In the future, Clang plans to require transitive module usage to be specified on the command line. This is in order to keep BMI files more reproducible. Handily, MSVC has already required this, so the logic can be reused for Clang easily. See: llvm/llvm-project@e22fa1d See: llvm/llvm-project#62707 See: https://discourse.llvm.org/t/c-20-modules-should-the-bmis-contain-paths-to-their-dependent-bmis/70422
Close llvm#62707 As we discussed before, we'll forbid the use of implicit generated path for C++20 modules. And as I mentioned in llvm#62707, we've emitted a warning for clang17 and we'll make it a hard error in clang18. And the patch addresses the decision.
Looking at the [release notes](https://prereleases.llvm.org/18.1.0/rc3/tools/clang/docs/ReleaseNotes.html) for clang 18.1.0rc, there's some broken links, and many issue numbers mis-formatted with an extra colon. Aside from being used inconsistently (with/without colon), I think it should be uncontroversial that `See (#62707).` is better than `See (#62707:).` CC @tstellar @AaronBallman Co-authored-by: Aaron Ballman <[email protected]>
Close llvm/llvm-project#62843. Previously when we compile .pcm files into .o files, the `-fmodule-file=<module-name>=<module-path>` option is ignored. This is conflicted with our consensus in llvm/llvm-project#62707.
See https://discourse.llvm.org/t/c-20-modules-should-the-bmis-contain-paths-to-their-dependent-bmis/70422 for detail.
Simply, after the issue resolved, the last step of the following example won't compile any more:
We need to specify all the dependency explicitly:
This should be a breaking change.
The text was updated successfully, but these errors were encountered: