[llvm] db15c23 - [DebugInfo][DWARF] Add DWARF/LowLevel to module.modulemap (#148693)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 14 12:46:47 PDT 2025
Author: Guy David
Date: 2025-07-14T22:46:43+03:00
New Revision: db15c23a5734da141bf4d8b9fc16d193502a7f92
URL: https://github.com/llvm/llvm-project/commit/db15c23a5734da141bf4d8b9fc16d193502a7f92
DIFF: https://github.com/llvm/llvm-project/commit/db15c23a5734da141bf4d8b9fc16d193502a7f92.diff
LOG: [DebugInfo][DWARF] Add DWARF/LowLevel to module.modulemap (#148693)
This ensures the generation of Attributes.inc when using
-DLLVM_ENABLE_MODULES=ON.
Added:
Modified:
llvm/include/module.modulemap
Removed:
################################################################################
diff --git a/llvm/include/module.modulemap b/llvm/include/module.modulemap
index a4bd6b9ed370d..a4aae08e639e4 100644
--- a/llvm/include/module.modulemap
+++ b/llvm/include/module.modulemap
@@ -125,6 +125,13 @@ module LLVM_DebugInfo_DWARF {
module * { export * }
}
+module LLVM_DebugInfo_DWARF_LowLevel {
+ requires cplusplus
+
+ umbrella "llvm/DebugInfo/DWARF/LowLevel"
+ module * { export * }
+}
+
module LLVM_DebugInfo_PDB {
requires cplusplus
More information about the llvm-commits
mailing list