-
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] -fmodule-file
vanishes when building module stub objects
#62843
Comments
@llvm/issue-subscribers-clang-modules |
I don't understand the issue for the reproducer. Why do we add
If the interface depends on other modules, we should add the corresponding |
@ChuanqiXu9 Sorry my example was misleading.
This is the intended behavior, but the echo "export module A:partition;" > a-partition.cppm
clang++ a-partition.cppm -v -std=c++20 \
--precompile -o a-partition.pcm
printf '
export module A;
import :partition;
' > a.cppm
clang++ a.cppm -v -std=c++20 \
-fmodule-file=A:partition=a-partition.pcm \
--precompile -o a.pcm
# -fmodule-file is ignored.
clang++ a.pcm -v -std=c++20 -c \
-fmodule-file=A:partition=a-partition.pcm \
-o a.interface.o |
Do you mean when you run the following line:
you can still see the warning even if the option Then this should be a true bug. |
Yes. I couldn't figure out what caused this for a long time, but it seems that only during the |
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.
Flags like
-fmodule-file=A:part=part.pcm
vanish when we are building the object file from the precompiled BMI.This means that all such compilations trigger
-Wread-modules-implicitly
when an interface depends on some other module.cc @ChuanqiXu9
The text was updated successfully, but these errors were encountered: