Skip to content
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

Closed
aaronmondal opened this issue May 21, 2023 · 5 comments
Closed
Assignees
Labels
clang:modules C++20 modules and Clang Header Modules

Comments

@aaronmondal
Copy link
Member

Flags like -fmodule-file=A:part=part.pcm vanish when we are building the object file from the precompiled BMI.

echo "export module A;" > a.cppm

clang++ a.cppm -v -std=c++20 \
    --precompile -o a.pcm

clang++ a.pcm -v -std=c++20 -c \
    -o a.interface.o \
    -fmodule-file=nonexistent=ThisDoesntShowOnTheCommandLine.pcm

This means that all such compilations trigger -Wread-modules-implicitly when an interface depends on some other module.

cc @ChuanqiXu9

@EugeneZelenko EugeneZelenko added clang:modules C++20 modules and Clang Header Modules and removed new issue labels May 21, 2023
@llvmbot
Copy link
Member

llvmbot commented May 21, 2023

@llvm/issue-subscribers-clang-modules

@ChuanqiXu9
Copy link
Member

I don't understand the issue for the reproducer. Why do we add -fmodule-file=nonexistent=ThisDoesntShowOnTheCommandLine.pcm?

This means that all such compilations trigger -Wread-modules-implicitly when an interface depends on some other module.

If the interface depends on other modules, we should add the corresponding -fmodule=<module-name>=<path-to-BMI>. This should be what we discussed. Do I miss anything?

@aaronmondal
Copy link
Member Author

@ChuanqiXu9 Sorry my example was misleading.

If the interface depends on other modules, we should add the corresponding -fmodule==. This should be what we discussed. Do I miss anything?

This is the intended behavior, but the pcm -> object compilation seems to ignore -fmodule-file. The following triggers -Wread-modules-implicitly:

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

@ChuanqiXu9
Copy link
Member

Do you mean when you run the following line:

# -fmodule-file is ignored.
clang++ a.pcm -v -std=c++20 -c \
    -fmodule-file=A:partition=a-partition.pcm \
    -o a.interface.o

you can still see the warning even if the option -fmodule-file is specified?

Then this should be a true bug.

@aaronmondal
Copy link
Member Author

you can still see the warning even if the option -fmodule-file is specified? 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 pcm -> o step the -fmodule-file flag is dropped. At least that's my assumption. When inspecting the output of the invocations with -v, there is no -fmodule-file printed for the last compilation step.

@ChuanqiXu9 ChuanqiXu9 self-assigned this May 23, 2023
veselypeta pushed a commit to veselypeta/cherillvm that referenced this issue Aug 23, 2024
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
clang:modules C++20 modules and Clang Header Modules
Projects
None yet
Development

No branches or pull requests

4 participants