[llvm] 97686f2 - [ModuleMap] Fix module build after #141750 (#142670)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 3 15:07:26 PDT 2025
Author: Steven Wu
Date: 2025-06-03T15:07:23-07:00
New Revision: 97686f2cd074a143022397b94ab1af1784ed75f2
URL: https://github.com/llvm/llvm-project/commit/97686f2cd074a143022397b94ab1af1784ed75f2
DIFF: https://github.com/llvm/llvm-project/commit/97686f2cd074a143022397b94ab1af1784ed75f2.diff
LOG: [ModuleMap] Fix module build after #141750 (#142670)
Add `CodeViewLanguages.def` to textual header in LLVM_DebugInfo_CodeView
to fix clang module build of LLVM.
Added:
Modified:
llvm/include/module.modulemap
Removed:
################################################################################
diff --git a/llvm/include/module.modulemap b/llvm/include/module.modulemap
index b378023453241..9d7dbb8e4b071 100644
--- a/llvm/include/module.modulemap
+++ b/llvm/include/module.modulemap
@@ -178,9 +178,10 @@ module LLVM_DebugInfo_CodeView {
module * { export * }
// These are intended for (repeated) textual inclusion.
+ textual header "llvm/DebugInfo/CodeView/CodeViewLanguages.def"
textual header "llvm/DebugInfo/CodeView/CodeViewRegisters.def"
- textual header "llvm/DebugInfo/CodeView/CodeViewTypes.def"
textual header "llvm/DebugInfo/CodeView/CodeViewSymbols.def"
+ textual header "llvm/DebugInfo/CodeView/CodeViewTypes.def"
}
module LLVM_DWARFLinker {
More information about the llvm-commits
mailing list